├── .gitignore ├── LICENSE ├── README.md ├── bytewiser.js ├── bytewiser.png ├── collaborators.md ├── credits.js ├── credits.txt ├── data └── lines.txt ├── docs └── node-api-docs.html ├── exercises ├── array_buffers │ ├── exercise.js │ ├── problem.fr.md │ ├── problem.md │ └── solution │ │ └── solution.js ├── buffer_concat │ ├── exercise.js │ ├── problem.fr.md │ ├── problem.md │ └── solution │ │ └── solution.js ├── buffer_from_string │ ├── exercise.js │ ├── problem.fr.md │ ├── problem.md │ └── solution │ │ └── solution.js ├── hexadecimal_encoding │ ├── exercise.js │ ├── problem.fr.md │ ├── problem.md │ └── solution │ │ └── solution.js ├── line_splitter │ ├── exercise.js │ ├── problem.fr.md │ ├── problem.md │ └── solution │ │ └── solution.js ├── menu.json ├── modifying_buffers │ ├── exercise.js │ ├── problem.fr.md │ ├── problem.md │ └── solution │ │ └── solution.js └── typed_arrays │ ├── exercise.js │ ├── problem.fr.md │ ├── problem.md │ └── solution │ └── solution.js ├── i18n ├── credits │ ├── en.txt │ └── fr.txt ├── en.json ├── fr.json └── help │ └── en.txt ├── menu.json ├── node_apidoc ├── _toc.html ├── addons.html ├── all.html ├── assert.html ├── assets.1 ├── assets │ ├── sh.css │ └── style.css ├── buffer.html ├── child_process.html ├── cluster.html ├── console.html ├── crypto.html ├── debugger.html ├── dgram.html ├── dns.html ├── documentation.html ├── domain.html ├── events.html ├── fs.html ├── globals.html ├── http.html ├── https.html ├── index.html ├── modules.html ├── net.html ├── os.html ├── path.html ├── process.html ├── punycode.html ├── querystring.html ├── readline.html ├── repl.html ├── stream.html ├── string_decoder.html ├── synopsis.html ├── timers.html ├── tls.html ├── tty.html ├── url.html ├── util.html ├── vm.html └── zlib.html └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/README.md -------------------------------------------------------------------------------- /bytewiser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/bytewiser.js -------------------------------------------------------------------------------- /bytewiser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/bytewiser.png -------------------------------------------------------------------------------- /collaborators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/collaborators.md -------------------------------------------------------------------------------- /credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/credits.js -------------------------------------------------------------------------------- /credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/credits.txt -------------------------------------------------------------------------------- /data/lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/data/lines.txt -------------------------------------------------------------------------------- /docs/node-api-docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/docs/node-api-docs.html -------------------------------------------------------------------------------- /exercises/array_buffers/exercise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/array_buffers/exercise.js -------------------------------------------------------------------------------- /exercises/array_buffers/problem.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/array_buffers/problem.fr.md -------------------------------------------------------------------------------- /exercises/array_buffers/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/array_buffers/problem.md -------------------------------------------------------------------------------- /exercises/array_buffers/solution/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/array_buffers/solution/solution.js -------------------------------------------------------------------------------- /exercises/buffer_concat/exercise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/buffer_concat/exercise.js -------------------------------------------------------------------------------- /exercises/buffer_concat/problem.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/buffer_concat/problem.fr.md -------------------------------------------------------------------------------- /exercises/buffer_concat/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/buffer_concat/problem.md -------------------------------------------------------------------------------- /exercises/buffer_concat/solution/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/buffer_concat/solution/solution.js -------------------------------------------------------------------------------- /exercises/buffer_from_string/exercise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/buffer_from_string/exercise.js -------------------------------------------------------------------------------- /exercises/buffer_from_string/problem.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/buffer_from_string/problem.fr.md -------------------------------------------------------------------------------- /exercises/buffer_from_string/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/buffer_from_string/problem.md -------------------------------------------------------------------------------- /exercises/buffer_from_string/solution/solution.js: -------------------------------------------------------------------------------- 1 | console.log(new Buffer('bytewiser')) 2 | -------------------------------------------------------------------------------- /exercises/hexadecimal_encoding/exercise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/hexadecimal_encoding/exercise.js -------------------------------------------------------------------------------- /exercises/hexadecimal_encoding/problem.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/hexadecimal_encoding/problem.fr.md -------------------------------------------------------------------------------- /exercises/hexadecimal_encoding/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/hexadecimal_encoding/problem.md -------------------------------------------------------------------------------- /exercises/hexadecimal_encoding/solution/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/hexadecimal_encoding/solution/solution.js -------------------------------------------------------------------------------- /exercises/line_splitter/exercise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/line_splitter/exercise.js -------------------------------------------------------------------------------- /exercises/line_splitter/problem.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/line_splitter/problem.fr.md -------------------------------------------------------------------------------- /exercises/line_splitter/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/line_splitter/problem.md -------------------------------------------------------------------------------- /exercises/line_splitter/solution/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/line_splitter/solution/solution.js -------------------------------------------------------------------------------- /exercises/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/menu.json -------------------------------------------------------------------------------- /exercises/modifying_buffers/exercise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/modifying_buffers/exercise.js -------------------------------------------------------------------------------- /exercises/modifying_buffers/problem.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/modifying_buffers/problem.fr.md -------------------------------------------------------------------------------- /exercises/modifying_buffers/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/modifying_buffers/problem.md -------------------------------------------------------------------------------- /exercises/modifying_buffers/solution/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/modifying_buffers/solution/solution.js -------------------------------------------------------------------------------- /exercises/typed_arrays/exercise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/typed_arrays/exercise.js -------------------------------------------------------------------------------- /exercises/typed_arrays/problem.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/typed_arrays/problem.fr.md -------------------------------------------------------------------------------- /exercises/typed_arrays/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/typed_arrays/problem.md -------------------------------------------------------------------------------- /exercises/typed_arrays/solution/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/exercises/typed_arrays/solution/solution.js -------------------------------------------------------------------------------- /i18n/credits/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/i18n/credits/en.txt -------------------------------------------------------------------------------- /i18n/credits/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/i18n/credits/fr.txt -------------------------------------------------------------------------------- /i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/i18n/en.json -------------------------------------------------------------------------------- /i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/i18n/fr.json -------------------------------------------------------------------------------- /i18n/help/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/i18n/help/en.txt -------------------------------------------------------------------------------- /menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/menu.json -------------------------------------------------------------------------------- /node_apidoc/_toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/_toc.html -------------------------------------------------------------------------------- /node_apidoc/addons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/addons.html -------------------------------------------------------------------------------- /node_apidoc/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/all.html -------------------------------------------------------------------------------- /node_apidoc/assert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/assert.html -------------------------------------------------------------------------------- /node_apidoc/assets.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/assets.1 -------------------------------------------------------------------------------- /node_apidoc/assets/sh.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/assets/sh.css -------------------------------------------------------------------------------- /node_apidoc/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/assets/style.css -------------------------------------------------------------------------------- /node_apidoc/buffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/buffer.html -------------------------------------------------------------------------------- /node_apidoc/child_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/child_process.html -------------------------------------------------------------------------------- /node_apidoc/cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/cluster.html -------------------------------------------------------------------------------- /node_apidoc/console.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/console.html -------------------------------------------------------------------------------- /node_apidoc/crypto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/crypto.html -------------------------------------------------------------------------------- /node_apidoc/debugger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/debugger.html -------------------------------------------------------------------------------- /node_apidoc/dgram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/dgram.html -------------------------------------------------------------------------------- /node_apidoc/dns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/dns.html -------------------------------------------------------------------------------- /node_apidoc/documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/documentation.html -------------------------------------------------------------------------------- /node_apidoc/domain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/domain.html -------------------------------------------------------------------------------- /node_apidoc/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/events.html -------------------------------------------------------------------------------- /node_apidoc/fs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/fs.html -------------------------------------------------------------------------------- /node_apidoc/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/globals.html -------------------------------------------------------------------------------- /node_apidoc/http.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/http.html -------------------------------------------------------------------------------- /node_apidoc/https.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/https.html -------------------------------------------------------------------------------- /node_apidoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/index.html -------------------------------------------------------------------------------- /node_apidoc/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/modules.html -------------------------------------------------------------------------------- /node_apidoc/net.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/net.html -------------------------------------------------------------------------------- /node_apidoc/os.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/os.html -------------------------------------------------------------------------------- /node_apidoc/path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/path.html -------------------------------------------------------------------------------- /node_apidoc/process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/process.html -------------------------------------------------------------------------------- /node_apidoc/punycode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/punycode.html -------------------------------------------------------------------------------- /node_apidoc/querystring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/querystring.html -------------------------------------------------------------------------------- /node_apidoc/readline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/readline.html -------------------------------------------------------------------------------- /node_apidoc/repl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/repl.html -------------------------------------------------------------------------------- /node_apidoc/stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/stream.html -------------------------------------------------------------------------------- /node_apidoc/string_decoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/string_decoder.html -------------------------------------------------------------------------------- /node_apidoc/synopsis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/synopsis.html -------------------------------------------------------------------------------- /node_apidoc/timers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/timers.html -------------------------------------------------------------------------------- /node_apidoc/tls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/tls.html -------------------------------------------------------------------------------- /node_apidoc/tty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/tty.html -------------------------------------------------------------------------------- /node_apidoc/url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/url.html -------------------------------------------------------------------------------- /node_apidoc/util.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/util.html -------------------------------------------------------------------------------- /node_apidoc/vm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/vm.html -------------------------------------------------------------------------------- /node_apidoc/zlib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/node_apidoc/zlib.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/bytewiser/HEAD/package.json --------------------------------------------------------------------------------