grabastic | 13 years ago | on: Rails is omakase
grabastic's comments
grabastic | 13 years ago | on: Reminder: secret_token.rb is named so for a reason
Are you suggesting that Github starts tracking all major frameworks, all versions of said frameworks, and the files that should maybe not be version controlled within each of those frameworks/versions?
grabastic | 13 years ago | on: LESS animation library
There are also big differences in design philosophy. I love the if/else, while, and for options that Sass provides, but Less has chosen to forgo that for (imo) a clunkier syntax. Things like that are unlikely to change.
grabastic | 13 years ago | on: LESS animation library
// Less
.rounded-corners (@radius: 5px) {
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
-ms-border-radius: @radius;
-o-border-radius: @radius;
border-radius: @radius;
}
// Sass + Compass
.rounded-corners {
// All vendor prefixes are generated for you
@include border-radius(5px);
}
I'm sure there are plugins for Less that can accomplish the same. I just grabbed this code from the Less homepage.Another thing... Sass has much nicer control flow (if/else, while, for) that can create very powerful mixins.
grabastic | 13 years ago | on: LESS animation library
http://cdn.css-tricks.com/wp-content/uploads/2012/06/Charts-...
(Could be skewed by the audience participating in the poll, of course.)
grabastic | 13 years ago | on: Use ack instead of grep to parse text files
grabastic | 13 years ago | on: Use ack instead of grep to parse text files
grabastic | 13 years ago | on: Thinking the unthinkable
grabastic | 13 years ago | on: Thinking the unthinkable
I'm quite surprised that you've chosen to identify with the petulant, knife-wielding child in this article.
Sure feels like you're bringing some personal baggage to the equation... this article is too short on details to draw the conclusions that you have.
grabastic | 13 years ago | on: Facebook, Google, Zynga Ask Courts To Reject Patents On Abstract Ideas
grabastic | 13 years ago | on: Why Do All the Great Node.js Developers Hate CoffeeScript?
But for me, JavaScript's shortcomings are far worse than CoffeeScript's.
grabastic | 13 years ago | on: Show HN: Telescope, an open-source social news app built with Meteor
grabastic | 13 years ago | on: D3, Conceptually - Lesson 1
I think he's targeting his audience well. I'd imagine most of his users arrive like this...
1) I need a data visualization library.
2) D3 seems to be a good one.
3) Read the D3 docs at the project's homepage.
4) I still need help learning D3.
5) Google for tutorials.
6) End up at this person's tutorial.
"What is D3" would make sense if users did this in reverse (like I'm sure some people clicking on this news item have done), but I don't think that's the normal use case and I don't blame the author for not addressing it.grabastic | 13 years ago | on: D3, Conceptually - Lesson 1
root.selectAll('rect')
.data(rects).enter()
.attr({
x: function (d) { return d.x; },
y: function (d) { return d.y; },
width: function (d) { d.w; }
});
https://github.com/mbostock/d3/pull/277grabastic | 13 years ago | on: Introducing the Rails API Project
grabastic | 13 years ago | on: Introducing the Rails API Project
Would love to see easy versioning with custom mime types and link headers for pagination and associated resources. Maybe that doesn't belong in core... but it would still be pretty cool.
grabastic | 13 years ago | on: Everybody Hates Firefox Updates
grabastic | 13 years ago | on: JQuery 2.0 Drops Support for IE6/7/8; API-Compatible with jQuery 1.9.
grabastic | 14 years ago | on: State of the Backbone
grabastic | 14 years ago | on: State of the Backbone
It means he's a node troll. They take a shot at the dominant frameworks any chance they can get. Node trolls have reached the level of obnoxious arrogance that early Rails developers were once mocked for. Don't feed the trolls.