Details
-
AboutIntern and Student
-
SkillsJava, C, C++, JS, MIPS, Ruby
-
LocationIllinois
Joined devRant on 8/22/2018
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
-
Guy at school
"I could do that... OR I could do it... in C#HNNNNNNNNGH"
Yeah, we get it. You like C#. Hooray for you. Please stop cumming every time it's mentioned.10 -
Got reminded of this a bit ago.
When I was in high school years ago, there was some bug with youtube not working on chrome. The source of that bug was identified by a guy a grade above me, who not only reported that, but also how to fix it.
Naturally, google was like "holy shit, we gotta get this guy" and offered him a full ride scholarship and a guaranteed job when he got out.
He now works at a comic shop with no plans of using that scholarship.7 -
Nice job there, YouTube. I always wanted to watch all the videos in a playlist stacked on top of one another with one click.3
-
I'm just joining this field, and already I hate it when family ask what exactly I'm learning.
I can either dumb it down to the old "I make computer go beep beep" and get met with accusations of rudeness, tell the full details and have them look lost, or try and dumb it down and get met with patronizing remarks ("Oh yeah, I remember doing that last Thrusday! Sure, yeah!).
How do you explain this shit to your folks?9 -
1. Those who can't hack it in this industry to accept it, move on, and learn something else
2. New internet scripting language that's not Javascript or based on the same
3. A job near home3 -
Got cold hands in class. So I decided to test the meme.
I put my hands under my laptop's vent and installed Android studio.
My hands are no longer cold.4 -
One of the guys I go to college with asked me for help. I took one look and saw his variable names...
int numberOfCarsInParkingLotSinceLastChecked = 0;
Explained the issue. Or tried. He kept interrupting to ask me about random nonsense ("Would you walk naked into walmart for $500?"). Got fed up, told him to work on it my own.
Fast forward 2 years, and he's erasing my group's planning on whiteboards with "SAVE" on them. Week after week.
I hate that guy.3 -
New data structure:
Map with repeated keys allowed. Values of repeated keys will be stored in an array.
Calling get(key) will get the array, pick a random entry in said array, and return it.
Use: Finding what the "number one rule of x," the "greatest thing ever," the "most unbelievable event," and more is. -
Just got an email from a professor.
"Please note that there are times that are blocked on the schedule! I’d also ask that you not pick a time marked as 'free'."
...
Then when do we meet7 -
Working on a multi-year college project, going through tests from previous team.
Every test is not working quite right. They're almost all intermittent failures.
The reason? Every single test class extends some test class, which usually extends from some primary test class.
That primary test class opens up their whole UI, and outside of their UI test package, the only thing that gets used is a variable named session (a string), which isn't even specific.
WHY THE FUCK WOULDN'T YOU JUST MAKE THE SESSION NAME STRING A VARIABLE IN THE TEST FILES YOU DUMB FUCKS
THE ARGUMENT VALIDATION TESTS DO NOT NEED TO OPEN THE UI, LET ALONE CREATE THE WHOLE FUCKING DATABASE JUST TO VALIDATE ARGUMENTS, WHICH YOU DO APPLICATION SIDE
(Also they made it so every session has their own tables as opposed to having session IDs. E.g., "person_sessionID1" and "person_sessionID2" exist.)