Details
-
AboutSoftware Developer and Race Driver
-
SkillsMobile, Android, Kotlin
-
LocationNew Zealand
Joined devRant on 2/5/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
-
When the meeting organizer gets to the end and says "I'll give you back 20 minutes of your day". 🤬
No sir, plonking a meeting in my calendar doesn't mean you now own an hour of my day. No no no. You are not being a saint giving me back time. The truth is you just took 40 minutes of my time! 40 minutes I can't get back. It's gone. Forever.
Please be respectful of that next time you're planning a pointless meeting5 -
It's amazing how many minor office arguments there are where each side doesn't realize they are making the same point just with different words7
-
Sometimes code is correct but so wrong. Came across this in a kotlin PR today
If (thing != null && thing!!.field != null) {2 -
Worst coding interruption?
The fire alarm going off.
That's when you learn how quickly it's possible to git commit and push7 -
My new favorite commit message:
> code modified
It must be the most redundant commit message ever15 -
Today I was trying to convince a colleague that:
fun example(){
if(thing){
//Do something
}
}
Is stupid because it should be
fun example() {
if (thing) {
//Do something
}
}
It's the small things that are the most frustrating14 -
Developing on Android and came across an issue that only seemed to be happening on one of our devices.
A fair bit of time was spent trying to figure out why the hell one resource (image) wasn't available even though it was clearly there in the project and was working on all other devices.
Turns out the image in question was in the drawable-v24 folder on accident so of course wasn't working on the one device running Android version 21 🤦 at least it was an easy fix -
> My company started posting things on LinkedIn. That's cool.
> My company started asking us to like and share said LinkedIn posts. Okay.
> Since I'm already on I decided to update my LinkedIn profile following some advice I've seen and including some key words. Coolio.
>> Now I keep getting recruiters wanting to be added to my network 🙄 not cool.
I've seen so many posts about recruiters being annoying on LinkedIn and never understood until now. I think I'm going to go back to having a crappy profile so these people don't find me7 -
I was just setting up rules for a firebase database.
Typing out all the JavaScript like stuff and was nearly finished.
Went to change tabs in safari to check something but accidentally clicked just above on the bookmarks bar.
The page navigates away and all the rules I had written are lost 😥1 -
My laptop had a full meltdown and wouldn't turn on. It tried to start up then the screen went blank. It's happened before so I lost hope pretty quick.
Just spent the whole evening trying to fix it reinstalling windows and now I spot the problem. The HDMI is plugged in to a monitor that was off. My laptop was fine the whole time. Fml3 -
Everyone generally agrees code reviews are a good idea right? And some form of testing is kinda a requirement before releasing.
Nope not my boss at the moment. None of my work has been checked in any way but is going out to thousands of users.
If I take the heat for bugs I'm gonna hit back so hard15