scriby | 4 years ago | on: Why does the "chart increasing" emoji show in red?
scriby's comments
scriby | 6 years ago | on: Uniqlo robots pick up packaged T-shirts and put them in a box
scriby | 7 years ago | on: Ask HN: How long does it take to learn a new keyboard layout?
I used Dvorak exclusively and lost the ability to type on qwerty keyboards. This became pretty inconvenient, so I re-learned qwerty, but then I couldn’t type in dvorak any more.
A while later I practiced dvorak again and have been able to switch back and forth without issue ever since (even though I don’t use dvorak very often now).
I found that dvorak wasn’t actually that good for programming due to the positioning of punctuation, math, and auxiliary keys. It’s also annoying for gaming or using hotkeys in general (especially copy + paste).
scriby | 10 years ago | on: Angular 2 Style Guide
scriby | 10 years ago | on: Now: realtime Node.js deployments
Looking at the npm release history, versions <= 0.8.1 are the old project, and the new project picked up at 0.9.0 (should have been 1.0.0 I guess). This is consistent with npm's statements about package name transfers during the leftpad debacle, but there's just something weird about reusing package names for totally different projects...
scriby | 10 years ago | on: A way to deal with enormous branching factors in strategy games
If both of you have 3 minions on the board, each of your minions has a choice of 4 targets, which is already up to 4^3=64 choices. Then considering each order of attacks, and the fact that you can play any card of your hand before or after attacks, and the branching factor has the potential to explode.
scriby | 10 years ago | on: Faking Co-Routines, or Why Callback Hell Is Over (2014)
That's a control flow solution I wrote on top of generators to make it a little easier to manage parallel tasks, timeouts, error handling, and so on.
I originally made asyncblock, which was based on fibers a few years ago. This module uses the same underpinnings as asyncblock, just based in generators instead of fibers.
scriby | 10 years ago | on: The Daily Mail Stole My Visualization Twice
scriby | 12 years ago | on: Has goto fail been fixed yet?
scriby | 12 years ago | on: Radiation-hardened quine
"I didn't really think I'd be able to write this [program], but somehow I was able too. Ruby is scary, isn't it? I wonder if you could write this in another language?"
scriby | 12 years ago | on: Nightwatch.js
Check out https://github.com/scriby/browser-harness-bootstrap-tests for a full example. Browser harness itself is just a conduit between node and a browser - you need to provide the test framework yourself (mocha, vows, etc.).
scriby | 12 years ago | on: Nightwatch.js
It's considerably more lightweight and compatible with all browsers you care about, but you can't do everything you can do with selenium.
We've been using it for about 6 months at work and having good results.
scriby | 12 years ago | on: Christ, I hate Blackboard
scriby | 12 years ago | on: Programming Interview Question: Eight Queens
The purpose of this question isn't to tell you whether the candidate can program chess boards or not. It could be used to help find candidates who:
* Have experience with search algorithms
* Specifically have experience with backtracking solutions
* Can reason through a complex problem (and communicate while doing so)
* Paid attention in school / knowledge retention (for recent grads)
scriby | 12 years ago | on: Why does it seem like threading and fibers in Node have been abandoned?
I don't think it's really needed any code updates recently, as it works on Linux / OS X / Windows and all recent versions of node.
I think it's somewhat hard to tell what the adoption of fibers looks like, as it typically wouldn't be used by other modules in npm. You don't want to force people using your module to use fibers. So, it would mostly see its usage in applications.
It will be interesting to see what happens to fibers once generators ship with core node (available now under the --harmony-generators v8 flag). The most compelling reasons for using fibers can also be met by using generators.
(I maintain a library built on top of fibers: https://github.com/scriby/asyncblock)
scriby | 12 years ago | on: Knockout v3.0.0 released
See here: http://stackoverflow.com/questions/9254632/how-to-stop-knock...
Also note that you can configure it as a virtual element, so you can use the <!--ko stopBindings: true--> syntax.
scriby | 12 years ago | on: Wait.for: Sequential programming for Node.js (beta)
I'll just leave this here. It's been my pet project for the last couple years, and is a fully featured version of this concept.
There's also https://github.com/0ctave/node-sync, which is the same concept.
scriby | 12 years ago | on: Error handling in Node.js and Express
scriby | 12 years ago | on: The Data Behind Purchasing Behavior at UserVoice – Pricing for Conversion
scriby | 13 years ago | on: Japanese Animation and Video Game Website Layouts
If I was to offer a theory on why the Japanese tolerate more text, I would say it's related to higher "skimability". It's easier to pick out symbols within a block of text and get a general feel for what's there vs. words in western alphabets. If this is the case, we would also expect Chinese websites to be similar, and I think that's the case.
Or, it could just be a design trend. For instance, usage of the color pink is much more prevalent in Japanese design.
I guess this just doesn't carry over into the charts used in the financial sector?