wyqydsyq | 8 years ago | on: Infinitown – A WebGL Experiment
wyqydsyq's comments
wyqydsyq | 8 years ago | on: NZ teen's $220m ICO venture triggers official warnings
The kid is hoping he can lie and scheme his way to success.
Sorry bud but that doesn't work with startups, maybe if you were already an executive at a multinational corporation where you have little accountability and any blame can fall onto the company, but if you lie as a startup founder your reputation and that of all your future ventures will be ruined.
wyqydsyq | 8 years ago | on: Australian Same-sex marriage postal survey results are in
That is the most likely result of this poll
> If they knew that was what would happen, would they vote yes?
From the same-sex couples I've talked to, absolutely. Very few same-sex couples are interested in getting married by a religious celebrant, considering said religions typically vilify their sexuality.
wyqydsyq | 8 years ago | on: Australian Same-sex marriage postal survey results are in
The influence exerted by radical sensationalist groups like these on politics is disgusting really, it's made even worse that the vast majority of information shared by these groups is incorrect or intentionally misleading/manipulative like the case I just mentioned
wyqydsyq | 8 years ago | on: Is StubHub's Website Deceiving Users?
It would be deceiving if they showed an artificially falling stock counter or something to that effect, but in reality they are showing actual true data, it is only the way in which they show it (randomly inserted amongst search results) that can cause a sense of urgency, but there is still no deception here.
wyqydsyq | 8 years ago | on: Zika virus used to treat aggressive brain cancer in mice
wyqydsyq | 8 years ago | on: Puppeteer: Headless Chrome Node API
The primary use-case for headless-chrome is to support stuff like scraping/crawling JavaScript-dependent sites and services, and emulating user workflows to retrieve data or trigger side effects that couldn't otherwise be achieved with something more low-level (curl, manual HTTP requests w/ Node's HTTP/S API etc).
headless-chrome would be used for the functionality of a server-side microservice, rather than for automated testing of UI/UX, there are already more appropriate projects to achieve that.
wyqydsyq | 8 years ago | on: The Odin Project – Learn Web Development for Free
Teach beginners backend JavaScript with Node.js. It's not a matter of personal preference, JavaScript is objectively easier for beginners to learn and utilise for backend programming because arbitrarily introducing another language when they already know front-end JS increases cognitive load for no benefit.
wyqydsyq | 8 years ago | on: Torus – A secure, shared workspace for secrets
I personally found the experience of using Torus to be great. Getting a quick working setup is easy and it doesn't take much effort to transition from there to locked down access control. Will likely continue using it outside of the Docker context.
wyqydsyq | 8 years ago | on: How GitLab Abandoned the Unix Philosophy
GitLab is not just a program, it is both a collection of programs, and a cloud SaaS, neither of which the Unix philosophy is applicable to. The entire purpose of GitLab is to do multiple things, extending git's functionality with issue tracking, wiki etc.
If you want to do one thing and do it well then you should be just using the git CLI.
wyqydsyq | 8 years ago | on: GitHub was down
When you build a docker image, you copy all your runtime dependencies (`node_modules/`) and build artifacts into the image. When you push a deployment you are deploying that static image with the dependencies baked in, instead of trying to install the dependencies at startup.
wyqydsyq | 8 years ago | on: Is the gig economy working?
Once investments dry up you'll see Uber start to focus on profitability and reducing waste, until then they're 100% focused on expansion and disruption, which is pretty expensive and doesn't really make revenue.
wyqydsyq | 8 years ago | on: Turning Sublime Text into a Lightweight Python IDE
And here I was thinking Atom and VSCode had dominated the IDE/Editor environment
wyqydsyq | 9 years ago | on: Nginx reaches 33.3% web server market share while Apache falls below 50%
I find it hard to believe this could be accurate considering the vast majority of Node.js deployments are also utilizing Nginx as a reverse-proxy in front of it. I think a large portion of nginx's uptake is actually due to Node.js' popularity.
wyqydsyq | 9 years ago | on: Why are all Windows drivers dated June 21, 2006?
So according to MSoft developers, a property being unused and redundant = a profound purpose?
Why not just remove the date criteria completely if you want to ignore it rather than trying to work around it by mutating the data?
wyqydsyq | 9 years ago | on: Cutycapt, a command line tool that renders websites via WebKit
wyqydsyq | 9 years ago | on: Ask HN: How do I get freelance developer jobs?
wyqydsyq | 9 years ago | on: What Sid Meier’s Video Game Empire Got Right and Wrong About ‘Civilization’
wyqydsyq | 9 years ago | on: Tile Studio: development utility for graphics of tile-based games
wyqydsyq | 9 years ago | on: Essential Electron
You'd download a 1-2mb core script bundle that then dynamically lazy-loads resources as required. For example, if Hearthstone were converted to a browser game, you would initially only load the base client, all the metadata and media (e.g. hero SFX, card data, effects, images) would be loaded on the fly as they are required, or pre-loaded at determined points (e.g. load all the data for both players' decks when beginning a match)