Details
-
LocationMadrid, Spain
-
Github
Joined devRant on 7/14/2016
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
VB gdsryhhdadvblihf. Gyffb jggb vvhbv juuijtvv. Hhughpgbbgygv. Vyggtff v h y eso tdc. Vgyyuuttrdffdmjh tf6
-
Meanwhile, in a bus station in Spain...
It has been auto-restarting for 20 minutes. It doesn't even try to boot the OS4 -
Fuck you, linux modules!! I know tinkering with you was going to be dangerous, but I've already spent 4 hours just rebuilding virtual machines from every screwup.
I personally love the architecture of Linux, it tickles my fancy and it's super elegant... But fuck you!1 -
I am working on an open source game project, and the most common way to draw things is using a class named ManagedSurface. The class is otherwise awesome, but it has a method called getBasePtr(x, y), which gives you a pointer to the requested coordinates. Fair enough (this is C++ without STL by the way).
But WHY THE HELL CAN I REQUEST ANY POINTER THAT I WANT, EVEN IF IT'S OUTSIDE THE SURFACE? Other cointainers have sanity checks, asserts and such, and the surface KEEPS TRACK OF IT'S WIDTH AND HEIGHT.
WAS IT SO FUCKING HARD TO ADD assert(x <= w); assert(y <= h);???
I spent 3 days on valgrind trying to find a heap corruption that manifested at random points in the code.
FUUUUCK!
On the bright side, I learned how to use valgrind (which is awesomely awesome).4 -
So I've been doing GSoC this summer (sort of a paid project for an open source org.), and have not made it to any milestones whatsoever, even with 10-12 hour days and almost no days off. The other GSoCcers in my organization are just doing amazing, so I wonder wtf is wrong with me. I got past the midterm because my mentor is amazing, but wtf, I fucking exhausted of trying so hard just to fall on the "slightly below average" mark. I'm 21 and I feel too old to do anything great aleady!!
Now I have to quit whining and get back to work.1 -
There are 10 types of people in tue world. those who think his is a ternary joke, those who can extrapolate from incomplete information...2
-
When you git cherry-pick for the first time, screw up, rebase-drop, repeat, screw up again, and end up just pasting the correct versions of the files and commiting on top of the branch.
Dirty, but it works.4 -
My father is a psyhologist, but he has always been a computer enthusiast. Particularly, he once started learning Excel macros, and then evolved into Visual Basic over Excel, with which he built a fairly large piece of software that is now run in many Spanish schools. I was 14 or so at that time. I always liked computers, and one afternoon my father and I sat down, and we built a simple calculator in vb. That was an amazing afternoon, and I got hooked immediately. From there I transitioned to Python, C#, Java, php... And now, many years later, I am about to graduate in CS, and I am still totally convinced that this is my passion. I owe this to my father, and in fact now I help him maintain and update that old piece of software.
-
so I spent an entire day tracking a major memory leak (10mb/s!!!). when I find it, it turns out that It's in a deep part of C++ code that I'm not allowed to touch. now I live in fear of just crashong my 16gb machine every time I debug.