Joined October 2013
·
Posted to
KnockoutJS virtual elements won't work on 3G networks (odd)
over 1 year
ago
This "optimisation" breaks other frameworks (such as less css). I encountered this for the first time a while back: https://github.com/less/less.js/issues/1189#issuecomment-13766554 I'd have hoped the mobile operators would have resolved this by now.
Posted to
Using npm in Europe
over 1 year
ago
Thanks @filipebarros, good tip. I personally alias so I can PUT registry.npmjs.org when publishing.
Posted to
npm list --depth=0
over 1 year
ago
@icflorescu yep, great point
Posted to
npm list --depth=0
over 1 year
ago
@heartcode try npm list --depth=0 "$@" 2>/dev/null
(essentially ignore pointless errors by redirecting them to /dev/null)
Posted to
Control Phonegap Splash Screen hiding
over 1 year
ago
Is it not <preference name="AutoHideSplashScreen" value="false" />
?
Posted to
JSON database engine
over 1 year
ago
I'd recommend using a JSON based document store, such as MongoDB
Posted to
Commit Message Tips
over 1 year
ago
Start with a capital letter?
Achievements
264 Karma
30,305 Total ProTip Views
Forked 20
Have an established project that's been forked at least 20 times
Honey Badger 3
Have at least three Node.js specific repos
Kona
Have at least one original repo where CoffeeScript is the dominant language
Lab
Have at least one original repo where C# is the dominant language
Altruist
Increase developer well-being by sharing at least 20 open source projects
Bear 3
Have at least three original repos where Objective-C is the dominant language
Honey Badger
Have at least one original Node.js-specific repo
Komodo Dragon
Have at least one original repo where Java is the dominant language
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Forked
Have a project valued enough to be forked by someone else
Charity
Fork and commit to someone's open source project in need
Bear
Have at least one original repo where Objective-C is the dominant language
Similar to the way I work, although I prefer a local variable over "this":
I think you'd like my functional js library: https://github.com/leecrossley/functional-js complete with multiple function composition e.g. λ.compose(func1, func2, func3);