kailden

- friends
313 link karma
17 comment karma
send messageredditor for
what's this?

TROPHY CASE


  • One-Year Club

reddit is a source for what's new and popular online. vote on links that you like or dislike and help decide what's popular, or submit your own!

Music to Code by, Vol 1-3 by DJ Bolivia. Just over 3hrs of high BPM low vocals coding music! by mattkerlein programming

[–]kailden 0 points1 point ago

sorry, this has been archived and can no longer be voted on

You got that right! But /r/programming is really a shortcut for /r/ImposeMyHipsterProgrammingLanguageTastesOnEveryoneElse so it's easy to see where mattkerle may have got confused.

fixed my bosses wall art by wytewydowin pics

[–]kailden 0 points1 point ago

sorry, this has been archived and can no longer be voted on

A lot of PEople are putting... googly eyes on deer now. You know why? I think its BE-cause DEER are dangerous. Deer have antlers that can stab you IN your hands, your eyes, your throat... your face. You need to know where YOU stand with them AT all times. The only way to know where you stand with someone is to look them in the eyes....

(SNL....http://bit.ly/aB4OIg)

Git as it should have been from the start. by malcontentin programming

[–]kailden 1 point2 points ago

sorry, this has been archived and can no longer be voted on

If it matches your workflow, then, by all means use it. It looks like they spent some time writing some quality shell scripts. But, don't be fooled into thinking that something that stitches some git commands together to implement a best practice suddenly makes it a thousand times better than the very commands it calls. At best its a convenient abstraction tailored to what you like to do--but that is a far cry from 'git as it should have been'. Right?

Git as it should have been from the start. by malcontentin programming

[–]kailden 3 points4 points ago

sorry, this has been archived and can no longer be voted on

With the given title, I was expecting an article on features added to git proper that I might not have been using because I was using older git commands/options. A plugin to shortcut commands is okay but much more subjective as to whether it is more modern. I've used similar tools like git-pivotal but I prefer still knowing the underlying commands being shortcut. I was hoping for more eye openers like the first time I learned about git add -i or git rebase -i.

Apple's OS X is improving much faster than Linux. How long can you resist? by waspinatorin linux

[–]kailden -1 points0 points ago

sorry, this has been archived and can no longer be voted on

Clearly you are not ready for Jedi training.

I want to crawl under my desk and cry. by codewarriorin ExpertProgramming

[–]kailden 0 points1 point ago

sorry, this has been archived and can no longer be voted on

This is why the continuations based framework for web programming sounds so appealing to me, as it seems to be made to handle the 'there are x steps to this process, and we need to know where the user is' pretty well.

Re: 'Don't do code reviews': ouch! Do you use source control?

Hey Proggit: Is anyone else in love with Graphviz? by [deleted]in programming

[–]kailden 1 point2 points ago*

sorry, this has been archived and can no longer be voted on

You might want to look at the matrices feature of tikzpicture

You can setup a matrix with things at specified row/columns and then connect them all. You can even control where the lines come in to each shape (n,s,e,w with offsets). I did some flowcharting like that.

Here are the tikz libraries I used:

\usetikzlibrary{shapes,arrows,calc,shadows,fit,backgrounds}

One of the things I liked about tikz is I could embed hyperref references in my images.

edit: more info/formatting

Hey Proggit: Is anyone else in love with Graphviz? by [deleted]in programming

[–]kailden 3 points4 points ago

sorry, this has been archived and can no longer be voted on

I like graphviz, but in LaTeX I recently enjoyed tikzpicture

Ask Proggit: If a new programming language was being developed, what feature would you most like to see? by [deleted]in programming

[–]kailden 0 points1 point ago

sorry, this has been archived and can no longer be voted on

I see a lot of criticism of Arc nowadays say something analogous to 'if it was like Clojure without the JVM, then we'd be talking....'. I don't know enough about Lisp internals yet to really critique the critique.

AskProggit: What's the best JavaScript book for a veteran programmer? by violentacrezin programming

[–]kailden 1 point2 points ago*

sorry, this has been archived and can no longer be voted on

I haven't read Douglas Crockford's book (yet!), but a few key articles online (similar to Eric Miraglia's) that showed me how to make a application module in a namespace using a big anonymous function and returning closures really opened my eyes to the power of JavaScript, and I know he (as well as others, such as Eric (above) and Dustin Diaz (who has a number of books)) definitely popularized this approach. It certainly changed the whole way I was approaching JavaScript.

[Edits mostly to add links]

Yo dawg, I heard you like factories so I put a factory in your factory by basculein programming

[–]kailden 0 points1 point ago

sorry, this has been archived and can no longer be voted on

I've also seen "frameworks" in Java that are basically stringing together 10 other frameworks of which you only use 10% of each framework, but now you have 10 jar dependencies...and a hard to understand system (even if maven can build it all for you.) There is always more than one way to break principles such as YAGNI, KISS, and project scope.

Ask Reddit: Why does everyone hate Java? by [deleted]in programming

[–]kailden 0 points1 point ago

sorry, this has been archived and can no longer be voted on

Yes, I did that too, and no doubt countless others...

Ask Reddit: Why does everyone hate Java? by [deleted]in programming

[–]kailden 1 point2 points ago

sorry, this has been archived and can no longer be voted on

I don't hate Java, but I do find it wordy, and while Swing offers a lot of choices of how to implement your GUI, it often hasn't provided good default implementations (You can make a table to sort however you want, but at least up until Java 6 there wasn't a basic sortable JTable, you could use by default). Others seem to also complain about checked exceptions messing up encapsulation.

Reddit, what programming language do you absolutely just love? Also mention the platform(s) and framework(s) you code on/for. by xunein programming

[–]kailden 0 points1 point ago*

sorry, this has been archived and can no longer be voted on

Ruby's dynamic nature is so powerful but moderately dangerous-- I'm not sure I'd want to have an average team of programmers work on it--of course, I've heard people say the same about perl. I guess it depends on your team...

(edit: fix url )

Ask Proggit: What is a job to look into for someone who loves fixing bugs and debugging issues? by faceless1_14in programming

[–]kailden 1 point2 points ago*

sorry, this has been archived and can no longer be voted on

I like figuring out obscure bugs too, but not in production code, because that means figuring stuff out at 4 am on an emergency call out. So, be careful what you wish for, at least in that respect.

My favorite find was a problem permissions on /dev/urandom on a unix system that caused code that called the multithreaded version of the DB2 libraries to fail strangely, and in our case it was showing up in perl DBI on our production system (right after its first install).

While that was exciting, I've found writing tests, finding bugs pre prod and 'keeping the bar green', or in other words, sporting a low defect rate-- as much more satisfying... (although not as visible to management).

This may not apply to you--as that means being wrapped up in development--but worth considering. Every team can use a programmer who writes insanely good unit tests and thinks outside the box. (edit: and can write really good build and configuration management/install scripts that catch install bugs!)

Using multiple screen sessions by tomttin programming

[–]kailden 1 point2 points ago*

sorry, this has been archived and can no longer be voted on

I like:

if [ -n "$STY"  ]; then
    #not inside screen
fi

ymmv

Ask Proggit: Can anyone explain to me (in a relatively brief/simple manner) what REST(ful) is, why I should be using it, and why it isn't just another XML (in terms of it being a buzzword) by guitarromanticin programming

[–]kailden 8 points9 points ago

sorry, this has been archived and can no longer be voted on

REST: pretty much the way the web was SUPPOSED to be, before we started hiding data in flash, asynchronous requests (although not a direct offender, per se), huge front controllers that receive every request and hide the data from directly being available to the user (at least the most common implementations), pdfs, etc etc... IIRC, one idea behind REST was that everything should have its own URI...so it is directly addressable, linkable, indexable, searchable, storable. Then you can take actions (POST,GET,DELETE, etc) on the item directly, for example, POSTING an orderline to an order URI would add the orderline. This isn't a comprehensive answer.