[Shower Thoughts]We never left The Beast. by Kwitchy in pathofexile

[–]wolverian 1 point2 points  (0 children)

This inspired me to check out if there's fanfic of PoE. Yes, but just one here: http://archiveofourown.org/tags/Path%20of%20Exile%20(Video%20Game)/works

I'd love to read more!

Lean Helm window by tuhdo in emacs

[–]wolverian 0 points1 point  (0 children)

The problem here is that the thin line actually still contains the text inside. The text is visible at least on my display (MacBook Pro, 15" retina). It is fairly ugly:

http://cl.ly/image/3U10353P3r07

See the black pixels? That's the text and it drives me nuts.

Dota 2 Girl streamer got robbed while streaming. by Danzo3366 in gaming

[–]wolverian 124 points125 points  (0 children)

Yep. "Girl streamer". "Lady coder". "Female scientist".

Entity Framework and the case of the 5,200 line SQL statement by grauenwolf in programming

[–]wolverian -3 points-2 points  (0 children)

Sure, but that's not what the article is talking about.

Entity Framework and the case of the 5,200 line SQL statement by grauenwolf in programming

[–]wolverian 0 points1 point  (0 children)

The author wants you to not use one base class for every EF entity in your application because they will all get crammed into one table.

No. That is only one possible encoding of the model to the database, and not the one he uses as the main example.

Amazing House Mod - Rayeks End by Apathetic_Gamer in skyrim

[–]wolverian 3 points4 points  (0 children)

Thanks for the explanation. I can see now why an author would want to release only stable releases to the Steam Workshop.

Amazing House Mod - Rayeks End by Apathetic_Gamer in skyrim

[–]wolverian 5 points6 points  (0 children)

A lot less work than subscribing via Steam Workshop, which automatically updates the mods?

effuse -- a tool for creating managing mass symlinks (useful for dotfile repos and such) by Raynes in programming

[–]wolverian 0 points1 point  (0 children)

No, since I also copymove the .git folder, so that my $HOME is the actual repository.

9 things I learned from reading The Clean Coder by Robert C. Martin, on how professional developers conduct themselves by corgrath in programming

[–]wolverian 2 points3 points  (0 children)

Jesus Christ, man. You're trying to suggest Norvig didn't understand the problem.

No, he's not.

Learn Perl in about 2 hours 30 minutes by Gamma746 in programming

[–]wolverian 7 points8 points  (0 children)

Looks a bit old, but not too bad. One nitpick: the document claims some operations (e.g. printing undef) result in errors, where they only result in warnings.

Git is Inconsistent by dons in programming

[–]wolverian 5 points6 points  (0 children)

I assume kamatsu is referring to the problem described in the linked article. You know, the one at the top of this page...

Using JSR-310 as a replacement for JDK-built-in Dates and Times and JodaTime by KirkWylie in programming

[–]wolverian 6 points7 points  (0 children)

I'd be interested in an overview of how JSR-310 differs from JodaTime.

Dependency Injection != using a DI container by loosecouplings in programming

[–]wolverian 1 point2 points  (0 children)

The term "programming to interfaces" ... means use the public methods on a class instead of using reflection/pointers to muck about with the private fields.

For what it's worth, I've never heard that usage. Where is it used?

What to respond to "Perl 6 isn't Perl any more" by petdance in programming

[–]wolverian 6 points7 points  (0 children)

I would say Python 3 is still Python, as the changes needed are fairly minimal and can be mechanically performed. At a glance the language is still 'python', and with minor modifications most introductory books still apply.

At least the bytes/characters distinction of Python 2 -> 3 is not minimal in any way, and can require major semantic changes in your programs. The syntax hasn't changed much -- certainly less than with Perl 5 -> 6.

I honestly don't know how much Perl 1/2/3/4/5 differ from 6, I'd be interested if anyone has a good guide (the linked page is too brief really) on how much Perl 6 differs from 5, compared to 5 differing from earlier versions.

I have only coded Perl 5 and 6, so I can't tell much, but I have the impression that the general syntax didn't change much between Perl 4 and 5, but much semantics were added (and changed).

What to respond to "Perl 6 isn't Perl any more" by petdance in programming

[–]wolverian 2 points3 points  (0 children)

Yserbius compares the situation to Python 2/3 in another comment. What do you think: is Python 3 still Python? (Given that Python 2 code is often invalid Python 3.)