xylil.com
Helper library for node database drivers
http://www.xylil.com/2012/03/14/node-db-query-assistant-initial-release
Helper library for node database drivers Connection pooling, multi/series querying. I’ve renamed the respository for this software package, it’s now available here. Links in this post have been updated accordingly. Today I’m releasing a nifty helper library. I wrote to ease the pain of aync database queries in node.js. It provides the following features on top of node-db. Issue multiple simultaneous queries, and get all results back in a callback when the last query completes.
david.buser.net
node.js
http://david.buser.net/node
Part of David A. Buser's website. Running nodejs as a service on Ubuntu. Testing node.js with Travis CI. Apache and node.js. Hosting node.js behind apache. Restart node.js on file change. Managing Node.js Dependencies with Shrinkwrap. PhantomJS and Travis CI. Or other contact info. Last updated 2012-05-10 14:36:36. Processed in 0.0703210830688.
nodegames.blogspot.com
HTML5 Canvas MMORPG Games using Node.js and Nowjs: Node.js Databases
http://nodegames.blogspot.com/2011/12/nodejs-databases.html
HTML5 Canvas MMORPG Games using Node.js and Nowjs. HTML5 Canvas MMORPG Games Javascript Webgl Node.js Nowjs Websocket socket.io mmo. Monday, December 5, 2011. Posted by george endrulat. Been looking into which database to use with node.js for a mmo/rpg. Ability to quickly push/pull small bits. Most online literature / largest online help. Stumbling on: http:/ nodejsdb.org/. Taken from: https:/ github.com/joyent/node/wiki/modules#wiki-database. 8212; A node.js MS SQL. Protocol, for connecting to SQL.
blog.thelonepole.com
code » The Lone Pole
http://blog.thelonepole.com/tag/code
Hardware. Software. Math. Polymorphism Antipatterns in PHP. In the Star Wars Combine’s (SWC). The core functionality is captured in the abstract class StepTravelAction, which defines several key methods:. To reduce the XP awarded in ground travel only, an earlier programmer elected to add three lines to StepTravelAction: finishTravelling(), quickly resolving the issue:. The correct approach here is to refactor this method into three different components:. Cases, so it should be available as the default b...
blog.thelonepole.com
node.js » The Lone Pole
http://blog.thelonepole.com/tag/node-js
Hardware. Software. Math. Optimizing Function Usage in Node.js. There aren’t very many good resources for optimizing compute-bound JavaScript on the Internet, aside from this article from Google Developers. Var iter = 10000; var i, j, start, stop; function inc(a) { return a 1; } var x = 0; start = process.hrtime(); for (i = 0; i. For me, the version calling inc(). Amount of call overhead to be eliminated. I think this could be (easily? Rolled into a tool like UglifyJS, to automatically inline functions, ...
blog.christosoft.de
DBMS Archive - Christosoft Blog
http://blog.christosoft.de/topics/dbms
Request-Tracker4: Enabling fast fulltext search with Sphinxsearch on Debian Jessie. 8212; Tags: Backports. 8212; Christopher Kramer @ 22:02. I just successfully made fulltext search in our request tracker super fast. This is a guide for Debian Jessie and request tracker set up to use MySQL (or MariaDB). Don’t forget to backup your RT database:. Mysqldump -p -u root rtdb rtdb.sql. Log out of request tracker. I had some strange issue because I did not 😉. If you don’t already, this is how you update:.
mattkopala.com
Getting Started with Node.js, Coffeescript, MongoDB, and more - Matt Kopala
http://mattkopala.com/blog/2012/02/12/getting-started-with-nodejs
Software Development, Technology, Travel. Getting Started With Node.js, Coffeescript, MongoDB, and More. For the past couple of months, I’ve been writing a task management application for myself using node.js. CoffeeScript, MongoDB, Mongoose, and several other tools. This is a post that covers a lot of that journey, including many of the different tools, packages, libraries, and articles that I ran across or found useful. There are an overwhelming number of node modules. So, I wanted to try something new.
blog.thelonepole.com
Programming » The Lone Pole
http://blog.thelonepole.com/category/programming
Hardware. Software. Math. Polymorphism Antipatterns in PHP. In the Star Wars Combine’s (SWC). The core functionality is captured in the abstract class StepTravelAction, which defines several key methods:. To reduce the XP awarded in ground travel only, an earlier programmer elected to add three lines to StepTravelAction: finishTravelling(), quickly resolving the issue:. The correct approach here is to refactor this method into three different components:. Cases, so it should be available as the default b...
blog.christosoft.de
JavaScript Archive - Christosoft Blog
http://blog.christosoft.de/topics/javascript
JQuery: check whether an element exists. 8212; Tags: element exists. 8212; Christopher Kramer @ 13:47. In traditional JavaScript, to check if some element exists, you’d have done something like this:. If(document.getElementById('someID'). Of course this still works but what about using JQuery? So you might try this:. But this will always be true as jQuery always returns an object, no matter whether the selector matched or not.So what you can do is the following:. If($('#someID').length 0). The first thin...