Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
knuckle_cake
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
9 ms
·
1.
▲
by
knuckle_cake
16y ago
Replying to my own comment, but Chris Eppstein has put up a gist of some differences, both syntactical and semantic, between SCSS and LessCSS. They are very, very similar to each other now, as I thought. https://gist.github.com/674726
2.
▲
by
knuckle_cake
16y ago
In my experience, no. After generating the CSS, we run it through YUI compressor for the deployed version. Any size differences remaining are measurable in bytes, and the ability to truly refactor our stylesheets more than makes up for that
3.
▲
by
knuckle_cake
16y ago
(Enh) .width() and .height() now report the width and height of hidden elements (#7225) This makes me so happy I could cry.
4.
▲
by
knuckle_cake
16y ago
We've been using Sass in production since we launched. Love it. I've not seen any real comparison between LessCSS and SCSS (i.e. the new Sass syntax that became available with Sass version 3.0) There were some real differences before that,
5.
▲
by
knuckle_cake
16y ago
One method I've used (with Ruby) is use of FakeWeb, and collecting the various responses from oauth providers to test against. It's the closest I've seen to hitting the real services. If you're testing javascript, you'll need to use Seleniu
6.
▲
by
knuckle_cake
16y ago
My co-founder is black.
7.
▲
by
knuckle_cake
16y ago
Only x86, though. x64 isn't there yet. http://arewefastyet.com/?machine=4
8.
▲
by
knuckle_cake
16y ago
We married OmniAuth with Authlogic to handle username/password (we're still on Rails 2, so no Devise for us). It wasn't too bad. Handling the validations for users was the tricky part, but Authlogic offers a ton of help in this area... way
9.
▲
by
knuckle_cake
16y ago
I recall a similar service a few years back which went a step further and encoded the text into an image, which allowed the sender to revoke the entire message at a later time. Google is not finding anything; maybe it's gone now.
10.
▲
by
knuckle_cake
16y ago
We're using OmniAuth and it works wonderfully. It beats dealing with JanRain/Gigya for a single signon solution.
11.
▲
by
knuckle_cake
16y ago
Maybe this is a good time to toss up the half-finished 6502 simulator I have kicking around.
12.
▲
by
knuckle_cake
16y ago
IE once was on Unix. Let the circle complete. http://en.wikipedia.org/wiki/Internet_Explorer_for_UNIX
13.
▲
by
knuckle_cake
16y ago
a javascript/web worker/canvas/svg/heatmap toy http://github.com/xxx/heatmap
14.
▲
by
knuckle_cake
16y ago
That may just be a language barrier. The smart ones will at least listen if you can show them the added costs they'll be paying for nickel features like this.
15.
▲
by
knuckle_cake
16y ago
There is a lot of info here, but it's attempting to focus on too-wide of an audience. The Javascript 101 section would be better left on the cutting room floor (or put into a separate article,) for example. What is here looks really solid,
16.
▲
by
knuckle_cake
16y ago
We know what his views are. It's more interesting whether he tells the truth about them publicly or not.
17.
▲
by
knuckle_cake
16y ago
Looking into said IRC clients, they all look to use regexps like I'm also doing. buh.
18.
▲
by
knuckle_cake
16y ago
I looked at both already. Both assume ARGV-like command strings with --long-switches with no way to get around that without significant rewriting/additional feature work. Of everything, cmdparse is closest to what I want (by a significant m
19.
▲
by
knuckle_cake
16y ago
Interesting, but it looks to require irb, heavily pollutes the global namespace with commands, and assumes I want to use --options-with-dashes. This is another 'close, but not quite' example. The current implementation is that I have a hard
20.
▲
by
knuckle_cake
16y ago
Unlearning CVS/svn is the truly difficult part of learning git. These complaints could only come from someone who has used CVS/svn in the past and expects git to work exactly the same way. Are there any extant articles of someone who has ne
21.
▲
by
knuckle_cake
16y ago
I'm writing a monitor for an emulator I'm working on, so your first example is what I am doing. I was wanting for something that lets me add commands, with aliasing, and arguments (maybe with optional regex validation) - e.g. breakpoint add
22.
▲
by
knuckle_cake
16y ago
I think you should continue working on it. If nothing else it builds your personal code library up. I'm not sure how many apps in general use ncurses anymore, but I don't think it's going anywhere. I'm actually developing a console-based ru
23.
▲
by
knuckle_cake
16y ago
While I don't have enough Django experience to give suggestions on that front, you can use BigTable if you want to move to Google App Engine, though the drawbacks may outweigh the benefits when dealing with an established app. That said, I
24.
▲
by
knuckle_cake
16y ago
I prefer webrat ( http://github.com/brynary/webrat ) for this type of testing if I'm using Ruby. You can use a browser if you want, or just run browserless for tests that don't rely on javascript.
25.
▲
by
knuckle_cake
17y ago
This phenomenon hit me hard when I was learning to play Poker back in the day.
26.
▲
by
knuckle_cake
17y ago
Empty jQuery sets are truthy. The page gets this doubly wrong when it says an empty list is returned (instead of the 'Array-like' jQuery set.) Check the length property of a returned jQuery set if truthiness really matters.
27.
▲
by
knuckle_cake
17y ago
tl;dr: Author has hurdle updating app to Rails 3, so Rails has now jumped the shark.
28.
▲
by
knuckle_cake
17y ago
thanks! I've now gemified it for use in Rails apps without having to hit a separate site. It emits data URIs at the moment only, so no IE love yet. I had immediate need for it. http://github.com/xxx/placeholder_image
29.
▲
by
knuckle_cake
17y ago
JSON.parse will also choke on the out-of-spec JSON. If your AJAX interactions stop working with jquery 1.4, it's your AJAX that is broken :)
30.
▲
by
knuckle_cake
17y ago
The one time I've run into this 'bug' in the past was on a site that used lots of javascript plugins, more and more of which are coming with their own CSS files nowadays. Of course you can concat them together, but that adds a maintenance b
More ›