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
Search - "gift"
-
My sister got me some stickers as a birthday present but she didn't know where to buy them. So she painted a gift card instead...😮26
-
A few days ago while browsing devRant, my girlfriend stopped me at this one post and asked why does this person have a rubber duck. I went on to explain her about Rubber Duck Debugging. She was totally amazed by the concept (she's not a techie). Today suddenly a package arrived at my door step from her.
Well now I have an entire family of rubber ducks to code with :D22 -
I cannot spell for shit, so my coworker keeps commenting on my pull requests with spelling fixes...
Decided to buy this for him today...12 -
This is one of the best birthday present I had so far. It's a handmade keyboard where almost every key has a special meaning that represent a little story from my past.
A truly geeky gift from my best friends. Thank you!17 -
My girlfriend got me these for christmas – as she wanted to gift me the most nerd-ish tshirt she could find.13
-
!rant
I found ftp server login creditals from a company on google, wrote them they should change their password and they sent me a 20€ Amazon gift card.8 -
That awkward moment when you tell your gf you want a rubber duck for your birthday present but you mistyped it.
Gf: "Sweetie, what gift do you want for your birthday?"
Me: "a rubber dick would be fantastic! it'll help me debug things"
Gf: "Ok... if you say so..."8 -
Friend gave this self made "pocket advent calendar" to me (has 24 m&m's in it)
*me to her: aww thank you thats so sweet!
*OCD to me: but she could have aligned that numbers...
*me to me: and that's one more reason you're single12 -
So, in my Country there are people actually selling 40 empty folders for about 3 dollars... As a gift they also send an empty .doc file... And people are buying it!!!29
-
So guess what my little sister got me for my birthday! She actually made an effort to make this cute gift. Maybe in the future I will buy the original one and then I'll have two :319
-
Okay, time to delete my old Skype account
1. Enter Skype name
2. Reset password
3. Captcha
4. Complete email
5. Enter email code
6. You are logged in now, please complete your profile first
7. Enter birth date
8. Add your phone number or second email address
9. Create new outlook mail
10. Got access to profile settings
11. Click on delete profile
12. Stop please first verify your email again
13. Enter code
14. Check all checkboxes that I am really sure to want it deleted
15. Click delete button
Fuck hell and that all again for my second account7 -
Today it's my birthday. Yesterday I was woken by my fiancé with breakfast and one gift. She had bought me the Raspberry Pi 3 B.
Now she had decided to give it to me on the Sunday so I could play with it right away instead of having to go to work and wait a whole week before I would have time play.
I Love You, Honey! More than you realize <317 -
My mom: "there's a virus in my phone! It says so when I open Chrome!"
Me: "...stop clicking on strange links that your friends send you, mom. Nobody will ever give you free Nespresso capsules for life as a gift."
Every damn time.4 -
Germany
It's:
"oh cool. you must have good job perspectives."
Or:
"you just use a computer. that's not real work. do a job where you use your muscles. lazy student."
And the best:
"Can you gift me with computer parts for free" or "can you copy program XY for me? It cost to much."13 -
Oh you're sick but you've decided to come into the office when you could've worked from home. Thank you for the gift of the plague.13
-
I'm starting a new job next week so I don't currently have a desk, but my boyfriend loves the cross stitched Yoshis I made for him!
Also, fuck cross stitching. It's the worst. I'm never doing it again. What was supposed to be a Christmas gift turned into a belated Valentine's gift.5 -
I don't havey Friends , but the ones I have know me inside out.
I turned 18 yesterday , and what did I get for a gift , a literal 5 page C++ Program that my pals lovingly wrote for me. Compiling it right now. Let's see what it's got for me.13 -
Just turned 21 last month, today this arrives in my mailbox
Tanks for one of the best birthday gifts i wished for!!9 -
Guess what my supervisor had lying around the house and gave me? (from an old company project) My desk is gonna shine bright like a diamond. Yes, it's RGB.4
-
Stupid tech guy: "You should use Windows, it's bettter"
Me: "No i quit Windows and use Linux"
At the end of the day he updates Windows and got a BSOD...
I laughed and walked off8 -
I wrote a database migration to add a column to a table and populated that column upon record creation.
But the code is so freaking convoluted that it took me four days of clawing my eyes out to manage this.
BUT IT'S FINALLY DONE.
FREAKING YAY.
Why so long, you ask? Just how convoluted could this possibly be? Follow my lead ~
There's an API to create a gift. (Possibly more; I have no bloody clue.)
I needed the mobile dev contractor to tell me which APIs he uses because there are lots of unused ones, and no reasoning to their naming, nor comments telling me what they do.
This API takes the supplied gift params, cherry-picks a few bits of useful data out (by passing both hashes by reference to several methods), replaces a couple of them with lookups / class instances (more pass-by-reference nonsense). After all of this, it logs the resulting (and very different) mess, and happily declares it the original supplied params. Utterly useless for basically everything, and so very wrong.
It then uses this data to call GiftSale#create, which returns an instance of GiftSale (that's actually a Gift; more on that soon).
GiftSale inherits from Gift, and redefines three of its methods.
GiftSale#create performs a lot of validations / data massaging, some by reference, some not. It uses `super` to call Gift#create which actually maps to the constructor Gift#initialize.
Gift#initialize calls Gift#pre_init (passing the data by reference again), which does nothing and returns null. But remember: GiftSale inherits from Gift, meaning GiftSale#pre_init supersedes Gift#pre_init, so that one is called instead. GiftSale#pre_init returns a Stripe charge object upon success, or a Gift (and a log entry containing '500 Internal') upon failure. But this is irrelevant because the return value is never actually used. Pass by reference, remember? I didn't.
We're now back at Gift#initialize, Rails finally creates a Gift object using the args modified [mostly] in-place by all of the above.
Another step back and we're at GiftSale#create again. This method returns either the shiny new Gift object or an error string (???), and the API logic branches on its type. For further confusion: not all of the method's returns are explicit, and those implicit return values are nested three levels deep. (In Ruby, a method will return the last executed line's return value automatically, allowing e.g. `def add(a,b); a+b; end`)
So, to summarize: GiftSale#create jumps back and forth between Gift five times before finally creating a Gift instance, and each jump further modifies the supplied params in-place.
Also. There are no rescue/catch blocks, meaning any issue with any of the above results in a 500. (A real 500, not a fake 500 like last time. A real 500, with tragic consequences.)
If you're having trouble following the above... yep! That's why it took FOUR FREAKING DAYS! I had no tests, no documentation, no already-built way of testing the API, and no idea what data to send it. especially considering it requires data from Stripe. It also requires an active session token + user data, and I likewise had no login API tests, documentation, logging, no idea how to create a user ... fucking hell, it's a mess.)
Also, and quite confusingly:
There's a class for GiftSale, but there's no table for it.
Gift and GiftSale are completely interchangeable except for their #create methods.
So, why does GiftSale exist?
I have no bloody idea.
All it seems to do is make everything far more complicated than it needs to be.
Anyway. My total commit?
Six lines.
IN FOUR FUCKING DAYS!
AHSKJGHALSKHGLKAHDSGJKASGH.7 -
Installed Ubuntu Linux on my cousin's PC... Age 12... He starts earlier than me... :/
But I'm proud of him :)8 -
With all the people showing off their setup and input devices i thought it's time to show you my keyboard...
Key features:
- mechanical keys
- sturdy af; best for ranting (survived more angry fist strokes than any device should ever receive)
- older than me and outlived 5 (!) mice
- awesome retro look
- would beat a nokia in hunger games
- best code buddy ever (and propably oldest, too)
Hope i'll be able to continue coding on it another 20 years... Someday i may gift it to my grandchildren.18 -
Any fool can write code that a computer can understand. Good programmers write code that humans can understand.
So far, this is my inspiration to refactoring the code right after it works as gift to my future self.8 -
Decide to open torrent web site from your smartphone.
*popup: your phone is hacked, click here to scan
*popup: you are the 1000th visitor, you win a gift
*popup: see hot pictures
*popup: Hello [somebrand] phone user, click here for tips.
Shit, why I came here in the first place??5 -
Just came from a one week holiday, only to come and see that zesty security and some other repositories are no longer supported on my 17.04 ubuntu...
Updating to 17.10 now..
Havent even booted up my windows laptop yet.. God please give me strength..19 -
!rant
This is a little Bluetooth Low Energy Tank I made for a colleague as a leaving gift. 3D printed turret driven by a Pi 0 W and a Zumo chassis.7 -
Shortest friendship story-
I randomly posted on a group- "Hey can someone lend me Udemy Account if you have bought The Web Developer Bootcamp by Colt Steele, I am a student and really wish to do the course"
Next minute, I got a pm- "Give me your e-mail id pal, I will gift you the course"
This man in his 50s was so generous. We talked about tech, country and exchanged social handles.
By the way the course is really worth it.9 -
So this client wanted a very specific layout, with a very specific keycaps set. And an ALT function that would print the "shrug" text emoji.
Say hello to this
64 key, full CNC aluminum case
Gateron Ink Black switches (lubed)
Super thiccc 2.5 mm brass plate,
Keycaps set
MT3 profile Susuwatari set.
Love the profile and how they keycaps hug your finger up while typing.
I think it might be time for me to gather pieces to build my own as a gift in the future23 -
Today i was working in my office then suddenly i remembered that i have to buy a valentine day gift for my girl....
So i quickly pull out my cellphone and started doing Google and typed this...
Well then i realized why Google suggestions disappeared... 😂😂😂5 -
TL;DR: a good friend recently finished building an electric car from scratch with a team and I bought him a C++ devDuck as a congratulations gift!
one of my best friends recently presented at my colleges capstone rollout, and his teams project was to literally BUILD AN ELECTRIC CAR FROM SCRATCH. all the circuits and everything, designed from scratch, and nobody else on the team was very good at software, so he pretty much wrote the software himself. I just ordered him a C++ devDuck as a congratulations gift!8 -
Just got a Raspberry Pi3 as a gift and I have no idea what I should do with it. Also I didn't knew about Raspberry Pi3 until now. So maybe someone can help with some ideas. :)22
-
In this episode of "office drama", we have the head secretary asking me if I want to contribute to the gift for the baby of some guy I don't know well. (I'm new to the office btw)
When I refuse, saying that I don't know him well enough to want to contribute, she says "that's okay, but we won't be collecting for a gift for you once you have a baby. We want to be a '''team''' ".
😐
I just said "that's fair", but maaaaaaaan! Since when is it okay to demand that someone participates in a gift, while ignoring their social or financial circumstances? 😤
Update: went to her office to talk about this "being a part of the team" and clear things up. She said, and I quote "I don't have time for this". And by that, swords have been unsheathed. I guess there is no pleasing some people.16 -
Doing some Christmas shopping.
Creating some throwaway accounts in various e-shops
Some e-shops send me my password via email upon registration.
I've spent the better half of a day emailing those e-shops to revise their IT security policies.
Haven't bought a single gift yet.
Time well spent!6 -
Was scrolling some old photos and fell on that gift my bf gave me at Christmas 2016. The cover was so perfectly done, I thought for a few seconds it was a real special edition made by Nintendo just for the lolz...
Dat Moon Moon3 -
My Father's day gift from my wife. 😁
Should make my application development a little more badass as I drink from it.
\m/2 -
So my coworker Bilbo died over the weekend of a heart attack. He was one of the first people to take me to lunch at this company. He was always kind and took time to make people welcome. He is a good person and I will miss him. He was only about 50.
He is also this guy:
https://devrant.com/rants/9996423/...
I missed work yesterday as I felt like shit. So today is my Monday. What a shitty Monday. Maybe I will take today off too. Fuck this week.18 -
A few years ago I had a startup. I invited 2 friends to join and we split the ownership equally. I did most the work but didn't mind. I had fun. Anyway, the story is not about me. I was in a startup incubator.
There was this stereotypical rich kid in the incubator too.
For the first few months he refused to even share what his idea was.
Finally he was forced to do it. It was an app for storing gift cards. Literally, there were startups for some high tech phd genious types. But the guy with the idea of a gift card app didn't want to share in fear that we would steal his mediocre idea.
His idea was to digitalize physical gift cards without the consent of the companies and make a market for selling, buying and trading (and taking a fee). When asked what if the companies refuse to accept the unofficial digital gift card, he said he had talked to a lawyer that they should accept it or he would sue them. Wow.
There was a guy who had attempted at doing an app like that 2 years before too apparently.
So here comes the part about the work culture.
He convinced 3 or 4 computer science students to develop the app for him. He offered them 1%, no pay. Talking about how rich they would get and how big it would be.
Luckily, one of the developers came to his senses after a few weeks and convinced the others that they were worth much more.
The guy was furious and even threatened to sue them.
He even got like 2-3k USD from some of his parents rich friends to develop the app. He could afford to pay them.
Anyway, the app was never completed.
I have many stories like that from other startups. A lot of students getting ripped off to work for free. I know people who have startups going for years thanks to free labor.1 -
I bought myself a small summer gift 😍
This may or may not encourage me to work more at home this summer.23 -
What is this, windows?? how am i, the software publisher, supposed to change this if you don't bother to give a proper fucking error? whoever created this, i hope you die choking on a goat's intestines10
-
I like this one the most, it was a gift from a girl I had a unrequited crush with.
It was like: "hey I make stickers, you can have this one, but it's a little girly, do you mind?" and I was "(😍) of course I don't mind"2 -
!rant
Dear dfox and trogus,
Is it possible to arrange a secret santa kind of duck gift sharing campaign once a year? Not necessary need to be a xmas campaign. We can wait until you update the shopping cart process with the feature 😬
Each user can buy ducks for other users. You can contact the recipients for the address if you don't have yet and do the delivery.25 -
Tl;Dr: Client-side validated online test
Some stupid questions in an online test.
Not all of them were coding questions, but all (yes ALL) were client-side validated and to solve the tasks all I had to do was to copy one array into another and set the time I needed for that task to a legit number.
Well at least it was an online test that doesn't required 3hours.2 -
Well, well, well, my new year's gift:
Someone is jamming thousands of requests per second, and NO firewall. JWT tokens that expires in 3 HOURS.
Now MORE THAN 40K stolen.
But, where did it come from? https://devrant.com/rants/4961285/...16 -
[CMS of Doom™]
The gift that keeps on giving...
When you think you've seen it all after 7 months in legacy hell, you get another gift:
Let's say you use PHP, but your IQ is in the zero-ish range, then it is obvious to:
- use define() for constants in all your config.*.php files
- then include said config.*.php files multiple times
- and because define() doesn't overwrite the same constant, because it's - you know - a constant, you instead of including just do a file_get_contents() to read the PHP file as string and then parse the values by Regex.
The dev who wrote this was truly one of the devs ever.12 -
>be me
>be excited for secret santa
>buys gift
>the guy who got my gift is happy :)
>wait till the end of the day
>no gift for me :/
>leave office with nothing to be excited about
>reach home
>get to know about steam winter sale
>buy games to the point of happiness ;-;
10/10 would worship gaben ;~;15 -
> creates new PR for open source project
> runs tests locally before pushing
> pushes
> waits 8h (not kidding) for appveyor checks to complete
> tests failed
MOTHERF- -
They always say "Stop wasting time".
They always say "Just use the tools we are all using".
They always say "I get it, you're the OSS guy. IDC, go to work now".
They always say "I hope you won't be logging this time on our customer's timesheet".
And they always come back to me "Look, I've heard that tool you've made/found is really cool and efficient, saves lots of trouble and makes us go faster. Can you send it to me via slack? TIA"
I see things that could/should work better and I make them do exactly that. It's my gift. It's my curse.3 -
Its been a few hours, and i was busy with meetings but
THANK Y'ALL FOR 10K ++
I remember wk20something, when i joined devrant. I was just starting a job as a data analyst, and the wk at that time spoke to me on a personal level, so i wrote a quick rant and didnt give it much thought. The next day i opened devrant and had like 100++s and a bunch of comments. Since then ive met a lot of awesome people here and im happy i clicked the install button back then. Thanks cfox and brogus for the opportunity, love ya.
Already got a longboard as a 10k-day gift :^)2 -
Stakeholder: In user profiles, I want users to be able to renew gift memberships for their giftee.
Me: ???
SH: For example, if I buy a gift membership for you and it expires or is about to expire, then I want to be able to renew it for you.
Me: Typically, gifts aren’t the gifter’s responsibility to manage. There’s no reason for you to be able to manage my membership from your account, even if just to renew. You’re opening up Pandora’s box here. If you let users renew for giftees, you’ll eventually have a user ask if they can cancel the giftee’s membership because they got into a fight and want to stick it to the giftee.
SH: But our users aren’t using the gift membership sales flow correctly. That results in all sorts of data issues for our reporting services and we spend so much time fixing it by hand.
Me: Your sales flow is confusing. The website asks users to verify membership for a giftee in case the giftee has or had a membership. How it the gifter supposed to know that? You’re trying to make things easier for you, but you’re expecting the user to know that and comply. That’s unrealistic.
SH: But there must be a something you can do.
Me: No.9 -
This time I want to share with you something I am really proud of. As I love sailing (I've been sailing for a long time before I even had my driving license - for over a 20 years now), and I love old, classic, wooden yachts - this is the result of couple of years of work. My own oldtimer Jollenkreuzer 15er:
https://youtu.be/tNLgkOLu_bQ
This is almost the same Jollenkreuzer that Albert Einstein received as a gift (despite the fact that he didn't know how to sail). Emir was built in 1953 and the renovation took over 5 years and it wouldn't be possible if not for my father.4 -
This gem of a game. Partly cause i'm a contributor, partly cause i'm a space junkie.
Is this advertising? maybe.
Am i in love? definitely.7 -
Right now, we are playing a game, where we have to do a UML-Class-Diagram for a Gift-Management-Software for Santa Claus.
College, go figure.5 -
Merry Christmas, and Happy Holidays, most of my family doesn’t understand why this was my favorite gift this year 😂😂😂8
-
Do you know this?
You are the small guy, you are dancing the whole evening with a girl and then a big asshole comes around, h
Judges you and want to be better that you?
Than je comes and insult you?
Damn that's the moment, when self defense save your life. :)
He tried to punch me, but then underrated my skills 😌
Ohhh man I love karma😌🤗7 -
My boyfriend and I just got home from a seminar and had a nice teachings and talks. As the speaker ended the talk, she asked each participants as to what is our ultimate goal.
G1: to be an able lawyer
B1: civil engineer!
B2: to pass the licensure examination
BF (God's Gift): businessman
Me (mind): Gray hat
Me (...): to have a start-up tech company
Since college, I really wanted to have a start-up company in due time. ^_^1 -
"Linux is shit because nothing works on my new DOM 2017/2018 laptop!"
Yes it's true that nothing will work if you put your finking ubuntu 14.04 installation with a fucking old 3.13 kernel in your new Laptop!
Update. Your. Fucking. System.6 -
I’ve just received my Potato Pirate game ! Time to teach my matey how to code ! And the nice Kickstarter gift is perfect for my screen at work ;)6
-
Obligatory age++ post.
For a change I feel really appreciated after receiving a bottle of wine, a bottle of jack, $50 gift card, a deluxe chocolate cake and 12 muffins from my coworkers 😁
So they do care after all 😢5 -
Thanks major restaurant chain. I don't want to wait the 30 seconds for your cheezy animation to finish before I get my gift card's number. I'm hungry. Know your users.4
-
When you get a dinner for 2 gift for all the hard work you put in the last week and realize you don't have any woman to go with because of it3
-
one of my friend has a golden finger👈, he could break your system with one touch, once he borrowed my laptop to update fb status, I saw him literally hit the enter key once, the pc got a blue screen and then rebooted with error, I have to reinstall OS to fix it. I asked around, he did this trick many times😱😱. I guess he could get some profit from this gift😂😂😂3
-
Conclusion for this week:
Arrrgggh I worked so fucking long...
Thanks EU, FUCK ARTICLE 13,
FUCK EU, FUCK POLITICIANS, FUCK ALL!
PYTHON WHY THE FUCK, WHAT THE FUCK, HOW AND WHY?!??
FUCKFUCKFUCK
Have I missed something?6 -
Got a gift from my friend. It was from an Indiegogo project. It worked fantastically until it has broken recently.
Although 1 year warranty was promised according to the site, the fact that it's from Indiegogo means that's non existence (I'd say if you actually receive the thing, you're very lucky). So I disassembled it and had a look.
Now I'm thinking maybe I just need to hack my way in to find out what that blown chip is and if I can replace it.
I am also disgusted by the Chinese printed on the IC...13 -
Anybody here with Autism Spectrum (Asperger)?
How did you find out? How does it affect your life and how do you deal with it? Is it a gift or a curse for you?
I've just got diagnosed at 32yo with mild asperger and feel a bit lost now 😐34 -
!rant Stood outside talking to my next door neighbor (who I hadn’t met yet) for over an hour yesterday.
In the middle of the day.
In Texas.
Not in shade.
When I lack the ability to tan.
It’s been so long since I was stupid enough to be outside for that long that I forgot just how much sunburns suck.
#regrets18 -
I dread the day that Slack has a “... has read this message 2 seconds ago” feature. Please Slack, continue letting me pretend I haven’t seen that message that I don’t want to reply to.2
-
In sweden, probably in many countries, we have this chocolate calendar where u get one piece of chocolate every day til Christmas. This is usually for kids but we "younger ones" got one from a colleague as fun gift. After about half through December when I came back on Monday i realized that someone had emptied my chocolate box and had thrown it in the trash. I was devastated. So I wrote an angry email, ending with "Merry fucking shit christmas", to the whole office in order to make the guilty one feel more guilty.
As it turned out, another colleague had found an exact same box, emptied that one and replaced mine. He came crawling 2min after I sent the mail😂3 -
I had a response body that I needed to obtain data from. It would either come as {success: {name, id}} or {success: [{name, id},{name,id}]}
I couldn't loop over something that wasn't a list and I couldn't just ask the type of the element in success so in my infinite wisdom I split the cases by examining the length of the element in success. If it had one it was an array and could be looped over, if it didn't, it was a single object to be processed 😂 if it works it works (it's still in production, tyvm)4 -
Twenty years.
For twenty years I've used vim almost exclusively, and only now have I learned about buffers and registers. It feels like wasted years, but also it feels like a gift.6 -
I have a dedicated office space at home with a huge desk that was given to me by my mom and stepdad as a gift with a really nice chair that my wife got for me. It has a nice long whiteboard to write whatever it is I am doing, a bookshelf with tons of coding books and guitar magazines and shit. A closet with good space and in a corner sits my guitar and amp.
Where can I be located during coding hours? In the floor, on the living room, using a box to put one of my laptops in.
Why am I like this?2 -
Follow up to: https://devrant.com/rants/5047721/....
1- The attacker just copy pasted its JWT session token and jammed requests on the buy gift cards route
2- The endpoint returns the gift card to continue the payment process, but the gift card is already valid
3- Clients wants only to force passwords to have strong combinations
4- Talk about a FIREWALL? Only next month
5- Reduce the token expiration from 3 HOURS to 10 minutes? Implement strong passwords first
6- And then start using refresh tokens
BONUS: Clearly someone from inside that worked for them, the API and database password are the same for years. And the route isn't used directly by the application, although it exists and has rules that the attacker kows. And multiple accounts from legit users are being used, so the person clearly has access to some internal shit7 -
It's black Friday and I have a 380€ gift card at Netonnet, what should I get? I'm thinking of a new GPU since I have a gtx 650 atm.
Any ideas? 🤔13 -
Bjarne Stroustrup & Linus Torvalds.
Amazed by how much they've influenced the current setup. C++ & Linux were few of the best creations after computers themselves.
:)7 -
Devils Advocate moment: A proper PM can assist greatly on projects.
Don't get me wrong, you have all for the most part been faced with the incompetence of glorified quasi manager positions. But a proper PM can be a gift really.
I absolutely despise generalizations, I do get that percentages matter, but shitting on professions when the realm of possibilities have yet to be touched to the full extend of capabilities seems like child's play really.
remember, y'all think you are all God's gift to the world through coding experience, but a solid network engineer might have as much gripes about developers as y'all do about managers, project managers, sys admins etc, and the same shit can be applied vice versa.
Software engineering is magic, in the sense of the tv show "The Magicians" where you can make an incantation and suddenly your penis/tiddys explode: inexact science.
Be a tad bit open minded, learn enough about their shit to tell them that they are fucktards, and run from the ones that know but don't fix shit.
Peace pendejos1 -
ohhh after replacing HP logo on my pc with devrant stickers now i want my stresss ball wooohhhh...1
-
This summer, i will have all the time in the world. I will be finally free (as in, alone at home). And, most importantly, i will have a months old kitten to take care of.
I'm so excited.13 -
Is alcohol an acceptable graduation gift to present at a strict Christian family gathering? 🤔 fuck it.13
-
Can anyone recommend a nice set of DnD dice for a gift? It's for my boyfriend's younger sister. She's just getting into it and we're all playing on her birthday.
There's cheap sets everywhere and I'd like to get her something of nice quality.8 -
Ffs. Am I sick or is it normal that after almost a year at current company, I still love it and have nothing to rant about? It makes me happy and sad at the same time that i have nothing to rant about and this is the only rant i can come up with5
-
1) API Server crash due to Uncaught Error and none of us realised it until 30 mins later (no email alerts, no mechanism in place to notify devs): expensive mistake
2) api server and database server on one frickin vps, with no caching mechanisms or memoisation on frontend: Worst nightmare of my life5 -
Santa if you are reading this.....
I want a gift for Christmas :/ Come on I ain't getting holidays for Christmas.....a small gift isn't big thing to ask for....🙄🙄2 -
Finishing what I thought would take days in hours all because of focused coding sessions. Realised I procrastinate way more than I should😂1
-
just bought (rented) my first dedicated server, for flipping 10€/month. let's see how it goes! boy, am i excited for my new toy...5
-
Earlier this year, we built a custom gift box builder for a local popcorn company. I had decided to use vue.js for the interface which was really fun to learn.
I hadn't used any reactive frameworks like vue before this project, but I was surprised how easy it was to use, and it was so satisfying watching the frontend change just by modifying the data. I was able to easily add little transition animations when the states changed which was really fun too (something that would be really tedious otherwise).
That's was probably the most fun I've had on a project in a while. -
Got myself this on new year. For all my data. Hope it's a good decision!
Happy New Year everyone ^_^ -
I have set up a raspberry pi and screwed it with some switches and buttons to the wall next to my bed, so I don't have pick the remote which lays on my shelf...
The pi handles the buttons and switches and sends infrared signals to TV, stereo and receiver ^^1 -
The problem I have with finally getting the hang of vim is that I end up expecting every place I enter text to behave the same way..3
-
I can’t remember if I shared this cringe with you all or if I was too embarrassed by it, but…
In the spirit of giving, I gift you all this cringey parody song I recorded 3 years ago. “I Program in C”. Lyrics written by Chris Frederick on amiright.com, song parodied is I Go to Extremes by Billy Joel.
https://smule.com/recording/...
Happy holidays, friends.6 -
Our intern is leaving because school started this week and our PM said it would be nice to give him something as a parting gift:
"Let's make him a T-shirt and write something in frontend on it"3 -
A manager in the area, in an effort to “encourage” teams to meet their externally generated commitments before imposing mandatory extended hours, posted a chart showing Mt. Everest with weekly goals as stages up the mountain. First team to the top wins a $20 gift card. Looks just like this picture. Results will probably be similar.4
-
I haven't been here for a long while but I wanted to peek in because of the dev ducks, cause I thought they would be a great gift for someone and now I found out they're sold out - my disappointment is immeasurable and my day is ruined.
But now I decided I'm just gonna buy. a rubber duck and DIY it.1 -
No idea how I ended up here. So basically started with simple wordpress websites, transitioned to react. This move was the hardest.
Then caught up on node and mongodb. And before i knew i was doing db, backend and front end tasks. Now i know bits and pieces of everything
I don’t like the term “full stack dev”. I personally feel like I’m a Jack of all trades and master of none. There’s so much to learn if you’re a full stack developer. Endless possibilities, endless rants and endless frustration 🤯 -
Got hooooot pink coloured pair of beats for my birthday!!! Best gift ever! Two most things I like is music and code this is the perfect gift! Pink is the only problem but fuck it. I love theseeeee!!!19
-
One of my most inspirational places to create devRant rants! I visit it every week. For a Sunday fun experiment I will gift the first person to guess where it is a devRant 'devie' stress ball or t-shirt. You must provide specific details. We can figure out prize logistic details thru @dfox. There are hints in the image 😀 Enjoy!16
-
Finally.
Coming home from my parent's after an extended Christmas vacation, this is a great gift to find on my doorstep (figuratively) -
Do you suffer from low motivation ? For three easy installments of $79.95 plus shipping & handling , the secrets of overcoming low motivation can be yours . Act now , don’t delay !
Operators are standing by & the first caller will receive a free set of dollar general steak knives in a faux wood gift box , excellent for regifting for that team party or potluck where if you’re lucky , you might get tofu .7 -
That moment when your employer opens his 15 years old shitty Compaq (the one with Square Screen, and slide button which is used to open the lid), and you are there with your Macbook...
🤣
I seriously want to gift him one, but only if he agrees to increase my salary, so that I can afford to gift a Mac.1 -
You think NORMAL updates are slow?
I have to install these twice, once from the desktop then again at boot-time!
(gift desktop for my uncle, but we're almost out of bandwidth for the LAN network for the month... had to go sit outside (yes, OUTSIDE) a McD's so I could have both power and network access. It was 2° outside.)7 -
Awhile ago I said I'm getting Acer Swift 3. I did. But I don't have it yet.
Why? Because I asked for RAM upgrade. (4GB original)
2 things to rant.
1) Acer is giving a free 4GB RAM as gift which the shop didn't mention when I bought the laptop and extra RAM. So when I get it, I'll have an extra 4GB RAM.
2) I bought it on Tuesday. The shop said they will need to send the laptop to Acer service center for RAM upgrade and expect to get it on Wednesday. I called yesterday, it's still not done.
Let's see if I will get it today.1 -
Hey guys, my boyfriend is in the path of becoming a video game developer, do you have ideas of what would be a good gift for him? :)14
-
If only the devRant store was to have a gift to user feature where a good samaritan could purchase some swag for their fellow ranters. #justathought1
-
A few years ago I had a Minecraft server and wanted to create my own plugins for it. I failed, but never stopped trying.
Did an internship at a software development company and got an Arduino as a gift; I was hooked - controlling stuff and seeing that stuff happens because of my code? Count me in!
Took classes in school that teach me coding and databases. I also taught myself a bit of C#, Java, C++ and PHP.
5 years and 3 internships later, I'm finally starting my paid training for the job as a programmer next year at the company that gave me the Arduino.
Gaming is what got me into coding, and I couldn't be happier. :) -
We don't have a designer yet in the team so we had to learn Adobe XD on the side to prototype our ideas. After months of getting the hang of it thinking this semi-free tool will work for us to save some money, Adobe decides to change their pricing plans starting in April 2020 and it will no longer be free. It feels like Adobe trapped us to get used to their platform and then secretly slap us with a price tag halfway. We can't blame them since we're all trying to put food on the table here. We started exploring Figma today and oh boy was it a gift from the gods! The features are so much better. They make our workflow faster!3
-
ARE YOU F*CKING KIDDING ME, WINDOWS?
I finally give in and install your stupid ass update, and what happens? let's just skip the part where i sit around for 30 minutes because apparently it takes 30 fucking minutes to install 300MB - by stallman's underpants, that's 150KB per second!
and when windows FINALLY feels like it has finished fondling it's binary-balls, what is waiting for me?
about 10 stupid-ass data-consent notices straight from satans anus, more weird yes-or-maybe settings for cortana (bill gates' ex or whatever that is) which i don't even USE, my browser speed dial has been complemented by about 7 links to SHOPPING SITES and once i sort that mess out i get a notification that the german language pack has successfully been installed.
SUCK MY FUCKING D*CK MICROSOFT, the ONLY thing i want to do with that language pack is SHOVE IT UP YOUR ASS. i can't even uninstall that moronic piece of shit. FUCK YOU.2 -
Checking out a project on GitHub:
> Using advanced condition-based AI logic, Compactor can skip over files that have been previously found to be incompressible, making re-running Compactor on a previously compressed folder much quicker.
> (Yes, it's an if statement and a trivial hash database, hush)2 -
-- Best --
> Submitted my notice of termination for my current job
> Found a new job starting next year
> Can switch from Windows to Linux/MacOS in new job
> Got more time to work on personal projects due to the pandemic
-- Worst --
> Huge amount of software restrictions (current job) almost got several projects at work canceled. Maybe its important to say that the core business of my current workplace is auditing so there are a lot of law regulations which then apply in the softwaredevelopment process.
> New managers that do not have the slightest clue of what they're doing
> Online Teambuilding events
> Absurd amount of segmentation of tools and also different coding guidelines that are used at work. E.g. one team uses jira, another trello, another github issue tracker and so on. -
Stories from a Startup #1.1
Picture of the swan in question. 😉 We were going to give it to him as a gag gift on our last day, but opted-out. -
Run dual boot Mac Catalina and Win 10. Got a bunch of Razer shit from wife for Bday... super stoked. Big mat, mouse, keyboard.
Works like a charm on Win.
Works for fuck all on Mac. The app to manage device is no longer supported.
Went waaay down the rabbit hole trying to sniff the packets that were being sent to the devices via USB to sync their colors and patterns.
Finally give up that route.
I have now built a VM for windows to run synergy... then a VM for Linux for Polychomatic because the keyboard is older and not supported by synergy.
And I found if I boot them both then quit them both the settings for the peripherals stay until the next reboot.
But JFC... I literally have to boot three operating systems to pull it off.
Talk about some gift of the magi shit... I was so happy with the gift and at this point it has wasted dozens of hours.
Fuck fucking Razer. Looks cool. Doesn’t work.8 -
I got a Commodore 64 as a Christmas gift at an age where I was far too young to fully appreciate it. I'd spend hours typing in code from printed magazines. Fell in love with it instantly. Nothing ever worked first time. Loading a game was a chore. It blew my mind. Little tear in my eye now thinking of how my late father and I would spend hours trying to get the beige-bastard to "play ball".1
-
Just met a lonely guy , he was terrified . I asked him what's the issue ? He said .. " My girlfriend told me that she loves gemstones , I bought her one . She broke up with me ! " And I was so confused .. I asked him why ? He said I didn't know she was a developer . I wouldn't dare to gift her a ruby... I know how it feels bruh.2
-
Hired as a junior full stack when I didn’t know shit about frontend. Ended up taking care of full stack on both mobile and web. Quit 6 months later due to burnout
-
The ability to automate my day, create my own apps and modify open source ones to fit with my conditions :)
-
The only project I wish I had more time to work on, and want to finish:
A 2D platformer as a gift for my girlfriend. It's about this little hooded gnome thing with a heart shape on its chest finding its other half that is supposedly miles apart from it because we're in an LDR so yeah2 -
My Girlfriend's birthday is coming up this month as we are in long distance kind of stuff so i was thinking to give a surprise to her.I was thinking to make a Birthday Countdown App.It will show the special message on her birthday and the second surprise will be a in-app chatbox were only we can chat.
Is this a good idea?8 -
Hey everyone, today i got the very good surprise to receive a package i was waiting a little late but I'm happy to show you my new keyboard! (Christmas gift) aaaaaaaaah, it's look very nice, it feel perfect (tried few sentences), and got few features. (weather shown... But there is a project progression tracker), let's try!4
-
Went into the office today to turn in my badge and gun (security badge/parking pass and yubikeys really) since I'm pretty much being given my last week before changing jobs to do brain dumps for knowledge transfer, and fuck all else.
Found a jar of moonshine in a closet when I went to take my things. IT said I could keep it. Not a bad parting gift. -
be me, just casually watching a cs:go fragmovie. there's always 10 seconds of ads before those, so i use the time to sip some coffee. at that second, i hear the following words..
"The first ever blockchain gaming marketplace in history"
...now i need to clean my keyboard. -
Actually have a dev thing to say now.
I wrote a script to compile my kernel with the latest mainline version using my current config options. It works...so far. I'll check back with it in a couple months and hope it still works good. It also checks daily if my kernel is out of date (yes I'm one of those, fight me)
Also managed to get my laptop to boot from power on to LightDM in 15 seconds, and 9 of those seconds are firmware. It DOES have this thing on occasion where it freezes during the boot process while initializing everything tho?? I've been meaning to try and figure it out for a minute but I put it off so much cause I don't reboot that often anyways.
As for a personal update, I hung out with some good friends today and my best friend heard my singing voice for the first time, she said I have a good voice (she does a lot of musicals and stuff and just sings all the time, so I trust her opinion). I also gave that friend a gaming laptop as a late birthday gift/early graduation gift today because she doesn't have anything to game on and I didn't really use the laptop much anyways. Plus she's like my favorite person ever and she really deserves it. Unrelated note, I have had an off and on crush on this girl for 2 years. She's always been there for me and she's just an amazing person.9 -
think I'm coming to the realization that you gotta have impossible goals
ones you regularly try to work towards, preferably obsessively
because then it trains your spirit
and everything else in life becomes a cakewalk by comparison
which is the true gift of the whole ordeal
maybe that's where all that rhetoric about "working towards something greater than yourself" came from but it got warped by exploitative parties 🤔2 -
After a long long time,
Debugged something that blew away my mind on how it works internally..
DynamoDBMapper made my day today.
What could have been more better gift during the super special sweet valentine's week!!!!!
I ❤️ debugging.
Found my lost love and interest to patch up with my most loved one Miss "Programming" -
I think my client have a gift, he always know exactly where not to go or not to click...
Man, let me show you the prototype with peace !1 -
A one time gift consisting of the following in a party bag without any letter to explain why:
A jar of Polski-Ogorki pickles, synthetic motor oil, a Chicago's Cubs cap, a My Little Pony doll and a dollar store clown costume.1 -
Ouuu today I experienced how web-devs must feel...
Task: create a form to answer questions with yes/no and a database behind it to collect stats.
So login to phpmyadmin
1. Wrong password got error message
2. No error message, still at login screen, but in address I see a token
3. There must be something wrong
4. Reinstalled phpmyadmin and mysql-server several times, wasted one hour on it - still stuck at login screen
5. Tried different browser and it fucking works!
6. Realized that cleaning cache fixed it...1 -
!rant
A colleague of mine has made the right and brave decision to quit. For her it's absolutely the right decision but I hate how the company was OK and did nothing to keep her. I'd like to give her something small when she leaves. I was thinking about a book. Does anyone have any suggestions that might be a nice going-away and good-luck present for a valued colleague?
Is there a book or something similar in size that they really cherish and wish they had had sooner?7 -
Corporate hackathons are bullshit. I've swore them off. There is no way I'm going to be put in additional hours for so little gain ever again.
Companies have boatloads of money, and they think they can get away giving people $100 Amazon gift cards. SERIOUSLY? You pay for execs in millions of dollars for flapping their mouths.
Make it so that you pay out at least 20k+ to winners and give people something for participating - a nice 1k bonus.
You guys have enough money.5 -
Oh
You got a big surprise gift for me
Damn lol
I should have been nicer
Again
My very own clion license
Can I have the shiv under my ribs instead ?3 -
I swear I will KILL the next one who comes to me to pimp up his excel sheet WITH FUCKING VBA -.-
This shit is so annoying.... Just because I started my apprenticeship and need to learn everything like a 3 year old kid...
Get me outta here! -
I’m working on a react codebase and company decided to add a new module.
Now im writing markup and css to ensure UX is smooth as designers thought of it.
Imagine my horror when I start to code and find out no matter what HTML tag i use, it’s been FUCKING OVERRIDDEN in the global stylesheet. AND STYLES HAVE BEEN OVERRIDDEN WITH !important
They’re also using Ant design as a component library. Guess what, default ant design classes have been overridden too. So i try to use ant design button or card, and bam, MAGICALLY SOME DESIGN FROM SOME SHITHOLE MODULE DECIDES TO FUCK WITH MY STYLES
On top of that, styles of parts of application has been written in SASS, some part of application uses bootstrap components some use third party components like tables and responsive grids to suit to their preferences. Some parts use handwritten css. Some parts use CSS IN JS and styled components. THE FUCK IS THIS GARBAGE!!!! THE FUCKING CODEBASE HAS A MIND OF ITS OWN!!!!!! YOU NAME A WAY TO ADD STYLES TO A COMPONENT, ITS THERE!!!
And the company’s management thought a “fractal” approach to maintain each individual view is “best” for SCALABILITY!!! HOW THE FUCK DID IT NOT CROSS YOUR DUMB MIND THAT FRACTAL APPROACH ALSO GUIDES TO HAVE ALL COMMON STUFF AT ONE PLACE!!!! THIS CODEBASE HAS DUPLICATE STYLES AND DUPLICATE CODE IN ALMOST EVERY MODULE!!!!
Not to mention every developer choosing to freely decide the way they should write their code without any guidelines.
HOW THE FUCK PEOPLE WRITE THEIR CODE WITHOUT THINKING ABOUT OTHER DEVS!!! SO BASICALLY I AM NOT ONLY CLEANING SOMEONE ELSE’S SHIT BUT ALSO TRY NOT TO SHIT IN THE PROCESS!! FML2 -
i'm afraid that having discovered the power of multithreading has made my code worse.
case in point: me has to calculate an unknown 3rd point of an equilateral triangle many, many times. however, me doesn't get the formula, so me goes ahead and loops over all possible coordinates until it finds the correct one.
yep, it's definitely gotten worse.2 -
Our company often carry outs hackathons for customers and partners (for apps for our cloud system). One time they carried out an hackathon for us employees. My team won the price, a 40€ Amazon gift card 😄1
-
Another bad day improved by a devRant gift, it's the second time that this happens. Do you want make me smile guys? :31
-
started to rewrite one of my functional-but-horrible projects. after 2 hours i realize i'm starting to use the same kind of "if it works, great" style.
jesus, i need some sleep. -
qt compilation 2: electric boogaloo.
$ ./configure [dozens of options]
< building qmake, blah blah, success blah blah, run make && make install, blah blah >
$ make -j 8
< works for 5 minutes, then hits an error without telling me what the error is >
$ make -j 8
< works for 5 minutes until the same error. this time i notice it rm's a directory right before using it >
$ make # multithreaded fuckery, perhaps?
< fails after 5 seconds with different error >
$ make -j 2
< same >
$ make clean # fuck it, clean up and try again
< fails after 2 minutes of cleaning >
The C/C++ infrastructure. just everything about it. and i'm not even using dependencies here.2 -
Fuck this fucking shit...
Be me, plan a trip to a festival with friends, vacation approved, get up at 3am to drive 9 hours from Germany to Italy, find a nice spot for our tent and yeah...
I was unloading stuff of my car and standing in range of the tailgate and get the shit smashed onto my head...
Yeah I'm a volunteer firefighter, so good at paramedics, so I applied a pressure bandage myself, because shit was bleeding all out of my head...
Then I got a ride with the ambulance to the hospital and now about a hour in the waiting room...
Please cross your fingers, that the X-ray that I'm waiting for shows no damages and that i can continue my festival...
What a happy first festival day...5 -
Mom and dad randomly came home and bought me a brand new 15 pro max as a gift for starting my first devops job on 15th december... I didnt ask for this. Nor do i urgently need it. I wanted to buy it myself when i earn money. But i cant be ungrateful so ill be humble and appreciate this gift. I feel bad for them, they are broke and are now paying off this phone for 2 years every month. additional unnecessary stress of money shit on top of their back and i dont like that. Need to give them back as soon as i earn from this shit job and also buy my mom the same phone for her bday thats in 3 months5
-
Just got a new soldering iron set for xmas, courtesy of my uncle. I went to use it to hardmod a PS2. Good news: PS2 hardmodded for easy discswap and SwapMagic with original ejector. Bad news: the iron barely made it through that before oxidizing to unusability. Even after I properly wiped the tip off with a damp, clean rag before and during use, it still corroded to s**t in seconds once power was applied. (No, refiling and tinning didn't help. The solder layer oxidized too.)
Soldering irons rust to dust in my hands in seconds. Every time. Even when taken care of properly. f**k me...11 -
Finally gifting my sister, on the occasion of my sisters recently born baby's 21st day..,
My old laptop with Linux installed and with an update to Samsung evo 860 ssd.
She is new to linux, not so new. Hope she will find good stuff to prepare for the next job as she is on maternity leave.1 -
My wife gave me an iPhone for Christmas. The last one I had was the 4. As soon as it connected to my computer and I answered the first call from it. I don't know, I fell in love. Mind you, I don't want the Apple Watch. I have an amazfit neo and I like it that way.6
-
Little calculation:
you have probably around 20 days holiday per year.
After 60 year old everything is more or less a gift, so I wouldn't count on it.
Let's say you are going to work 30 years. That is 600 days to do whatever you want.
It's less than 2 years.
Shit.
Try to count how many days left of freedom.
Shit.
Suddenly all the things I have to work on today have lost all priority6 -
Been searching for an offshore data server for at least 5 fucking hours. There's nothing worse than searching for decent low-end offers outside of europe.7
-
Just wanted to buy a gift for my gf, so I went to birchbox.fr to buy her a 3 months subscription (irrelevant information).
So of course I needed to create an accout in order to buy it.
But what a surprise when I received a confirmation email, with my password in PLAIN TEXT inside. I guess I do really love her for not cancelling the gift and deleting my account immediately. -
Hey guys, my boyfriend is a software developer and he wants to start developing video games, he would like to design games but is not good at drawing, I have been advised that a wacom would be a good gift for someone that wants to become a game developer, what do you guys think? Is it a good gift even if he is not good a drawing?3
-
I always code when I have no motivation to do other things. I think it will change when I start working :/
-
I figured out how to skip 2 months of development so we could launch Long ahead of schedule.
Question is should I tell them or do it? I don't feel like it really as I've been treated like shit and am looking for a New job.
It will take the stress off collegues, perhaps as a goodbye gift when I leave I'll put it on a thumb drive and give it if I feel bad.2 -
Finally did it!
Replaced my desktop pc (which I use for gaming) which had Windows 7 with Arch Linux! It was not hard because I already use it on my laptop.
OK it was a bit struggle with nvidia and cinnamon due to missing libraries I had to install which I don't know before.
But it is possible to play games on Arch?
Yes definitely!
CS:GO - works (native, steam)
League of Legends - works (wine)
World of Tanks - works (wine)
All I need is working (:1 -
University : you know with remote working no-body know if you really work at home. For that reason you cannot remote work on shiti snowy dangerous day.
Covid-19 joined the conversation
University : look how its fun to remote working ! Is the new technology of the century... Now everybody in quarantine can work at home and the business lose nothing.
Me: yeah you bet mother fucker
University: don't take it like that is a gift.
Me: i will take it like a gift if you give it to me before the apocalypse fucker ...2 -
!rant
Guys, could you please give me some gift ideas for a programmer? I was thinking about an IntelliJ Idea subscription, but it's too expensive for a present.17 -
I got a really really fast computer from my previous employer with a valid windows 10 license (Enterprise) as a farewell gift when I left them in December 2016.
Yesterday my 3 year old daughter magically entered the Windows Activation window and entered a bogus key.
Since my previous boss doesn't work there anymore and you have to log into the corporate domain to re-enter a valid corporate key.. I was forced to buy a valid key.
Well, at least now the license is mine. But it was expensive...3 -
!Rant - birthday gift 🎂
3 days ago was my birthday and my girlfriend still has to buy me a gift, but she doesn't know what to buy. Now the problem is that I don't know either.
I'd like to start programming something related to IoT and maybe learn a bit more of C/C++ (I guess they could be useful to know), so I'm asking you, what should I (she) buy? Arduino or Raspberry PI 3? Is there a kit of sensors I can buy? I accept any suggestion!
Thank you 🙂13 -
I have observed too many times that I have the ability to be futuristic about technology, like software, gadgets, etc..and somehow few years or months later..they get rolled out....is that a gift or am missing something I should be doing right now? Advice pls..4
-
Can someone suggest me a good, cheap phone with good battery?
I think at least 4000mAh and around 200€
My Touchscreen broke and I don't have enough money for a good flagship...5 -
Y'all have your rubber duck to debug, but I have my own technic: the SO debugging.
It simply consists as asking your question as you'd normally do, but while doing so, you still think about your issue, and how people not knowing your problem but still knowing about dev would react to your question, making you asking other related question (SO's related question might also help).
IMHO, the most important part is the "related" question, that helps you to think outside the box. It makes your problematic progress a lot, and has the gift of not making you loosing any hope ; and if you ever block for good, your question will look less silly than at the beginning -
1) IList doesn't have an AddRange.
2) WPF bindings must be ObservableCollections
3) Comboxes using Event Notification on PropertyChange are originally developed by some dope at Microsoft who still doesn't comprehend Big-O
4) LINQ can only do so much...
It's Christmas. My gift from Santa is trying to get through an end of year crunch on a project that is made entirely out of hot sweaty year old garbage, and the garbage collector is a halfwit who comes seemingly only when they want to, regardless of when I call Dispose().
It's 12:26pm here. That means it's time for bourbon and a good bit of "F*** this, I'm done for the day."7 -
Being a Dev is a gift and a curse... People have ideas and so do I, problem is I actually know how to solve mine.... how the heck do I choose?? And why does it seem that 1 or 2 weeks after I’ve picked, new great ideas come to light. FML.2
-
mfw someone makes completely irrelevant OS-bashing comments in an issue that's barely related to OSs... someone tells him to fuck off... and then he posts a FUCKING PHARELL WILLIAMS VIDEO! ON GITHUB!
i'll go straight back to bed, bye. -
to just do my shit, without working for anyone. really, I just want to dwell on my side projects forever.
-
This nonsense gave me an idea. Now I want to start building a big, organised, db for good bad examples. I can think of so many uses for it if everything is tagged/categorised well.
Thank you rando LinkedIn reject, you gave me the best birthday gift I could hope for... another potential branch of my data architecture to play with new data in new and to be discovered ways!
The site of the rando is athensnexus.com5 -
Web Development on Notepad is like a person buying gift for you, but keeps forgetting to give it to you ¯\_(ツ)_/¯2
-
How is the weekend going?
I have a colleague's wedding coming up this weekend. What would you suggest as a marriage gift?
Previous Week : https://devrant.com/rants/106508777 -
[!dev]
Just got a bottle of baileys as a gift for acing my "end of high school" exams. I never had my own bottle before. How do you store these things? It has milk in it so I might want to put it in the fridge, but only if otherwise it's good for less than a week, because everyone else in the family also loves it so in the fridge it'll be empty within a week.7 -
Got a mac as a gift for my sister for christmas. Shes still in uni and wants to learn ux/ui. I plan on buying sketch licence for her for 1 year. But then I started thinking that shel need more, like photoshop or ms word apps. Is there some place where I could buy all of them as a bundle possibly cheaper?4
-
What are the benefits of windows server 2012 over linux? I received a CD & key for free, but I can't decide if I should play around with it for a learning experience or gift it to someone who could actually use/need it for their work.3
-
Helping to debug others and being debugged is just deep satisfaction.
Willing to do this is for sure a gift -
I just remembered that I still have this somewhat decent micro controller (that even has a gyroscope on it) from a few years ago when I got it as a gift but never used it and was never really interested in it. This changes everything!!
-
Just found this glorious rant about a controversy I completely missed in 2016.
https://eev.ee/blog/2016/... -
How is the weekend going?
What would you like to do when it is raining?
Last week, I bought random things he used to like and put in a box and gave it to him as a gift.
Previous Week : https://devrant.com/rants/106719727 -
1.2 years ago, I was an intern, In letter they've written that 4 hours to work but I was working 12 hours daily cause I was curious and my boss appreciate for this. so one day while testing our app at 3 am in the night, he said, u r working too hard, so u can take a Smart Phone from my side of worth ~$250. I was so happy. He said it is a gift for ur dedication. Also, they've given ~$250 on my initial day while joining to upgrade my PC. But now, I've provided my resignation letter. So they've asking me to give back the Phone cause its a company asset and also give back the money. But later they said don't give the money but deliver the Phone before 15 Jan. So, idk am I an idiot or what but I was working more harder and helping more people in company so that they're provide more stuff and get impressed. But now I think i should not do anything and do my work as a duty. Idk, should I return the phone, should I ask my boss again that u have given it as a gift or should I return another $250? I'm a student, I don't earn much and my boss knew it very well. like after 2 year of experience in MERN stack/ Azure/ Flutter, I've created many things in company and they've decided to give $3,607/year according to my new offer letter. That's why I left the company.5
-
I just bought a Pixel 2 so I can have live captions...
Apparently it has Android 10 support as well...
Why didn't I think of this earlier.... Though apparently support was only added in December. But just $100... And well I had a 60$ gift card balance left so that can't out to $40. (And it's only a 3yr old phone... Amazing how fast prices drop)
Actually I ordered a 3a first but then found out pixel 2 can do it as well... but now I'll have 3 phones...
OP1 (sitting in drawer unused for a few years), OP6, Pixel 2.
Guess I'll finally have an unrooted phone though I can use for all those apps I can't hide root from...1 -
!rant
I am too stupid to setup OpenVPN. If I give you access to the VM it's on, would someone set it up for me? There's a $60 Amazon gift card in it for you. As well as having a developer at your beck and call to return the favor.1 -
Someone should give me a Christmas gift by giving me a remote project to work on that will get me paid.
I am a kotlin and python DEVELOPER. "I could work on Android apps and web backend"
"MERRY CHRISTMAS" -
-> improve a system
-> the system now has a >95% success rate (before it's only 70-80%)
-> business people still complaining about error (even tho it's relatively way smaller) :/1 -
when you just want to set up a tiny automation and end up compiling a custom snap package for 3 hours...1
-
With Reed Milewicz we conduct a 10-15m survey of mentorship among people who develop software. We offer a $100 Amazon gift card raffle to participants & donate $1 USD to an open-source 501(c)(3) non-profit for every survey completed.
Survey link: https://snl-survey.sandia.gov/surve...
Please help us to help the next generation of developers! -
My first experience…
My father bought a Commodore 64 but couldn’t figure out how to use it. A few days later I was playing games and making art. He yelled at me saying none of it was in the manual. He was mad I understood how to use it. It all came naturally to me, and I early
on realized I had a gift.