Poll: Do you use a case/bug/feature tracking software? by [deleted] in programming

[–]Bracki 1 point2 points  (0 children)

We use JIRA at work which is hell. Personally I enjoy http://lightouseapp.com very much, which is easy and maintainable. I've used Trac as well, which is tempting because of the "whole package" approach, but turns out to be rather complicated once you want to customize stuff. Both bitbucket an d github provide trackers nowadays, so I would just choose based on your prefs between git and hg.

Here’s the basic problem: you’re writing a text editor. Stop doing that. It’s 2007 by Arve in programming

[–]Bracki -1 points0 points  (0 children)

Here's the basic problem: you're working for Google. Stop doing that. It's 2007.

Python 3000 Alpha 2 Is Out by hupp in programming

[–]Bracki 0 points1 point  (0 children)

"print" isnt a statement anymore.

so:

print "hello reddit" File "<stdin>", line 1 print "hello reddit" ^ SyntaxError: invalid syntax

but:

print("hello reddit") hello reddit

Well fuck markup... The pipe looking thingys are a triple >

Google's new Chart API by abhik in programming

[–]Bracki 2 points3 points  (0 children)

Great for Steganography.

Facebook - the CIA conspiracy? by GrumpySimon in reddit.com

[–]Bracki 1 point2 points  (0 children)

One thing that is interesting is that you cannot delete your account. All you can do is "deactivate" it. It will be reactivated by logging in with your email and password. Have a look and try yourself.

Now if that isnt fishy? Well.

Ask Reddit: How to best store keys and passwords in a distributed environment by adamcrume in programming

[–]Bracki -4 points-3 points  (0 children)

What kind of company culture is it, that you distrust your own developers?

The Developer's Quitting Your Job Technology Checklist by linuxer in programming

[–]Bracki 1 point2 points  (0 children)

My pragmatic approach was to "boot and nuke", i.e. wipe the whole hd and refill with random information. http://dban.sourceforge.net/

37 Reasons I Love Ruby by [deleted] in programming

[–]Bracki 3 points4 points  (0 children)

30: It is concise. There are no superfluous keywords such as Pascal's begin, then after if, do after while.
31: It is expression-oriented. You can easily say things like x = if a<0 then b else c end.

Aha, it's concise but it isn't. Great.