Details
-
Skillsjs, c#, html
-
LocationMexico
-
Github
Joined devRant on 6/5/2017
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
-
Getting paid for my work.
Just because I'm a student, people assume I'll do everything for free and "exposure", while they make money off of my code8 -
Do you guys have private chat community among your workmates?
Here at the company in working in, we have an official WhatsApp group created by our boss. That group is practically dead and boss is the only guy who occasionally posts anything. That is expected.
Then we have another WhatsApp group among us employees and boss or someone of that level is not invited in it. It's pretty active and fun group.
Then we have guys only group which is intended for guy talk and nsfw happens to be a part of it. Nothing surprising about that.
Similarly, girls also have their own exclusive group for their own stuffs.
I think it's inevitable and customary that such chat groups would be formed among workmates or classmates.
Anyway Just wondering, is this case same for you?... esp for people in US?6 -
We were starting a libre software project and needed some basic stuff like email accounts, cloud storage, calendars for scheduling, etc. So we start to talk about using services that didn't agreed the patriotic act of the USA. That lead to the omnipresent topic of Google's control over our lives. Then we moved to Microsoft's crimes against humanity for preinstalling windows, and at the time when we were discussing if Steve Jobs were a fraud or just a salesman, we realized it was getting late and we had nothing set or even decided. So we create a Google account and went home.4
-
My colleague want to change notification sound on application I created. I said it support only WAV file. What they do is change extension of MP4 file to WAV and report me that my program isn't work.
*sigh*1 -
The moment you realize a "professional" web development company uses a fucking free WordPress template to deploy their website. Happens way too often, just look for a credit line at the footer.6
-
Dear sales team please stop promising the customer stuff that doesn't exist within the system and then promising them dates for getting said functionality without discussing it with the product team let alone the development team. Also repeating 'but I promised the customer they'd have it by august' will not make 6 months of development work fit into that time frame!5
-
"I don't need to comment my code because I will remember what everything does/stands for later..."6
-
Visual Studio sucks.
Atom sucks.
Sublime Text sucks.
Windows Movie Maker is the real editor for code.33 -
Found this gem today
public findHM(int height, int height2) {
if (height < height2) return height;
return findHM(height - 1, height2);
}4