Search found 294 matches

by bbguimaraes
Mon Aug 08, 2016 10:21 am
Forum: Programming Discussion
Topic: Anyone experienced in Linux Device Drivers?
Replies: 3
Views: 7239

Re: Anyone experienced in Linux Device Drivers?

No experience myself, but I know this.

Knowing the author, I'm pretty sure this is a good book. *And* it has a Creative Commons license.
by bbguimaraes
Wed Mar 30, 2016 9:41 am
Forum: Programming Discussion
Topic: Other languages. Any good books?
Replies: 15
Views: 22181

Re: Other languages. Any good books?

I second everything K-Bal said. The most important thing is having the desire to learn, and you seem to be on the right track. I'll drop a few specific suggestions here, with a big warning that they are all biased because of my personal preferences. I'll reorder you original post a bit: Its been a l...
by bbguimaraes
Mon Mar 14, 2016 5:31 am
Forum: Programming Discussion
Topic: I really don't miss VB6
Replies: 5
Views: 9198

Re: I really don't miss VB6

Lmao, never heard of that. That's a *gaping* security hole. It's so easy to proxy that request to MITM... Hopefully it wasn't used for anything important. Just spent half an hour heavily searching my brain/the internet, here it is . I recommend reading the entire article. When they say "a come...
by bbguimaraes
Fri Mar 11, 2016 3:22 am
Forum: Programming Discussion
Topic: I really don't miss VB6
Replies: 5
Views: 9198

Re: I really don't miss VB6

This reminds me of that software (can't remember which one) that, instead of generating a random number locally, made a http request to some website. And it was worse, because they didn't check for errors, so one day the website went down (or changed the api, or something) and now all clients had th...
by bbguimaraes
Wed Feb 24, 2016 3:32 am
Forum: General/Off-Topic
Topic: How did you stumble across the Elysian Shadows Project?
Replies: 32
Views: 32185

Re: How did you stumble across the Elysian Shadows Project?

I think Falco deserves a Turing award just for the amount of people the series has got into programming.
by bbguimaraes
Tue Jan 26, 2016 1:43 am
Forum: General Gaming
Topic: "The Witness"
Replies: 5
Views: 8090

Re: "The Witness"

dandymcgee wrote:
bbguimaraes wrote:Damn, my computer can't even play a *video* of the game decently.
Dude.. how do you survive? :nono:
I realized after posting that mpv/youtube-dl had chosen the best quality available to play, which is some ridiculous resolution that I don't even think my eyes can see properly.
by bbguimaraes
Mon Jan 25, 2016 12:47 pm
Forum: General Gaming
Topic: "The Witness"
Replies: 5
Views: 8090

Re: "The Witness"

Damn, my computer can't even play a *video* of the game decently.
by bbguimaraes
Mon Nov 02, 2015 8:01 am
Forum: Programming Discussion
Topic: Sorting the code && Storing the files.
Replies: 20
Views: 19411

Re: Sorting the code && Storing the files.

Sorry, I didn't realize you were talking about java. Let me try another example of static members. Say you want to track how many objects of a particular class have been created. One way to do it is using a static variable on the class that gets updated on the constructor: public class Foo { public ...
by bbguimaraes
Thu Oct 29, 2015 6:33 am
Forum: Programming Discussion
Topic: Sorting the code && Storing the files.
Replies: 20
Views: 19411

Re: Sorting the code && Storing the files.

edit : by the way, what I describe here are static methods . Static members and the static qualifier for variables are entirely different (but somewhat related) things. Let me give you my take: in c++, static methods are not bound to an instance of a class. Usually, if you have: class Foo { public:...
by bbguimaraes
Tue May 12, 2015 6:26 am
Forum: Programming Discussion
Topic: Relief mapping shader - a blog
Replies: 8
Views: 10995

Re: Relief mapping shader - a blog

Nice, subscribed. Took me a while to find the rss feed on the Swedish blogger, though :)
by bbguimaraes
Mon May 11, 2015 6:35 am
Forum: Game Development
Topic: What projects are you currently working on?
Replies: 500
Views: 150033

Re: What projects are you currently working on?

KDE5 .o/

edit: nice engine, btw.
by bbguimaraes
Tue May 05, 2015 6:48 am
Forum: Current Events and Science/Technology
Topic: Java Sucks
Replies: 11
Views: 11363

Re: Java Sucks

My bachelor's thesis was based on a java application (weka). It was actually quite nice. In my experience, java's bad reputation suffers much more from the windows/enterprise kind of software companies write (and they would write shitty software even in haskell or lisp) than anything in the language...
by bbguimaraes
Mon May 04, 2015 3:26 pm
Forum: Current Events and Science/Technology
Topic: Java Sucks
Replies: 11
Views: 11363

Re: Java Sucks

No hard feelings, but did you create an account on the forum just to defend java? That and Microsoft embracing open source in a single week... The programming world really is going crazy.
by bbguimaraes
Wed Apr 29, 2015 9:41 am
Forum: General/Off-Topic
Topic: Release Party Beverage Sponsor
Replies: 2
Views: 5998

Re: Release Party Beverage Sponsor

Nice. They even have an "Elysian Bar", it's perfect.
by bbguimaraes
Thu Apr 16, 2015 4:04 pm
Forum: General/Off-Topic
Topic: Equality vs. Assignment
Replies: 5
Views: 7633

Re: Equality vs. Assignment

Image

Also, -Wparentheses, although I believe none of the are new to you.