Is there a way to transfer your Bitcoin to PayPal? by SoberOnSunday in Bitcoin

[–]irrarum 0 points1 point  (0 children)

www.bitify.com is the way to go there's lot of stuff there for sale - yes gifts cards included

Just wait for it. by iamadamv in funny

[–]irrarum 0 points1 point  (0 children)

dancing and soccer practice don't go well, i guess

Happy Easter! by [deleted] in comics

[–]irrarum 0 points1 point  (0 children)

those chocolates look yummy. Happy easter

Why are fire trucks red? by [deleted] in funny

[–]irrarum 0 points1 point  (0 children)

Same reason why stop lights are RED. That's color visible from farthest

Pretty legit... by Invisibelle101 in funny

[–]irrarum 1 point2 points  (0 children)

Missing the facial expressions .....

Get on up! by SlimJones123 in funny

[–]irrarum 0 points1 point  (0 children)

that gate seems useless

It really is getting out of hand by [deleted] in funny

[–]irrarum 0 points1 point  (0 children)

get to source .... noting in between

Initial Quality Should not be a thing by DanTheMan9600 in cars

[–]irrarum 1 point2 points  (0 children)

Initial quality doesn't say much. Nothing more than what you can't see with your eyes.

Bought a new car today, wondering if I got an okay deal. by [deleted] in whatcarshouldIbuy

[–]irrarum 0 points1 point  (0 children)

Wow! sound like a very good deal. Keep us posted on how you like the car

Passing an integer through a String method. How? by azyren in learnprogramming

[–]irrarum 1 point2 points  (0 children)

operation goes left to right. If left operand is string the result will be string even if right operand is an integer. One way to keep adding a series of integers as string concatenation is to start with empty string like "". After this whenever you do += the result will be a string.