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 - "a thing?!"
-
I just gave a 20 minute presentation in front of fifty people, and apparently did well enough that I got five private compliments afterwards, including one from the vice president. 🥳
And all of that without a single drop of rum!17 -
I think I just invented a thing.
Mouse drop.
It should be a thing.
The next time I switch jobs I'll definitely do a mouse drop before I leave the building.9 -
I tagged myself in a comment, and it notified me... 😆
No idea if this is a DevRant thing of a DevRantron thing.. Both..?32 -
I'd really like a talk with the Spotify UI/UX devs.
No disrespect but DAMN that thing sucks. It shouldn't take me a full fucking minute to find the FUCKING settings!
This is one thing that deezer does well at least imo.20 -
Dearest LinkedIn, no-one *ever* cares about work anniversaries. It's not a thing. Stop trying to make it a thing.13
-
WHY THE FUCK DOES IT HAVE TO END?
WHY THE FUCK DOES ANYTHING HAVE TO EVER END?
When I left my previous employer, I was so connected to people there. In fact my entire direct team was just few months old.
I ended up crying like a baby on my farewell call in front of everyone. I just couldn't stop.
Definitely not the brightest or smartest people, but surely great at heart. I did hate them at times and we had our ups and downs but they made the place tolerable.
The work culture is created by colleagues at any organisation and not the leadership/management. And work culture was one of the major reasons why I stayed back for 7.25 years even when a rat was earning more than me.
I joined new organisation with a big smile on my face that, I will learn and earn more. And as I was buckling up, my lead quit.
She was one of the smartest person I met. She inspired me so fucking much. Our entire team is geographically located in multiple time zones. Still she never hesitated to jump on calls as early as 07:00 AM or as late as 12:00 AM. Yet she pinged me every time on Slack to check on me and made sure I was doing well. Kept pushing me to get enough sleep, take care and not burnout myself. Always handling her daughter while on calls with us without impacting the discussions.
She taught me like her own child. So patient with a retard like me. Gave me good feedback and insights on how can I grow as a person and what all to look for in the organisation.
She bids her final goodbye early next week and with every meeting we have, I get more emotional. Doesn't feel like we are in different continents but just in same room, talking like we have known each other for years.
And you know what, after joining this org, I came to know that they hired me for a level below what I was in previous org (because how the job titles were structured here and I don't really care for titles). The product I am working on is highly ambitious and everyone is keen to make it live.
And now everything falls on me. Kickass opportunity to get a promotion, relocation, good hike, and all that I desire. And my employer is known to be quite employee friendly to actually fullfil all my wishes.
But that's not what I want. I want my people with me. It would have been so fucking awesome if she wouldn't have quit and together we would have built the product and have had so much fun doing so.
I am sure, the reason of my death will be empathy. I am next to tears while I type this.
I suck at goodbyes. Even though, with the help of technology, people are and will be connected, but still goodbyes are the shittiest things to ever exist.11 -
I hate it when stupid ideas go public and get a huge valuation. Snap at ~$24b just means more of my mother asking why I haven't made something like that yet and everyone else pitching me their dumb ideas at my birthday party.3
-
me: *tries to find a file in system*
Ubuntu: No problem bud, here's a thing which you're looking for
macOS: Sure thing chief, here's your stuff.
Windows 10: Here's a random thing I found on the Internet which is totally irrelavent. By the way, I see you're using Chrome, would you like to start Microsoft Edge instead? 🙃10 -
Favorite Client: "The website you built and have been operating for us for 3 years now sucks."
Me: "But you made more money this year than the last two years combined!"
FC: "Yeah, but if it didn't suck so bad it would've made a lot more. And it was hard to manage our event ticketing and updating content."
Me: "It was hard because you've never had events sell out before. And you added one new person and replaced another at the worst possible time to get them trained on how to manage things."
FC: "Yeah. So now we are putting the site up for bidding to rebuild it from scratch for these new realities. Obviously you'll have the advantage over other agencies because of how well you know our organization and how things operate. How much do you think it'll cost?"
Me: https://youtu.be/l91ISfcuzDw3 -
The best thing about being a developer:
- You can work from anywhere anytime.
The worst thing about being a developer:
- You can work from anywhere anytime.7 -
I am much too tired to go into details, probably because I left the office at 11:15pm, but I finally finished a feature. It doesn't even sound like a particularly large or complicated feature. It sounds like a simple, 1-2 day feature until you look at it closely.
It took me an entire fucking week. and all the while I was coaching a junior dev who had just picked up Rails and was building something very similar.
It's the model, controller, and UI for creating a parent object along with 0-n child objects, with default children suggestions, a fancy ui including the ability to dynamically add/remove children via buttons. and have the entire happy family save nicely and atomically on the backend. Plus a detailed-but-simple listing for non-technicals including some absolutely nontrivial css acrobatics.
After getting about 90% of everything built and working and beautiful, I learned that Rails does quite a bit of this for you, through `accepts_nested_params_for :collection`. But that requires very specific form input namespacing, and building that out correctly is flipping difficult. It's not like I could find good examples anywhere, either. I looked for hours. I finally found a rails tutorial vide linked from a comment on a SO answer from five years ago, and mashed its oversimplified and dated examples with the newer documentation, and worked around the issues that of course arose from that disasterous paring.
like.
I needed to store a template of the child object markup somewhere, yeah? The video had me trying to store all of the markup in a `data-fields=" "` attrib. wth? I tried storing it as a string and injecting it into javascript, but that didn't work either. parsing errors! yay! good job, you two.
So I ended up storing the markup (rendered from a rails partial) in an html comment of all things, and pulling the markup out of the comment and gsubbing its IDs on document load. This has the annoying effect of preventing me from using html comments in that partial (not that i really use them anyway, but.)
Just.
Every step of the way on building this was another mountain climb.
* singular vs plural naming and routing, and named routes. and dealing with issues arising from existing incorrect pluralization.
* reverse polymorphic relation (child -> x parent)
* The testing suite is incompatible with the new rails6. There is no fix. None. I checked. Nope. Not happening.
* Rails6 randomly and constantly crashes and/or caches random things (including arbitrary code changes) in development mode (and only development mode) when working with multiple databases.
* nested form builders
* styling a fucking checkbox
* Making that checkbox (rather, its label and container div) into a sexy animated slider
* passing data and locals to and between partials
* misleading documentation
* building the partials to be self-contained and reusable
* coercing form builders into namespacing nested html inputs the way Rails expects
* input namespacing redux, now with nested form builders too!
* Figuring out how to generate markup for an empty child when I'm no longer rendering the children myself
* Figuring out where the fuck to put the blank child template markup so it's accessible, has the right namespacing, and is not submitted with everything else
* Figuring out how the fuck to read an html comment with JS
* nested strong params
* nested strong params
* nested fucking strong params
* caching parsed children's data on parent when the whole thing is bloody atomic.
* Converting datetimes from/to milliseconds on save/load
* CSS and bootstrap collisions
* CSS and bootstrap stupidity
* Reinventing the entire multi-child / nested params / atomic creating/updating/deleting feature on my own before discovering Rails can do that for you.
Just.
I am so glad it's working.
I don't even feel relieved. I just feel exhausted.
But it's done.
finally.
and it's done well. It's all self-contained and reusable, it's easy to read, has separate styling and reusable partials, etc. It's a two line copy/paste drop-in for any other model that needs it. Two lines and it just works, and even tells you if you screwed up.
I'm incredibly proud of everything that went into this.
But mostly I'm just incredibly tired.
Time for some well-deserved sleep.7 -
"The major difference between a thing that might go wrong and a thing that cannot possibly go wrong is that when a thing that cannot possibly go wrong goes wrong it usually turns out to be impossible to get at or repair. " - Douglas Adams1
-
Just to add to the chrome memory wastage.
Chrome out consumes everything else running, and Virtual box has a full blown LAMP server running.4 -
Me: junior dev
Assignment: build a REST search service that also does (thing x)
Me: gosh I just can't figure out how to make (thing x) work! Nothing I try works and there are no online resources!
*goes to meeting with client*
Client: (thing x) is impossible in our application, so we are expecting (much more manageable thing)
Me: awesome! I think I can build that
Manager who can't code: what are you talking about, (thing x) is clearly better and it should be possible to do
Manager: *sends email outlining shifted requirements after the meeting, including (thing x)*3 -
!dev
One of the worst weekends of my adult life. I'm flying to attend my best friends funeral tomorrow. My flight is delayed over 6 hours by a cyclone that already passed over my house 3 days ago. And I am still in my 90 days at my new job so I can't take any PTO and have to take a redeye Monday morning and be back online for standup.2 -
Forgot to secure my mongo db instance, found half the data gone, and a new db holding me at ransom , learn_how_to_recover_your_data , good thing offline backups are a thing.
Recovered in no time, never will I ever repeat this mistake3 -
Code it in binary
(My friend claims to code in binary, is this an actually applicable thing or just a novelty thing to impress people?)17 -
When some born-in-the-90s chode claims that linux is bullshit because you might sometimes have to use the keyboard on the command line, I set that motherfucker's house on fire.4
-
„You have the right to access, change and delete data stored about you. To do this click here“ very funny... very very funny...
-
This was about 3 years ago. I’m on vacation and just getting off the plane, when my boss calls me on his cellphone. Apparently the crontab on our main file upload server had gotten nuked, and he was asking if there were any backups.
A word about this server. I work with video, so this thing is doing about a few gigabits of traffic incoming at any moment. The cron jobs are necessary to move and organize these massive files into a sane scheme for processing. Hundreds of drop folders receiving thousands of files resulting in terabytes of data every single day. Our storage vendor tells us we have the third largest deployment they know about.
No cron jobs mean all of this content is just sitting around piling up. I tell him sorry, try contacting $otherAdmin since he’s more familiar with that system.
A few days later, after the vacation, I come back in. $boss and $otherAdmin have reconstructed the crontab from scratch after an all nighter.
I ask how it got deleted.
$boss was training some people how to set up new customers on this file server, and he told the trainees to open the crontab in read-only mode. One of them ran:
crontab -r
Yes, we back up our crontabs now.3 -
Theory
You work on thing B while waiting to hear back about thing A
Practice
You are waiting to hear back about things A-G2 -
I will turn this unholy, steaming, volatile, fubar, absolute shitstorm of a codebase into a thing of beauty, if it's the last thing I do!1
-
New ticket:
Ticket: "I just spoke with-"
Me: "LET ME STOP YOU RIGHT THERE! IM NOT GONNALET YOU FINISH! IS THERE A PROBLEM? THEN HAVE THE PERSON YOU SPOKE WITH / SAW THE FUCKING THING HAPPEN CONTACT ME! ALMOST NEVER IN MY LIFE HAS A GAME OF TELEPHONE EVER DONE ANYTHING BUT FUCKING DRAGGED OUT THE PROBLEM! WIDGET DOESN'T WORK? THING DOESN'T DO A NON SPECIFIED THING? FUCK YOU FOR DROPPING ALL THE INFO I NEED AND SENDING A VAGUE EMAIL!!!"
-ticket set to not gonna do shit until someone who saw the thing gets off their ass and says what is actually happening-1 -
Cool things I found out recently™:
[#1, August 2017]
1) devRant (hehe~ ★)
https://play.google.com/store/apps/...
2) DeepL Translator
https://www.deepl.com
3) Lanota (an awesome mobile music/rhythm game) (I'm fanboying too much about it, sorry :'D)
https://play.google.com/store/apps/...
4) Burrito Galaxy 65
http://burritogalaxy.com
5) USB type C Simulator
https://play.google.com/store/apps/...
6) bill wurtz('s YouTube channel. Heh, you thought I was just gonna call a person "a thing"?)
https://youtube.com/user/billwurtz/
---
What do you think? What is your list? ^^undefined list devrant yeeeee ★ !rant cool things i found out recently this is gonna be a thing okay maybe this is not gonna be a thing9 -
If there was one thing (and one thing only) that I wish was unanimous amongst programmers (and that we all agreed on) is that a tab is 4 spaces.4
-
Recently not a single fucking thing is going my way...... Every goddamn new thing i try, screws me over in some way... And when I finally think somethings working, I get fucked more than a highway hooker.1
-
Just got another free burrito because they don't seem to deduct the reward points from the app but keep giving me more...1
-
i dislike the people that dont take mental illnesses seriously. its a serious thing and they don’t think its a real thing because they havent been through it.3
-
Got a vertical mouse a while ago, and I like it.
Saw this on Youtube, thinking of going full vertical now...
But rear mirrors on my keyboard??
I don't know dude...10 -
!Rant
I got a co-founder for a thing I'm building.
Building this thing will only get better as all the struggles of building a startup thing get wurse.
Today, my rant friends, is a great day. -
Can we get a translator bot? I can't copy paste the text in app, so every time I want to translate some rant, I have to copy rant link, open it elsewhere, copy the text, and then go translate it.
Like, bots must do it easier and faster, right?14 -
HR: good news! We're going to be moving your whole floor to a **newly renovated floor** in our main building.
Me (thinking): sounds good! It'll be all new and I'll be reintegrated with the main population, see young ppl (girls) finally.
HR: there will be no assigned seating though. Do you think you will have any problems finding a seat since your deaf?
Me: Hm.... should be fine... (Thinking: so no nobody will care if I work from home or not...yes!)
HR: Actually they said they can give you a fixed seat!
Me: wow thanks!
(Wait... Fuck... Did they actually review my low physical attendance rate so now if I become the only guy with a fixed seat on the floor, I will have to show up more instead of working remotely whenever I want (the rest of my team are in different countries)... I will literally be the center of attention...)4 -
Best thing to be a dev
You create your own tools, problem solving skills that we learn and the best thing that non-tech people treat you as a genius5 -
Dear Target App Developers,
I think you left some debug code in your app...
I know you want to know if someone is using a VPN and that's cool with me, I get it.
But when I'm on a VPN your app constantly pops up a modal with my IP address every time I change a page in your app....
Might want to look things over a bit closer before you put it in production ;)2 -
SINGLE
RESPONSIBILITY
FUNCTIONS
HOLY GARBAGE UNTESTABLE DIFFICULT TO DEBUG JFC SHIT.
FUNCTIONS DO ONE THING AND DO ONE THING WELL. LEARN IT, LIVE IT, LOVE IT, OR JUMP INTO A LAKE
that is all.5 -
coolest thing I ever built?
My career..
except it's not cool, and not sure if it's a career at all.. not so good on a thing, just some knowledge here and there..
now I am sad about my life -
When searching for "microsoft" in Ubuntu apps, it results in all libreoffice apps. And similarly, a search for "microsoft word", shows "libreoffice writer" as a result and same thing happens with other microsoft office products.
A very simple thing but pretty neat if you ask me.6 -
!rant
I just did a thing. Signed the contract for buying my very first apartment at age 21. So fucking stocked, and feel bad for my wallet10 -
True Story:
first thing I did today: got my tickets for a meat raffle at my friend's church.
second thing I did: took a call from the tech recruiter at PETA. -
Me: *pushes up code that should stop bad thing from happening*
Bad thing: *doesnt happen for a few hours*
Is..is it good??? Did i fix it????? Or does the thing just randomly not happen right now??????? We will never know.6 -
Is there such a thing as a password policy that sets expirations based on the strength of a password? That should be a thing.5
-
Architect: I know we said we would never do The Thing because doing The Thing is really bad, but can we do The Thing for a proof of concept?
Me: How about Fuck No! Unless you are proposing a solution to fix The Thing, we are NOT doing The Thing just to satisfy some perverse curiosity you may be harboring.4 -
How fucking difficult is it to first figure out what the hell you want me to build, before assigning me a project?
But noo...make me implement a feature that will do a completely different thing in two weeks, and a completely different thing a week after that...fuck you Jeff3 -
My first freelance dev job thing, turned out alright. For the first year though, the dev job thing became a tech support thing. Oh the horror.
-
just got a talk accepted to a big tech conference this summer, unsure if this is a good thing or a bad thing4
-
Just found out my phone (stock, no root) has user-settable minimum DPI? The battery saver thing drops the DPI some and auto-adjusts the DPI and resolution to save power, but I didn't know I could set it... (Minimum 320 DPI, max 960 DPI)6
-
I made a thing.
I then turned it into a CodeSandbox template so other people could make the thing.
I then turned it into an npm package.
The thing is a cat clock generator.
https://codesandbox.io/embed/...
https://npmjs.com/package/...3 -
May be it is small thing to many people's but as a less experience Developer it is big thing for me.
I AM GOING TO LEAD PROJECT.😊
Ohk project is not so big..3 -
So, I just swatted a huge bug out of the air using my work iPad. Because it was the closest thing handy. I'm pretty sure that's not why they bought me the thing...2
-
That awkward moment when you tell your family that you're participating in a hackintosh.
Their response: Why would you do any such thing? Hacking other people is not a good thing son.
Me: It's time to leave earth2 -
If your phone had taken photos of your face for your whole life without you knowing, would you watch a video that was automatically generated from the photos?12
-
Today, making a list out loud while in a conversation with a co-worker.
Me:
"thing one" *puts out hand*,
"thing two" *raises thumb*,
"thing three" *raises index finger*,
"thing four" *raises middle finger*
Co-worker: "That's 3 fingers, you said 4 things.."
Me: "I guess I mentally counted in base 0.."3 -
Change one thing a day, stick with plan, do one thing at a time and be consistent and after 356 days or less you would have a product.
-
Sometimes code is correct but so wrong. Came across this in a kotlin PR today
If (thing != null && thing!!.field != null) {2 -
WHY THE FUCK THE NEED TO USE Visual Studio.
Well, in my university, for some fuckin dumb reason we are taught to develop a simple fuckin web form in asp.net.
Thing is, VS is so fuckin powerful that it's a huge overkill for such a simple thing. What is even worse is that, WE DONT FUCKIN EVEN CODE IN C# we just drag FUCKIN COMPONENTS HERE AND THERE without learning a single thing
But okay let's move on. I'm a linux guy, which mean, I CANT FUCKIN USE VS AND CANT EVEN PRACTICE THOSE DUMB SHITS and that means i won't fuckin remember a single thing.
FUCK THIS SHIT2 -
Ok, so I have been lurking around here for a while now. Not at all knowing what to rant about. I like my work, I don't have to deal too much with annoying (or almost any at all) customers and all in all I feel fine.
However, I feel like I want to, in some way step into this awesome community in other ways than just comments and ++.
So this post will be about a book. It's almost our Bible. Well it's probably the closest thing to a proper part of the trilogy we will get.
And for not being written by Douglas Adams (the almighty) himself; this book is surprisingly good! If you haven't, and get your hands on it, do read it!3 -
Today has officially drained all the brain I didn't even have yesterday. Let's hope I get somewhere with this thing, or else all the brain I've wasted is going to be useless.
Also, fuck opencv's fisheye undistortion. Mofo, I don't have the camera params, how the fuck do you want me to give you your stupid kernel shit? Shut the fuck up from my face. Stupid hoebag.
... 😭😭😭😭😭 -
Best thing: I started to understand how compilers work under the hood (sort of), was even able to implement a few scanners already
Worst thing: I have absolutely no clue how to continue ._.2 -
Fuck you VS Code! Have to reboot my VM every four hours because that piece of shit starts glitching on the screen and freezes the entire system when I want to close it!8
-
I hope I’m not the only person who drafts a plan to build a thing to do a thing, and in the course of research about implementing the thing, winds up mashing together several other unrelated things because they looked like fun and the original thing gets left behind. (Oh, look, squirrel!)1
-
I just noticed that it seems reading devRant has made me more prone to cursing (when I'm texting)... Is that a good thing or a thing?4
-
Yesterday I spent almost 3 hours trying to sort an array of objects in java. I'm a person who has written a lot of python and dart code and java is just so daunting. Every simple thing is so complicated.
You can sort a list of objects wrt any parameter using a one liner in python.
Finally after copy pasting a lot of code from stack overflow the thing got sorted. And the worst part I don't even know how the thing works.4 -
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 -
I worked for 6 hours on my website and I have done just the header. I don't know if it's a good thing or a bad thing.2
-
Fun times with postscript:
I have two EPS files that are generated by a program.
In there there is the postscript describing the file (~6000 lines) and then the preview image as TIFF. Each ps and TIFF image on its own renders correctly and looks good.
Now the fun part: The ps in combination with one of the images works, with the other image it doesn't. Somehow the ps-renderer tries to interpret the TIFF-data, which yields nonsense and the renderer stops altogether. But only for one file not for the other. And it's definitely not the ps, because if I switch the preview images the other file doesn't work.1 -
I used to think that nothing could load faster than the "Thing With 'S' Logo" on a 4 gigs machine. But then Nadella's army updated their "Thing With Blue Logo" to the "Thing With Orange Logo". Plus the extra features, integrated source control, extensions and more.14
-
The "AH"-moment when as a boy discovered that with this instructions in QBasic I could literally let the thing do *anything*.
The "HA"-moment only little afterwards that I'll probably never have a clue what a worthwhile thing to make it do would be. -
The challenge of interesting side projects is that it's not just the thing. It's the thing then a whole-ass visualisation library. Or tooling for whatever stupid thing I want to do.
Also then I get bored and start on the next thing.9 -
The nice thing about being a developer? Learning something new every day. The worst thing about being a developer? Going back to the code you wrote before learning these new things.2
-
Sass.
I'm using the @use directive to avoid bundling the same thing a hundred thousand times.
Sass doesn't give a flying fuck and bundles the same thing a hundred thousand times
Why you must hurt me like this5 -
Thing<T>
Them: it's that thing<a>!
Me: actually it's this thing<b>.
Them: oh of course! Because of these reasons!
*Next day*
Me: it turned out it is was thing<b>
Them: oh so I was right! I knew it was thing<b>. I'm so smart you should listen to me more.
***********
Every day about anything. Why are people so annoying?3 -
Howe much your dev env takes ?
(Fair warning, I use VS with open solution and SQl acess and Azure managment and "quick c# thing to do a thing like copy subtitles".
I still think it's a lot.4 -
Is 'Ikea Programming' a thing?
If it isn't yet, we should make it a thing - for those people who call themselves "programmers" after copy-pasting a few lines of code from stack-overflow ( or elsewhere ) and gets it working.
And then claims, "It works right? Don't touch it."
I'm going to start using it already.
( but it wouldn't be any fun to call someone names over video conferencing. that's the fun of going to an 'office'. I guess I'm missing it now. )
PS : the long conversation screenshot is only for context, but the highlighted part should be sufficient to get what I'm talking about.question ikea programming copy-paste not programmers we should totally make it a thing copy-paste programmers3 -
I was at school the whole last week, and could work on my Ruby / React project the whole time, but now that I'm back to work, I forgot how to PHP 😅
-
Took me like an hour to finish the final assignment in a class where each project gets progressively harder. I was shocked, I was like “there’s no way it’s this easy. What did I do wrong”
Turns out the assignment I did was not even for marks, and the actual final assignment is completely different and MUCH more difficult.
Hug!!!!!!1 -
Am I the only one who hates that Slack has added a new `Drafts` section?
Like WHY TF? On one hand, I'm having some important work talk, and then I realize that I cannot see my boss's chat anymore and then I have to always look up and see the horrible Drafts section.
Although it is becoming second nature after a million times, I just don't like this feature at all.
IS THIS THE BEGINNING OF THE END?7 -
Are there any JavaScripts dev out there using Eclipse (excluding students who are being forced)?
Is this actually a thing in 2019?
I'm being asked to run a JS seminar with Eclipse as the IDE. I've not seen this used in a JS shop for ages. Are there significant pockets of use out there that I'm unaware of?3 -
Screw AIX! More importantly screw the IBM designer that though cache batteries were a good way to monitize their platform to help validate the service contracts. I guess it "works", but at what cost?
Just lost the last 4 business days going down this rabbit hole with a customer's server.
Edit: Quick note, yes, the customer is on track for a migration soon.8 -
I can make sales people's lives easier or harder based on how I prioritise tasks... They learn to use manners when they realise my power!
-
Freenom just removed one of my domains because "it was hosting ads". When I try to re-register it, they want me to pay for it. Is this a common practice of theirs?2
-
Swallowing a pufferfish is a terrible way to go out if you're a marine predator. The damn thing immediately inflates, blocking your throat. Its spikes dig into your flesh, preventing you from spitting the damn thing out. As you struggle, spikes inject venom, and you die.3
-
I thought the hardest thing in life is getting laid for me but it turns out the hardest thing in life for me is starting a startup2
-
Genuine 1 line function found in a production system:
private bool NotExists(int typeId) {
return !collection.Any(item => item.typeId == typeId) ? false : true;
}
I can't decide how many double negatives are involved here!1 -
Is "Designed / Developed by" in the footer of a website still a thing for Freelancer / Agency exposure?4
-
zuora you fucking asshats, don't attach a dropdown button beside a thing if it's a fucking search box
-
I'm working with this stupid ass framework that has a bunch of old style React class nonsense as examples (that's not actually that bad, but) ... AND worst of all every code example revolves around this convoluted thing where:
"How you do a thing."
"Make button, then you make a function that calls X, Y, Z and it opens the thing!"
But that's not the way you'd EVER do it because doing the thing inside the framework's components is COMPLETELY DIFFERENT!
I get wanting to dumb down documentation but this is dumbed down to pointlessness! -
My boss is a very smart man, but sometimes he's superstitious as hell. He cannot trust context.list.find() in c# to accept null values, despite that being a thing forever. He's certain that it will break in a future entity framework update, so we have all these duplicate if statements all over our site.
If(blah == null){ //stuff}
Thing thing = context.things.find(blah);
If(thing == null){//stuff}
It kills me a little each time, but I guess he could be worse. I'm glad that he's finally trusting the null conditional operator, because it's a fucking lifesaver for duplicate code!3 -
I'm seeing the rails intro by the creator and being honest, I'm not sure if all the abstraction is a really good thing or a really bad thing.1
-
@dfox must have known asking what the worst thing about being a dev is would get far more responses than asking what the best thing is.
-
Maybe, instead of making a cloth, I should just make tutorials teaching people how to code the duck? Also other things? Like the chat box I have(literally a box written in html and css), the rabbit thing, the cat thing, the avatar thing.
God I have so many useless projects I can showcase.3 -
I can't remember the results of this thing I'm writing well enough to know whether its a pointless thing to do.3
-
Generally dissapointed with the AC series the last few years but, I'm too hyped for Assassin's Creed Origins. It's a bad thing getting hyped, but I can't help it, damn it.
-
The only thing I really need from the library has protected access, so I had to fork all the thing and add it as a module just to change it to public
-
1. Only thing where correct logic doesn't backfire at you.
2. It is a wonderful thing where you get the satisfaction of solving something, organizing things and making things look beautiful all at once.
3. Its the only thing I know how to do to make money :p -
POCing a neural network thing.
Luckily it's a shallow network, but it's taking a frickin' eternity to train :( -
!dev
Seems like working in a start up is more tougher than i thought it will be.
Damn it's is taking a lot to keep up now a days.
Need advice to balance out thing.
Before this startup thing I was a freelance developer.1 -
This sounds like a logical thing to do. A project to rate news providers.
https://youtu.be/tYXpXdaX6vg