540 reputation
1515
bio website
location
age 19
visits member for 2 years, 4 months
seen 1 hour ago
stats profile views 98

18 Year Old from Ireland, node.js, python PHP, Ruby (Rails), Java, Android, iOS, win8, javascript, jQuery, css


Mar
28
suggested suggested edit on What should we do to fetch mutiple $_GET values
Mar
28
comment Using jQuery .on() on LI elements
jsfiddle.net/gsKGS your code is working for me...
Mar
27
comment Upload photo to my facebook album
Why the need to do it unauthorised? at least, if say it was a one off, why not use graph api explorer to get an accesstoken and then do it?
Mar
27
revised Is Mongoose query result read-only?
deleted 171 characters in body
Mar
27
comment Is Mongoose query result read-only?
you know where you have res.send(obj)? Could you throw a quick obj['field'] = 'blah'; just to check if its okay then? Might give a hint..
Mar
27
comment Is Mongoose query result read-only?
hmm odd, I'm literally just throwing things out there now. what happens where ever callback(obj) is? like is it 'read-only' then? Sounds very odd that it'd be read only. you've me intrigued
Mar
27
comment Is Mongoose query result read-only?
hmm is there any reason you went with .exec over S.findOne({name: name}, function (err,obj) { .. })?
Mar
27
answered Is Mongoose query result read-only?
Mar
26
comment Best way to sync html/css developer and js developer?
Surely its not that hard? @redexp what do you mean by 'Handlebars is not representative'?
Mar
26
comment pattern if fail 1 try 2 if fail try 3 for nodejs
No problem, it's a great little module, does everything you're looking for.
Mar
26
revised pattern if fail 1 try 2 if fail try 3 for nodejs
added 100 characters in body
Mar
26
answered pattern if fail 1 try 2 if fail try 3 for nodejs
Mar
25
answered Best way to sync html/css developer and js developer?
Mar
25
comment Unable to understand errors from javascript
R.E - document.getElementById('health') innerHTML = health; //console says uncaught syntax error:unidentified syntax it should be document.getElementById('health').innerHTML = health; //console says uncaught syntax error:unidentified syntax
Mar
25
awarded  Yearling
Mar
23
comment Easiest, Most Efficient way of associating data from different tables Without Associations
Knew it had to be something to do with them, I knew literally adding two sql queries together would work nicely, thanks :)
Mar
23
asked Easiest, Most Efficient way of associating data from different tables Without Associations
Mar
23
comment PHP help creating seprate page newbie here
So I think I can clear this up, say you've a query like: SELECT * FROM printers to get all the printers on printers.php. What you're looking for to get data about just one printer is SELECT * FROM printers WHERE model = $model. This will give you data about just that printer so you can then display it individually
Mar
22
answered How can I debug js code using Cordova and ios simulator?
Mar
21
comment Javascript string syntax and for loop logic
you've got to be clear that you're not actually using nor needing an array at all in this situation.