Hacker Newsnew | past | comments | ask | show | jobs | submit | bomberstudios's commentslogin

> Recently formed an agency with a few other automation devs who do similar stuff if you want to check it out: https://weautomatestuff.com

Would love to hear more about the business side of this, because this sounds like the ideal side project for natural born tinkerers!

It may be too soon in the project's lifetime for any insights, but if there's any wisdom nugget you can share it would be really nice :)


> clearly no one will ever pay you for such a service such that you'll break even, much less make $100/year.

"revenue is hard to predict but I expect around $200k for the year"

Source: the one guy that runs Pinboard https://twitter.com/Pinboard/status/653322650677153792


If you used The Unarchiver, Pathfinder or Keka to unzip it, try using OSX's Archive Utility


Surprisingly this turned out to be the issue; The Unarchiver messed up some file attributes it seems. Thanks.


Guess what? The broken robot: http://www.istockphoto.com/file_closeup/illustrations-vector... and home page illustration: http://www.istockphoto.com/file_closeup.php?id=4237042 are also stock images.


Incentive: easier whatever (try the Flickr demo, it is quite cool)

Who's going to develop: Yahoo (obviously) and (hopefully) a flock of hackers (if _why is playing with it you can be sure it will attract a lot of crazy people :)


I don't have enough kind words for Redmine http://redmine.org. I have been using it for some time and it is perfect as a simple bugtracker/SVN browser/wiki.

It's open source and built in Rails, and it's easy to tweak to suit your needs (via a plugin system) and perfect if you want to get your feet wet with Rails.

As for speed, I'm using it on a shared host with Passenger and it fast enough. Speed on a VPS is quite nice, and it flies on a local network.


jQuery is fast, lightweight and easy to master.

For more advanced stuff, your best bet is Prototype.

Dojo, YUI (and ExtJS, not on your list) are good if you have a massive team of JavaScript developers and need standards and solid documentation, but are overkill for 90% of projects.


I've done ExtJS and jQuery for the same project recently.

Ext has a nice DataStore object for accessing remote data. And Ext has all those great "rich" components. But I found it wasn't much more work to do my own components in jQuery. (Tree is very simple to implement in jQuery from scratch)

The sense of control I have with jQuery is nice.

The main code to handle my own trees:

  _.fn.toggleTreeNode = function(animate) {
    var node = this.filter('button');
    if(animate) {
      node.siblings('ol').slideToggle(animate)
    }
    else { 
      node.siblings('ol').toggle();
    }
    node.parent().toggleClass('closed');
  };
You can see here the implementation is customized to the markup I needed for MY tree. CSS handles the rest, as it should.

My favorite thing about jQuery is it makes doing things the right way very easy.


Out of interest, why would you suggest Prototype for "more advanced stuff"?


Prototype has class-creation helpers galore, whereas jQuery expects you to do things the old-fashioned way.

There's a lot of jQuery love and Prototype hate out there, which I don't quite get. Both are fantastic; both are bloated.


Nokia is already working in this direction. Google "nokia touchless" to see some prototypes.

Can't wait to see the day you can wave your hands in front of the screen saying "these are not the bugs you're looking for" :D


I know I'd like to touch a screen when prototyping stuff, or for fast-paced creative sessions (i.e: brainstorming and such)

On the other hand, I'm also a keyboard junkie, so you can happily ignore my point of view :)


True. Actually now when I think about it there are a lot of obvious applications for it. Paint and photoshoplike programs for example.

But getting rid of the mouse altogether? Hmm maybe.


This looks a lot like Haml: http://haml.hamptoncatlin.com/

Haml also happens to have a tutorial, documentation, and downloadable source code.

If you want to try Haml online, check http://lab.hamptoncatlin.com/


I came here to say pretty much the same comment, haml is awesome (I'd much rather use it in a project than something equivilant to generate xhtml [sass is nice too :P]).


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: