LePetitDev
|
8 years ago
|
on: Ask HN: We have a great team and capital but can't find a good idea
Transportation is a big problem, especially when it comes to commuting from a suburb to a city. I would love to have more options outside of aging and overcrowded mass transit. Are there solutions to this problem? Are there any killer carpool apps?
LePetitDev
|
9 years ago
|
on: New for AWS Lambda – Environment Variables and Serverless Application Model
I use Lambda in production as a replacement for a cron server. So far, all it does is keep my cache warm. So far, no complaints. It was actually TJ Holowaychuk's blog posts on his use of Lambda that got me to give it a shot.
LePetitDev
|
10 years ago
|
on: Why Airbnb is dead to me
On a related note, Drupal is dead to me.
LePetitDev
|
10 years ago
|
on: Application Architecture with React: Rethinking Flux
After getting rid of redux, what did you end up using for your data-model needs?
LePetitDev
|
10 years ago
|
on: React Performance
Shill, agreed. Surprised to see that this Google developer advocate leaves Angular out of the test and focuses solely on React.
LePetitDev
|
10 years ago
|
on: Hammer.js: Add touch gestures to your page
Hammer.js is for use on touch screens, not trackpads. I found the demo on the page to be a bit vague, too, but a much better demo in the following Codepen convinced me to use it. Plus, it has a much lighter footprint than Interact.js.
http://codepen.io/klawdyo/full/azmapQ/
On a non-touch screen, hold shift while dragging the green box to emulate pinch and rotate gestures.
LePetitDev
|
10 years ago
|
on: Meat – A free self-hosted Git collaboration platform
The naming, alone, was enough for me to chuckle and give the link a click.
LePetitDev
|
10 years ago
|
on: Node.js: Cluster vs. Async
+1 for generators. As a former PHP developer, I jumped into using generators that return promises in io.js (as well as es6 classes), and the code reads very much like PHP code, except all of the i/o is now asynchronous.