Don't wanna be here? Send us removal request.
Text
0 notes
Link
Sometimes functionality needs to be added to a each each method of an object. Here is the object:
var objectA = { method1: function() { console.log('running method 1'); }, method2: function() { console.log('running method 2'); }, method3: function() { console.log('running method 3'); } };
The…
6 notes
·
View notes
Link
55 notes
·
View notes
Link
You are in for a treat of very complicated legalese:
I would urge you to avoid creating a dependency between Openstack code and any AGPL project, including MongoDB. MongoDB is licensed in a very strange manner that is prone to creating unintended licensing mistakes (a lawyer’s dream). Indeed, MongoDB itself presents Apache licensed drivers – and thus technically, users of those drivers are not impacted by the AGPL terms. MongoDB Inc. is in the unique position to license their drivers this way (although they appear to violate the AGPL license) since MongoDB is not going to sue themselves for their own violation. However, others in the community create MongoDB drivers are licensing those drivers under the Apache and MIT licenses – which does pose a problem.
Original title and link: OpenStack and MongoDB’s AGPL license (NoSQL database©myNoSQL)
7 notes
·
View notes
Link
This article’s a push for the CloudExpo, June 10-12 2014. The $300 early bird price expires today (March 31). The IoT is only part of this so beware.
From the time of my original involvement in the technology industry in the early 80s – can you say Zilog and CP/M? – I’ve not witnessed the manic excitement I’m now seeing. Fire! The Internet was big – “bigger than fire” a few overheated folks said in the 90s – but IoT is bigger. As sensors start creating a fully fledged parallel world, the data demands of the IoT-driven Web will easily eclipse today’s puny global cyberstructure. Magnitudes will ensue, and there will be increasingly insane demands for routers, switches, storage, cables, and processors. Like those old skinny ties in your closet, hardware will come back into vogue as never before. Take that, Marc Andreessen. What has me jazzed about IoT is its totality throughout the stack. This is not just a play for Cisco, for Rackspace, for Dell, for all who supply AWS and Google Cloud. There is some excitement for the software folks, too.
1 note
·
View note
Link
The JavaScript with statement can be a useful shortcut for accessing object properties:
var mailBox = { messages: { message1: 'hello', message2: 'I could not think of a message' } }; with(mailBox.messages){ console.log(message1); console.log(message2); }
Unfortunately, it is not very cross…
1 note
·
View note
Link
Jason Brownlee published an excerpt from his “_Small Projects Methodology: Learn and Practive Applied Machine Learning” focusing on the process of implementing machine learning algorithms:
Implementing a machine learning algorithm in code can teach you a lot about the algorithm and how it works.
In this post you will learn how to be effective at implementing machine learning algorithms and how to maximize your learning from these projects.
If you think about it, the process of implementing machine learning algorithms is in many ways similar to how machine learning works.
Original title and link: How to Implement a Machine Learning Algorithm (NoSQL database©myNoSQL)
33 notes
·
View notes
Link
tl;dr Proj4js used to be really bad, now it’s better and you should use it and help build it.
Background
A while ago I decided the write a program to parse shapefiles in the browser into geojson. Despite the shapefile’s reputation as as perversely bizarre format (it’s binary and mixed…
2 notes
·
View notes
Text
Facebook Like jQuery Image Gallery Lightbox Plugin - AM2 SimpleSlider
Yet another jQuery plugin for creating an image gallery lightbox that features an image gallery on the left and content area on the right where can place description about the image, similar to the facebook photo viewing box.
Demo
Download

5 notes
·
View notes
Text
Facebook Like jQuery Image Gallery Lightbox Plugin - AM2 SimpleSlider
Yet another jQuery plugin for creating an image gallery lightbox that features an image gallery on the left and content area on the right where can place description about the image, similar to the facebook photo viewing box.
Demo
Download

5 notes
·
View notes
Text
jQuery Plugin To Vertically Align Element To Middle of Its Container - valign
valign is a very simple jQuery plugin used to vertically center an Html elements within its container without having to write extra CSS rules for different browsers.
Demo
Download

7 notes
·
View notes
Link
Since I have been very busy lately with a product launch coinciding with the holidays, I thought it would be a good idea to select what I think have been the five best posts of my blog for this year (in chronological order);
Recursion In JavaScript Without Making A Recursive Call Sounds...
4 notes
·
View notes