mirror of
https://github.com/not-kennethreitz/convore.json.git
synced 2026-06-05 23:20:19 +00:00
1 line
7.4 KiB
JSON
1 line
7.4 KiB
JSON
[{"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304527760.9174011, "message": "Console stuff: console.log, console.dir, console.assert, console.time, console.timeEnd", "group_id": 9617, "id": 915563}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304527600.700875, "message": "Here are some gists: https://gist.github.com/d77a092a02f60241a63d", "group_id": 9617, "id": 915520}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304529653.17926, "message": "Process global object", "group_id": 9617, "id": 916063}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304527573.4894409, "message": "hij1nx is presenting: https://github.com/hij1nx", "group_id": 9617, "id": 915509}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304528413.748172, "message": "Read more here: http://www.commonjs.org/", "group_id": 9617, "id": 915667}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304528956.801872, "message": "exports.getNumber = function() {};", "group_id": 9617, "id": 915818}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304529419.484194, "message": "The problem with Buffer: blocking", "group_id": 9617, "id": 915994}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304530007.659445, "message": "add #!/usr/bin/env node as the first line of your .js file", "group_id": 9617, "id": 916204}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304528040.3770211, "message": "https://github.com/cloudhead made https://github.com/cloudhead/eyes.js as an alternative to console.dir", "group_id": 9617, "id": 915600}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304528516.5746081, "message": "4. ./node_modules/foo/index.js", "group_id": 9617, "id": 915701}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304528529.3338871, "message": "5. ./node_modules/foo/index.node (binary)", "group_id": 9617, "id": 915706}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304528348.2466869, "message": "CommonJS is the foundation for how require works.", "group_id": 9617, "id": 915646}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304528590.9042671, "message": "And now for the module global object!", "group_id": 9617, "id": 915719}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304529692.3235941, "message": "Process global object tells you about the node.js process that's running your script.", "group_id": 9617, "id": 916083}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304528182.8919129, "message": "require('foo'): what happens: 1. looks for native module, 2. traverse upward in the working dir to find top most ./node_modules/foo.js", "group_id": 9617, "id": 915615}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304528200.669023, "message": "3. check for a ./node_modules/foo/package.json", "group_id": 9617, "id": 915618}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304529359.2688849, "message": "Now that we use JS on the server we have a need for binary data. So we have the Buffer global object.", "group_id": 9617, "id": 915968}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304528541.7160051, "message": "6. require.paths (try in your REPL)", "group_id": 9617, "id": 915709}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304529400.4512939, "message": "new Buffer(unencoded || '').toString('base64');", "group_id": 9617, "id": 915986}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304528677.7970581, "message": "module.exports = Foo;", "group_id": 9617, "id": 915738}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304530051.7095599, "message": "node is systems programming", "group_id": 9617, "id": 916228}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304530025.6413779, "message": "then you should be able to execute the file", "group_id": 9617, "id": 916218}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304530014.7057519, "message": "chmod 700 myfile.js", "group_id": 9617, "id": 916208}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304530892.0529239, "message": "stdin, stdout, stderror are available as members of process, and let you communicate between processes.", "group_id": 9617, "id": 916527}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304530956.564594, "message": "\"ls -la | node app.js\" sends the output of ls -la to the stdin in app.js", "group_id": 9617, "id": 916542}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304531723.8465681, "message": "Paolo is using iTerm2 as a terminal: http://www.iterm2.com/#/section/home", "group_id": 9617, "id": 916702}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304531790.1448259, "message": "node.js is evented (such a paramount and important part of the whole thing)", "group_id": 9617, "id": 916722}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304532308.284977, "message": "Make sure you are aware of program flow.", "group_id": 9617, "id": 916879}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304531808.3447671, "message": "like a browser, but instead of clicks, network activity", "group_id": 9617, "id": 916730}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304532161.1717429, "message": "don't do \"callback\", do \"return callback\"", "group_id": 9617, "id": 916820}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304532847.9629381, "message": "\"on\" is synonymous with \"addListener\"", "group_id": 9617, "id": 917068}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304532896.6005659, "message": "https://gist.github.com/d77a092a02f60241a63d#file_interactive6.js", "group_id": 9617, "id": 917078}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304532764.4078951, "message": "EventEmitter - more than one, or more than one kind of occurence.", "group_id": 9617, "id": 917051}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304532661.6943991, "message": "Debugging tools: nodeinspector", "group_id": 9617, "id": 917031}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304532646.6978049, "message": "Better call stacks: give your anon functions names. You can still use them the same.", "group_id": 9617, "id": 917024}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304532709.4970641, "message": "https://github.com/dannycoates/node-inspector", "group_id": 9617, "id": 917036}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304532924.0118639, "message": "In node: EventEmitter huge - super important.", "group_id": 9617, "id": 917087}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304533390.52614, "message": "Streams - an EventEmitter that can be readable/writeable or both", "group_id": 9617, "id": 917189}, {"user_id": 29343, "stars": [], "topic_id": 33658, "date_created": 1304535469.810307, "message": "Making sure a process runs forever: https://github.com/nodejitsu/forever", "group_id": 9617, "id": 917704}, {"user_id": 28226, "stars": [], "topic_id": 33658, "date_created": 1304569340.6321609, "message": "thanks for the notes!", "group_id": 9617, "id": 924315}] |