mainguy
|
3 years ago
|
on: A-Frame, build immersive VR/AR on web using HTML/JavaScript
Yeah, I mean at the end of the day if you really need extreme performance and/or offline capabilities (beyond what PWA can give) mobile is really the only way to go IMHO.
mainguy
|
3 years ago
|
on: A-Frame, build immersive VR/AR on web using HTML/JavaScript
I maybe sidestepped the issue (because I use esm imports in my project)...I'm not sure if it's because i'm using webpack or if I'm misunderstanding the issue you're talking about.
mainguy
|
3 years ago
|
on: A-Frame, build immersive VR/AR on web using HTML/JavaScript
A-frame has been around a while, but I see the future of immersive experiences diverging much like mobile/mobile web. Native will always have a place, but web is the future.
mainguy
|
5 years ago
|
on: You don’t need reproducible builds
I think OP is coming from a different perspective than I (corporate bespoke solution builder) do. When I say "reproducible build" I mean a build that is the same on any machine (i.e. no special magic necessary to build a "official" version of the code). Too often in corporate environments, getting a local build or setting up a new build pipeline involves arcane black magic and/or copy/pasting weird libraries that can't be pulled from any sort of "official" repository. curl/bash libraries that "automatically change versions" based on when upstream decides to change them can wreak havok when setting up a new build environment. My $0.02, it's not (in the corporate world) so much about validating binaries, but more about "how many steps beyond check out the code" exist and how easily can I validate my binary uses the same versions of libraries/dependencies as the one that a local developer tested?
mainguy
|
5 years ago
|
on: Amazon Busted?
Well, looks like it's been resolved.
mainguy
|
8 years ago
|
on: Her six-hour commute each day seems crazy, but her affordable rent is not
Because the UK is a bit over half the size of California. Many folks in Europe tend to under appreciate the sheer size of the United States. To your point though...certain metro areas are largely this way...(NY/Chicago)...but others (LA/Detroit) are not... Not sure why some cities invest and others don't.
mainguy
|
8 years ago
|
on: Her six-hour commute each day seems crazy, but her affordable rent is not
So 3 hour commute in Bangalore is what...5km? :) It routinely took me 30-40 minutes to go about 1km...I'd have walked if there was decent sidewalk to be found. THAT city needs to have it's planners fired...but that's a different discussion.
mainguy
|
8 years ago
|
on: Her six-hour commute each day seems crazy, but her affordable rent is not
LOL, I wonder how many people do "Rails on Rails" as I've worked on multiple projects in the Chicago area where we did just that (1 hour train ride plus 40 minute drive each way for me BTW)...but yes WFH or fly-in fly-out is far better...
mainguy
|
9 years ago
|
on: Yandex.Mail's successful migration from Oracle to Postgres [pdf]
Exactly!, I mean for sure slavery is not so bad too if you treat the slaves nicely right? Systematically enslaving them is also a far cry from eradicating them right?
mainguy
|
9 years ago
|
on: Face recognition app taking Russia by storm may bring end to public anonymity
OTOH, Facebook could buy their technology and then just use it for their own purposes...
mainguy
|
10 years ago
|
on: My Complicated Relationship with No Longer Being CEO
While I agree it's a great read and CEOs would be well served to understand what he's saying...I don't think that takes any more guts to write than a schmoe who posts something derogatory about their company..esp since 10% of the us population lives paycheck to paycheck (yes, look it up...10% of the population has ZERO savings [not even retirement money] and spend EVERY penny EVERY month)...and 25% have zero savings i.e. they may have a surplus, but nowhere NEAR a year's savings...
mainguy
|
10 years ago
|
on: My Complicated Relationship with No Longer Being CEO
Huh, while interesting and well written and all the other happy happy/joy joy stuff everyone else posted...I can't help but wonder about folks who start out in life as founders/CEOs/top 'o the food chain...how do (can) they relate to folks who spend years working for others? This made me realize that many folks might in fact be so isolated/insulated from the folks that work for them that they are quite literally "out of touch" with the reality that vast majority experiences... interesting read.
mainguy
|
10 years ago
|
on: Data Privacy Protection: Why Tutanota Is in Germany
But...isn't that also helping with privacy? I think the difference is personal liberty versus privacy...
mainguy
|
10 years ago
|
on: “Two days ago the police came to me and wanted me to stop working on this”
24/7/52 does seem more logical...
mainguy
|
10 years ago
|
on: Just Got Out of Prison. Now What?
IANAL, but if parole is just a way to more cheaply supervise someone still serving their time it seems like the same thing... Once parole is over though...well then it would be because you've finished your sentence.
mainguy
|
10 years ago
|
on: Soloshot: Automatically film outdoor activities without a camera operator
I agree...I would buy it almost immediately if it could track an adidas smart ball...
mainguy
|
10 years ago
|
on: React Performance
Well, I think the author's point is that the conventional hive mind wisdom in the community that uses this product has been that DOM manipulation causes performance problems and the framework is wicked fast and not a source of performance issues... which may lead naive or new developers to never both to consider it as a potential source of problems. This very clearly illustrates it may be possible that you shouldn't always disregard the framework as a potential source of problems...
mainguy
|
10 years ago
|
on: React Performance
It's only a negative benchmark if you chose to perceive it that way. I think it's a valid data point, it doesn't say anything (that I perceive) negative...unless you're really worried about javascript performance of the framework versus relative to straight javascript.
mainguy
|
10 years ago
|
on: React Performance
Said every developer who's never had to "just speed up" an application written with a framework that makes development/debugging easy, but has fundamental performance issues that cannot be overcome without a significant overhaul.
mainguy
|
10 years ago
|
on: Ask HN: Why Node.js and for which type of App?
Generally Node has been targeted at server side projects to date (i.e. building web APIs/etc). Stand it up register a listener on a port, and start servicing requests.