540 reputation
1515
bio website
location
age 19
visits member for 2 years, 4 months
seen 16 mins ago
stats profile views 99

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


May
16
comment Reading Rails Debugger Output
what does @search.inspect give you?
May
16
comment Ruby .each but need to add in a unique class for each of them
haha oh no bother, its not a big deal. I added in the thing about custom class names.
May
13
comment Nested Querying in Mongoid in 2013
Oh I know that, thats why I pointed it out! That could be it.
May
13
comment Nested Querying in Mongoid in 2013
Thanks for answering :) I don't want to use embeds_one/embedded_in, rather I'm using has_one/belongs_to, don't think thats causing the problem. Version is the same, still giving me back zero, even when current_user.trips.first.start.time is fine...
May
12
comment Nested Querying in Mongoid in 2013
@Sparda its grand, thanks for helping, your original answer seemed close
May
10
comment Save gameplay in localStorage
@Piszu you're better off ignoring this answer.. its not a solution at all.
May
10
comment Save gameplay in localStorage
@RwamDev please look at his fiddle, he does!
May
10
comment Save gameplay in localStorage
@adeneo look at his fiddle, its a custom function to store and get objects
May
10
comment Save gameplay in localStorage
no this isn't the solution. He's using specific getObj and setObj functions to set and get objects. Look at his fiddle.
May
8
comment node.js crashing after loop iteration
@philippe Sure. So node works asynchronously. So if I have say a for loop like you have above, and then some code afterwards, node will run the for loop and at the same time, run the next bit of code. In your code, it runs the for loop, then simultaneously calls plugin.CloseBrowser(); and considering that you use the plugin var in your loop, I'm presuming that calling the function above is going to cause problems. Get me?
Apr
15
comment OmniAuth using google oauth 2 strategy scope failure
@fholgado thank you sir, that is some spot. They really need to fix their docs.
Apr
6
comment my host just installed node.js
@BenMuircroft see last comment
Apr
6
comment my host just installed node.js
Well that command is taken directly from a site talking about a centos 5.5 so it'll work if you have access to a terminal and you have privileges to curl and install stuff. Tell me if it works
Apr
5
comment JS several functions via prototype
I completely agree with you, thats why I added it back in, and it in one line does what the actual accepted answer does through a function. I'm just sorry you didn't get the rep points!
Apr
5
comment JS several functions via prototype
@louisbros I got an edit suggesting this indeed, it was from you actually right? That got rejected by a moderator, trying to see why, if it was for no reason I'll add it in :) Wouldn't this throw an unexpected } error though? Wait never mind
Apr
5
comment JS several functions via prototype
Personally, I'm against this, as addToPrototype(Shape, {..}) is longer than Shape.prototype and makes it even more confusing for anyone looking at your code if you do something like this.
Apr
4
comment Calculating investment values with javascript
Oh grand I didn't see that, must be the formula then yes.
Apr
4
comment Calculating investment values with javascript
I agree with your answer, that was my initial thought, but I'm more perplexed with Also, I have set alerts to appear if the interest is less than 0 You're right about the 20, but why would the check for 0 not be firing? All a little odd.
Apr
4
comment Calculating investment values with javascript
very true, @Code_Ed_Student maybe if you pop a few console.log's into your script it might help? just to get a better idea of whats working and whats not?
Apr
4
comment Calculating investment values with javascript
@Jon but 'investment' at least isn't a div its an input (see $("investment").focus();) Maybe it isn't the part I initially taught - jsfiddle.net/avXkd/2 this works fine.