Details
-
AboutDeveloper, student, new technology enthusiast and loves hackathons!
-
SkillsAndroid, Java, Python, C, C++, PHP, HTML, CSS, JavaScript, Hadoop, Photoshop, Git
-
LocationLos Angeles
Joined devRant on 5/17/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
-
To all websites requiring at least one upper case, one lower case, one number, one special character, 25 emoji and 49 unicorns in the password when signing up.
If you say something is required, then your regex BETTER be checking ONLY for those things. You should not have hidden requirements for passwords that users are supposed to dream about and know. Especially if it's a super time-sensitive thing that they should have opened 2 Fridays ago.
I had to pull my hair out for 20 minutes (that felt like an hour) before looking at their code and reading their regex. The regex was different from what the page said the requirements actually were. What were they even thinking? 😑
The rest of everything related to this organization uses an SSO system, why can't they just use it? Isn't the whole point of SSO to avoid a different login for every tiny part of the system?
I wonder what the other less technically inclined people using the system are doing right now. Sadly, I have no way of letting them know.
I sincerely hope the dev that made that website faces the same thing while picking a password for creating an account somewhere else and realizes what he/she did.
I really needed to let it out.
I feel much better now.
Time to take out the stress ball :)1 -
So do I want a quick test or a fast test? 🤔
Don't large companies like HP ever proofread their menus? This doesn't need users to test for them to realize it's bad. Smh.2 -
The best part of being a developer is being to make any tool/software you want!
Need something? Doesn't exist? Make it yourself!2 -
So I had been debugging this code for the past 2.5 days without much sleep and couldn't figure out why it wouldn't work.. Turns out I was passing the wrong variable to a method -_-
On the bright side, while debugging I was able to optimise the code and now it runs waaay faster 😎
Now, time to go into hibernation 😴1 -
My favorite method is the .split() method in Java. It simplifies things so much for so many situations for me even though it would be trivial to write this method on my own, I still love this method!
-
So we were building this thing with a raspberry pi, a few sensors and a few motors but for some reason we could not interface a sensor with the pi (this is supposed to be trivial) so we interfaced it with an Arduino and had connected a pin on the Arduino to the Raspberry pi to alert the pi when the sensor reads something!
Not something we were proud of but we had time constraints and couldn't figure out how to make it work. Also, the thing we were building was just for a one time use so we thought it would be okay -
That feeling when you are writing code and can't figure out anyway to make it better than O(n^2) and then suddenly you figure out how to do it waaaay better in O(1) :')
-
I was going to post a rant about something, but was in the middle of something so thought I'll post it later.
Now I can't remember what it was.
Also, this is not the first time this has happened :/2 -
As a student I was looking for part time jobs, one of the job postings was titled "Database assistant". When I looked at the job description, its about filling out excel sheets -_-3
-
That moment when you got a new monitor but have to wait 4 more days for the mini DisplayPort to DVI adapter to arrive to be able to use it 😫3
-
I was telling someone who never indents any of his code to indent it properly.. He was like "Why should I do that? Will it make my code run faster?"4
-
This was when I was pursuing my bachelors degree. One of the professors was of the opinion that only her code was right and anything else is wrong! For example if she did something with a for loop and I did the same with a while loop, my answer would be wrong -_- What the hell -_-
(Also, often her code would be wrong too and sometimes wouldn't even compile.. She used Notepad btw)10 -
The best dev team I have been with is during college where the three of us who were working at a maker space would go to various hackathon and stay up all night to build cool stuff! (We won prizes at quite a few hackathons too!) The other two are pursuing their masters in a different college now, I miss going to hackathons with them :( Hoping that we get to go to a hackathon together soon!2
-
Just wondering, so many people are building extensions for devRant but I didn't find any APIs anywhere. Can someone help me with a link where I can find these? Thanks :)3
-
This probably isn't the coolest bug I've ever solved, but surely the one with the biggest faceplam
So I was building a Bluetooth smart watch that pairs with your Android device for the final year bachelor's project. The submission was in a 2 days and it was all ready and it suddenly stopped working.. Spent hours trying to fix it, even tried to get a replacement Bluetooth module (was out of stock -_-).. After a day's worth of freaking out I discovered that Android phones (at least the OnePlus X) don't connect to Bluetooth modules when their battery is below 15% -_- and since I was freaking out I would let the phone charge a bit and get back to debugging and it never crossed 15% so it never worked.. One day of debugging attempts later it suddenly struck me that low battery might be an issue.. And voila! It worked after charging the phone
Shouldn't such things be clearly mentioned in documentation :/
(Btw, got full for the project, got a 10/10 GPA for the semester)1 -
Fellow ranter who ever posted about fakeupdate.net thank you so much for the entertainment, a colleague forgot to lock their computer and came back to a heart attack and we had a nice laugh8
-
This is by far the best calculator code ever written
https://github.com/AceLewis/...
Also, love the start
if 3/2 == 1: # Because Python 2 does not know maths
input = raw_input # Python 2 compatibility2