diff --git a/README.markdown b/README.markdown
index f194422..ba8d0bc 100644
--- a/README.markdown
+++ b/README.markdown
@@ -1,5 +1,18 @@
# Browser-buffer.js
-An attempt at mimicing node.js's Buffer API in the browser using typed arrays. This project uses a lot of code from node.js's (lib/buffer.js)[https://github.com/joyent/node/blob/master/lib/buffer.js]. This library still needs a lot of work both to get it running across the board and to clean up some of the pollution it puts on the UInt8Array prototype.
+An attempt at mimicing node.js's Buffer API in the browser using typed arrays. This project uses a lot of code from node.js's [lib/buffer.js](https://github.com/joyent/node/blob/master/lib/buffer.js). This library still needs a lot of work both to get it running across the board and to clean up some of the pollution it puts on the UInt8Array prototype.
+
+# Usage:
+```javascript
+
+
+
+```
## (lightly) Tested in:
* Chrome 18 (beta) (Ubuntu)
@@ -10,4 +23,9 @@ An attempt at mimicing node.js's Buffer API in the browser using typed arrays. T
1. hex
2. binary
3. base64 (possibly use btoa/atob?)
- 4. ucs-2
\ No newline at end of file
+ 4. ucs-2
+
+## Online Tests from /test/ folder
+* [test](https://username1565.github.io/browser-buffer/test/test.htm)
+* [benchmark (wait some time)](https://username1565.github.io/browser-buffer/test/benchmark.htm)
+* [debug (no display anything)](https://username1565.github.io/browser-buffer/test/debug.htm)