Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
rstacruz
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
rstacruz
5y ago
Me! I was a Dvorak user for around 6-8 years, but switched to Colemak mod-DH. I found it to be worth it. Colemak mod-DH is more ergonomic for ortholinear keyboards, less "alternate hand" keys, more balanced left/right hand ra
2.
▲
by
rstacruz
9y ago
Hey there! Author of devhints.io here... happy to answer any questions you may have.
3.
▲
Show HN: TL;DR for developer documentation
(devhints.io)
4 points
by
rstacruz
9y ago
|
0 comments
4.
▲
by
rstacruz
9y ago
if you were using something like Angular or React to manage your full page, then by all means run with it! RSJS is an alternative to that that's more suited for "traditional" sites rendered on the server (eg, traditional Rail
5.
▲
by
rstacruz
9y ago
Nice work! I've also done a similar thing ( https://github.com/rstacruz/onmount ), and it's really useful in managing behaviors in a page. For those wondering what this is for, I've written a document with
6.
▲
by
rstacruz
10y ago
I think the post title can use some work!
7.
▲
by
rstacruz
11y ago
It's a very old P2P file sharing network modeled after Napster. It's main propositions (in my opinion) are its active users who share harder-to-find electronic music, and its discussion groups which are available inside the app.
8.
▲
by
rstacruz
12y ago
author of Transit here. Velocity actually has a comparison over in its page (top right area) that makes velocity a good choice for animating multiple elements at once.
9.
▲
by
rstacruz
12y ago
Typically those are done using configuration files of code-checking tools, such as .jshintrc[1] or .pylintrc. [1]: https://gist.github.com/connor/1597131
10.
▲
by
rstacruz
12y ago
Another way to approach this problem is to use travis-ci. Travis already comes with a full stack of ruby/go/node/python working that you can take advantage of to do any arbitrary commands on `git push`. Just set the language
11.
▲
by
rstacruz
13y ago
I'm not sure about that—"Rico Sta. Cruz" isn't some pseudonym I can restyle, it's my actual real name :)
12.
▲
by
rstacruz
13y ago
The "placebo progress bar" UI pattern isn't new. For instance, there's no way to monitor the progress of sending an SMS message, yet the iPhone UI displays a progress bar for it. It assumes that SMS's take an averag
13.
▲
by
rstacruz
13y ago
Hi, I'm the author of NProgress. Yes! It's intentional. You can disable this by removing the `cursor: wait` rule in the CSS file.
14.
▲
by
rstacruz
13y ago
Good point—let me address that soon.
15.
▲
by
rstacruz
13y ago
Hey guys! I built this, let me know if you have any questions.
16.
▲
by
rstacruz
14y ago
If you are using jQuery and just need a simple generic event emitter, you may not need this library. var emitter = jQuery({}); emitter.on('ready', function() { alert("Ready!"); }); emitter.trigger('ready'); ...or if you're
17.
▲
by
rstacruz
14y ago
I've always thought about this idea. After dissecting my own process, I think Easel.io's "picture only" approach is good. It's very common that I iterate by doing very messy things, like say, breaking menus apart into two just to see how it
18.
▲
by
rstacruz
14y ago
Hey Jeremy! On a totally unrelated note, if I only have 48 hours to spend in New York city, what would you suggest I visit?
19.
▲
by
rstacruz
15y ago
That's how jQuery implements it for jQuery.fn.queue, and I think I'll revise it that way too.
20.
▲
by
rstacruz
15y ago
Interesting. Any concrete examples of how it can be useful in a real-world project?
21.
▲
by
rstacruz
15y ago
"eee_c: Geez ppl, there is no Wireshark SPDY plugin. It wasn't working 6 months ago and it's not working now. Silly HN." https://twitter.com/eee_c/status/167697122823639040 I can't confirm this, but @eee_c wrote The SPDY Book, I'm incline
22.
▲
by
rstacruz
15y ago
I think a simpler way would be to cache the value of `_.template($().html());`.