Hacker News new | past | comments | ask | show | jobs | submit | nocivus's comments login

Its last trick will be to make us all disappear :D


No one uses Terminal. iTerm ftw ;)


I use iTerm as well but besides from splitting panes and broadcasting I don't see the benefits. Why do you use it?


Terminal.app wasn't very good back in the day; I think a lot of people ended up on it because of that and never went back. Also, CMD-click is far nicer for opening links than CMD-doubleclick :)


Conversely, everyone I know (including myself) uses Terminal. I've never found a compelling reason to switch.


Thanks :)


This post will balance things out, i think...


That is precisely my point in the post: A lot of times the problem itself changes. Not to mention the requirements that management sees as "details" but that, in reality, are complete game changers as far as the system architecture goes.


Just because they say so, it does not make it false ;)

We will have to wait and see :)


I think I would prefer the django template language. Seems like you type a lot less, though I have been mistaken before :)


Lol, I just noticed you also posted something on fabric. If I seen it I would not have submitted another entry.

One quick note. I think it's a good idea to explain that, since from the command line you are basically calling functions inside the fabfile.py, this allows you to define different environments. Something like:

def env1(): env.some_property = 'hehe'

def env2(): env.some_property = 'haha'

def deploy(): put('/%s/file.prop', '/somewhere_in_the_server/')

If you then run 'fab env1 deploy' you will copy the file under 'hehe' to the server. If you use env2 you will copy the other one. You are basically overriding the env variable. You can do the same to configure different paths for different target servers.

Really cool stuff :D


Is there a way that code could be formatted? :)


Precede the code with a blank line and then two spaces.

  $str = 'Like this.';
  echo $str;
http://news.ycombinator.com/formatdoc


Thanks for all the tips, everyone :D


Thanks for the cool explanation. I never really dug into ssh that much, just posting a helper to connect without password ;)

So basically ssh-agent should be always running and you add your key to it (via ssh-add) and you never enter your password again, but the key still is generated with a passphrase? Correct?

Thanks


That's correct. And on OS X (at least on 10.5) you can put the key into your keychain and unlock it with your system password. Just make sure you lock your keychain when you don't need it.


Cool. Thanks a bunch :)


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

Search: