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 - "reference"
-
Me: 1 is something, 0 is nothing, NULL is the absence of things
JuniorDev: wut
Me: You've got pizza in a box, that's 1. If there's no pizza in the box, that's 0. If there's no pizza and no box, that's NULL.
JuniorDev: OOH so there's no object to reference if I ask for a slice!
Me: *small tear*
Always explain things in terms of pizza. Always.25 -
Got this today from my gf (only one part of birthday invitation card).
So cuuuuute 😍
English: "I'm 18, will I get something now?"18 -
Java and C were telling jokes. It was C's turn, so he writes something on the wall, points to it and says "Do you get the reference?" But Java didn't.
C gets all the chicks and Java doesn't? Because C doesn't treat them like objects.
But I think C could at least give Java some pointers8 -
There is no shame in using google to program.
'Back in the day' we had phonebook sized books of documentation on our desks we would reference constantly.
Why?
No one is going to memorize a phone book sized book. Not to mention three or four of them.
Being a good dev is about creativity, not memorization.12 -
I just spent 20m debugging.
Basically bootstrap nav wasn't working. Couldn't understand why not.
Figured out its a an issue with the JS interfering so I remove the script reference from my HTML. Problem solved.
Okay,cool. Now let's add that file back in and figure out what caused the issue.
Hm. This line looks like it might be it *comments it out*...odd. Problem still happens.
*proceed to comment out and test every function to see what could be causing this issue*. Still happens. Fuck it. *comments the entire file out*
what the fucking fuck. I remove the script reference the problem is gone. I remove all code from the script - problem persists.
...wait...are you fucking kidding me. I OPENED THE WRONG JS FILE WITH THE SAME NAME BUT IN A DIFFERNT DIRECTORY.6 -
My own language, hence my own parser.
Reinvented the regular expression before realizing it already existed (Google didn't exist at the time).
I'm a living reference for regular expressions since then.7 -
After some searching I found a solution on stackexchange.
The solution was a reference to a patch that I created a couple of years ago :)1 -
Me: "Ugh. Soo insensitive.." *angry muttering*
Curious cousin: "Whom? What? Why?"
Me: "My stupid Mac is not case sensitive so I have to mount a Unix partition and reference it from somewhere else. Why wouldn't they just make a case sensitive filesystem like a proper Unix based OS?"
Clearly uninterested cousin: "seriously?! You called your laptop insensitive? I thought you were talking about a guy" ..
Filthy casuals.6 -
Some days I feel like I work in a different universe.
Last night our alerting system sent out a dept. wide email regarding a high number of errors coming from the web site.
Email shows the number of errors and a summary of the error messages.
Ex. 60 errors
59 Object reference not set to an instance of an object
1 The remote server returned an unexpected response: (413) Request Entity Too Large
Web team responds to the email..
"Order processing team's service is returning a 413 error. I'll fill out a corrective action ticket in the morning to address that error in their service. "
Those tickets are taken pretty seriously by upper mgmt, so I thought someone on the order processing team would point out the 1 error vs. 59 (coming from the web team's code).
Two hours go by, nobody responds, so I decide to jump into something that was none of my business.
"Am I missing something? Can everyone see the 59 null reference exceptions? The 413 exception only occurred once. It was the null reference exceptions that triggered the alert. Looking back at the logs, the site has been bleeding null reference exceptions for hours. Not enough for an alert, but there appears to be a bug that needs to be looked into."
After a dept. managers meeting this morning:
MyBoss: "Whoa..you kicked the hornets nest with your response last night."
Me: "Good. What happened?"
<Dan dept VP, Jake web dept mgr>
MyBoss: "Dan asked Jake if they were going to fix the null reference exceptions and Jake got pissed. Said the null reference errors were caused by the 413 error."
Me: "How does he know that? They don't log any stack traces. I don't think those two systems don't even talk to one another."
<boss laughs>
MyBoss:"That's what Dan asked!..oh..then Jake started in on the alert thresholds were too low, and we need to look into fixing your alerting code."
Me: "What!? Good Lord, tell me you chimed in."
MyBoss: "Didn't have to. Dan starting laughing and said there better be a ticket submitted on their service within the next hour. Then Jake walked out of the meeting. Oh boy, he was pissed."
Me: "I don't understand how they operate over there. It's a different universe.
MyBoss: "Since the alert was for their system, nobody looked at the details. I know I didn't. If you didn't respond pointing out the real problem, they would have passed the buck to the other team and wasted hours chasing a non-existent problem. Now they have to take resources away from their main project and answer to the VP for the delay. I'm sure they are prefixing your name right now with 'that asshole'"
Me: "Not the first, won't be the last."2 -
Behold the PHP pyramid of doom!
You know what kind of code is coming... a big pile of shite! 😍
Obviously you have to return by reference (&) because of performance and memory reasons. ☝️🤓
Man... I've seen code...22 -
At new work, I am supposed to use Windows. So I need to learn how to Dev on Windows. Google is not helping.
Image for reference. And the list goes on...15 -
When you get so excited you burst out signing "🎶MY CODE IS ON FIRE🎶"(Alicia keys "this girl is on fire" reference) forgetting your in a room with your fellow developers.....
5 minutes later there still laughing3 -
You may know about my dumb CTO, if not, read here: https://devrant.io/rants/854361/...
Anyway, the dumbass emailed me this weekend asking “what is big data?”
So I replied: “...it’s when you use a large font in your code...”
He thanked me. I bet he will be at some presentation somewhere and will reference using large fonts in an IDE!!!10 -
Going through Master Card API docs to see how to integrate it, saw that they have sample code, checked Java sample code and found this:
String data = MessageFormat.format(
"'{'\"apiOperation\":{0},"
+ "\"sourceOfFunds\":'{'\"type\":{1},\"provided\":'{'\"card\":'{'\"numbe\":{2},"
+ "\"expiry\":'{'\"month\":{3}, \"year\":{4}'}',\"securityCode\":{5}'}}}',"
+ "\"order\":'{'\"reference\":{6}'}',"
+ "\"transaction\":'{'\"amount\":{7},\"currency\":{8},\"reference\":{9},\"targetTransactionId\":{10}'}'," + "\"customer\":'{'\"ipAddress\":{11}'}}'",
apiOperation,
sourceOfFundsType,
cardNumber,
cardExpiryMonth,
cardExpiryYear,
cardSecurityCode,
orderReference,
transactionAmount,
transactionCurrency,
transactionReference,
targetTransactionId,
customerIpAddress );
FOR FUCK SAKE what happened to JSONObject (for Android) class, I'm sure it is a waaaay better solution than that mess ...
And from Oracle:
JsonObject value = Json.createObjectBuilder()
.add("firstName", "John")
.add("lastName", "Smith")
.add("age", 25)
.build();
I guess that is a cleaner understandable solution than what master card has.8 -
Besides the fact that there would be an error handler, wouldn't it store a phone number as an object other than a computable number, like a string, cuz phone number is like a handler, a reference, and not something you'd ever perform arithmetic on?6
-
THE UNITY API IS SUCH A PILE OF UTTER FUCKING DOGSHIT I CANNOT BELIEVE IT
EVERY FUCKING TUTORIAL IS OUTDATED SINCE LIKE FOUR YEARS
THE FUCKING REFERENCE OFTEN DOESN'T EVEN LIST THE NEEDED ARGUMENTS SO HAVE TO GOOGLE AGAIN
"MOST FRIENDLY ENGINE" MY ASS
GRAAAAAHHHH
NOT TO FORGET THAT ALL EXPLAINING VIDEOS WERE MADE IN 2011 AND ALL VIDEOS ARE PLASTERED WITH ANNOTATIONS SINCE EVERYTHING IS DIFFERENT6 -
Just for reference in the post. I'm 24 years old.
Guy: How long have you been programming?
Me: I started when I was about 10, so about 14 years
Guy: are you one of the anonymous?
Me: ...15 -
I just noticed this in silicon valley season 2, during the porn transfer. Clever reference to 2g1c. 🤣2
-
!rant
Moved in with my SO. No not Stack Overflow. Anyway. The hardest part about it is choosing a good Wifi name. We acctually need two names.
Go.
Edit: the perfect name would have a Star Wars reference in it.33 -
Java and C
Java and C were telling jokes. It was C's turn, so he writes something on the wall, points to it and says "Do you get the reference?" But Java didn't.7 -
On Python,You create a gun module, a gun class, a foot module and a foot class. After realizing you can't point the gun at the foot, you pass a reference to the gun to a foot object. After the foot is blown up, the gun object remains alive for eternity, ready to shoot all future feet that may happen to appear.1
-
Just landed that devRant puts a source bar at the bottom of pictures downloaded from posts here. With both devRant and the poster being credited. You guys are amazing.5
-
If only there were some previous example of a mouse with a cord in a more convenient spot Apple could've used as a reference...
At least you don't need a mouse to commit, push and stare at devRant😅.4 -
Pass by reference, do not wrap needlessly
// Bad
takesCallback(function (data) {
// Literally all this function does
processData(data)
}
// Good
takesCallback(processData)
I see this all the time, especially with jr devs.8 -
TIL Android's SensorManager has a gravity constant defined for the Death Star!
https://developer.android.com/refer...4 -
My girlfriend always acts a bit weird and when I ask her (for fun) which drugs she takes she always answers "pixie-dust" (reference to her main in LoL: Lulu).
So we made an online shop for pixie-dust..
german: http://bambusource.de/feenstaub
english: http://bambusource.de/pixiedust
++ if you survived viewing this page without sunglasses16 -
> One of my guys from work.
> Walks up to my office
> Says "say something cursed about software development or programming that would make people cry"
> Me: "If I could I would program games and neural networks with PHP"
> Him: .......you fucking monster.
> Walks away
For reference: We both like php, but know and understand why that is a baaaaad idea.8 -
!student
Principles of Programming Languages teacher:
No one in industry uses git.
The same guy who refused to take semester project submissions as github links.
Also "Python is never pass by reference/id()"5 -
Not hacking per se, but I noticed an email floating between ISP and director about radius server login details, promptly saved for future reference.
One day noticed someone downloading mucho dataro... Pissed me off, interrupting my video stream.
Logged into radius server, blocked MAC address.1 -
PHP ist one of the languages I use regularly, but not the main language.
Anyhow, passing an array to a function will create a Copy of the array unless you specifically choose to Pass the reference.
That's seriously fucked up. What other language does that?! Coming from C, Java, Python to PHP I was not prepared to expect shit like that.21 -
Apparently yelling at someone "hey you! Yes you! You got water on the brain" is not as funny as I had hoped... Perhaps I should have checked if they were witcher fans before hand...7
-
Holy shit. I just watched a video on Rust and I think I am in love.
Tracked mutability, reference counting, guaranteed thread safety, all in a compiled type-safe language with the performance of C++? 😍
Why did I not check this out sooner??10 -
I hate it when I open bootstrap.com for reference and I remember that it's getbootstrap.com, as bootstrap.com is owned by random company5
-
Here nerds. Here are some Dev Books for free!
Http://Goalkicker.com - Has like 50 categories of developing Languages and tools notes. iOS pdf has 800 pages. Java has 900!
And if youre living under a rock, here's a github repo of 1,044 PDFS (last I checked) - https://github.com/tpn/pdfs
Go learn something!4 -
Coding lessons 101, it shouldn't be that fucking hard to understand what a pointer is but that's where we currently stand12
-
Anybody else physically write notes when studying a new programming language? I do it because it really helps solidify the information in my brain and also makes for good reference.8
-
Do you give your PC or Smartphone (or printer etc) a name?
Like: I called my Laptop "Momo" (Reference: Michael Ende, I never read nor watched it but I liked the drawing style)
And my Phone "Ori" (Reference: Ori & the blind Forest, I never played it, only saw a some gameplay)20 -
When you're feeling extra 'peechy' debugging coworker's crap.. I mean code..
Bonus: Anyone get's the reference?? Might have spelled it wrong.. But fuckit! I no longer care.. :\3 -
Girl: you should download the bible.
Me: *Runs into the Vim Quick Reference app and downloads it instead*1 -
You thought real fear is deploying to production friday afternoon?
Hah nope.
Real fear is forgetting to flock(); a public toilet door while doing a dump();1 -
Comment of the week! I'm so sad he didn't catch the reference, but if the guy offers to teach him I'm down to learn 😂
On another note I can't blame him, I probably would have run npm -i gamma 😅7 -
Idk if anyone outside of the US knows who Dr. Phil is, but for those who do, he recently did a concert on one of the late night shows. Linked for reference:
https://youtu.be/7uUjVW6NytQ4 -
My supervisor tells me to prefer the official documentation over stack overflow for reference. Fuck him11
-
Apparently, HERE Maps supports transport via spaceship 😲
I don’t know if this is a joke or not but it’s in the API documentation:
https://developer.here.com/document...5 -
!rant
I just wanted to share my excitement! I'm going to start my first job in tech in about a week! I am going to be a QA Scripter and I'm only nineteen! Please find this attached gif with great humor in reference to how I feel right now3 -
I was tasked by a client to build a blogging / News website.
Client's first request: remove any reference of a publish date from the blogs, it ages our content.3 -
Was accused of plagiarism because I could write a bubble sort algorithm without a reference (and therefore without a source) in my SECOND year of courses.
Their low expectations bit them in the ass when the admin. made all undergrads take a basic test (for loop going through an array, average of values, etc) and lots of people in their third year failed.7 -
Chasing down reference errors in Visual Studio for 20 minutes only to find out it just needed to be restarted.
The error messages lie!1 -
I can’t remember shit
My code editor helps me a ton!!
I have most documentation offline.
Ask me to do shit in a job interview without Google or any reference material then the joke is on 🤡2 -
Bjarne Stroustrup is someone I enjoy reading about, is still alive, is relatable, has done something significant, has healthy introspection, and his quotes look like shit people post on devrant:
https://en.wikiquote.org/wiki/...
He also knows how to write a language reference that is fun to read. Who does that shit?1 -
I have an interview tomorrow, but I kinda feel like a dick about it.
A former coworker asked for a reference for a job and told me about the position.. I agreed, and a recruiter dealing with them calls to get it. While on the call I leave them a brief blurb about my skillset and we agree that I'll keep his details on file just in case (I wasn't looking to move on, but I do like to keep in touch with recruiters who don't seem to be a pita)
A month goes by and my position is suddenly ending soon, so I call him and ask if there is anything new.. no, but.. the same employer I gave a reference for would like to talk with me about that same position.
I'd never have heard about the job without my former coworker asking for a reference, but on the other hand, if they are still looking after a month, surely my former coworker wasn't really still in the running, right?
Anyway.. awkward conversation ahead should I get the job.
Also, wish me luck 😁7 -
I swear I NEVER hated PHP before, but after seeing this shit, I just can't love it anymore, I feel betrayed
I mean, WTF? Just bc I'm using the variable as a reference in the NEXT loop the LAST element changes? What even is the fucking reason?
Yeah, I read the answer on StackOverflow, but seriously...
SO ref: https://stackoverflow.com/questions...12 -
My favorite command of day is 😂
rm -rf {foo}/{bar}
Reference if you don't know what happened today:
http://independent.co.uk/life-style...2 -
I just compiled a color palette for devRant-related drawings that anyone can import into GIMP and Inkscape. Already successfully using it for graphics promoting dR Community Matrix (more on that later), hence the name: "drcm-palette".
🎨 https://github.com/drcmatrix/...
For reference I used colors produced by "Tailwind CSS 10-color Palette Generator": https://tailwind.simeongriggs.dev/19 -
Our instructor for game development claims that variable names are not important if your scope is small.
Thoughts?
Here is a picture of his code he gave us as a reference the other day.19 -
Pro tip: how to reply to more than one person
1) click reply
2) close the reply by pressing the x button in the upper left hand corner.
3) click reply button of another person. Their name should now be added
4) Reference a Null Pointer
5) Profit?14 -
LoL, why do we even have job reference contacts? So your previous manager can tell your new potential employer how much you sucked?
It's all so pointless..12 -
note: it is already dec. 23 in here
testers and another integration team are working for an urgent deliverable.
they just called, asking if i can come to the office and complete my code so they can use it as a basis/reference to theirs.
wtf1 -
To all the developers with a permanent job:
Do you guys still reference the web when working on a project or you know everything and code everything perfectly w/o help?
Just wanted to know if I need more practice with my skills or am I good to go.12 -
Digital Forensics !
a whole new world ...
Got the course from packt.
Any other awesome references for that ?10 -
So excited about this beast... wish I had a model f... but this will suffice for now.. definitely going to start collecting older stuff. As an embedded software engineer working on AI projects and such give you a good reference point of what was possible in the day with less13
-
Just looking at the basic syntax of Kotlin gives me half a chubby. hahaha
It is just so damn simple and sexy!
https://kotlinlang.org/docs/...2 -
Java and C were telling jokes. It was C's turn, so he writes something on the wall, points to it and says "Do you get the reference?" But Java didn't.7
-
At work I inherited some databases, were most of the tablecolumns are all varchar. No ID's, and everything is in one table. No relation tables no reference data. Because "we don't trust the users who fill the tables to understand relationships". And.. wtf.4
-
I'm doing a tiny project in c++ to teach myself, its infuriating. Forgot the pass-by-reference ampersand and spent a full hour trying to figure out why the program took so long...3
-
We are 4 students doing a project for a company during our internship. Talked to the boss yesterday: "This will be great guys! I've already spoken to the management about using this project as reference for other upcoming project!" No. Pressure. At. All.1
-
Heya devRant people, I haven't been here for a while so I think I may have lost the touch with my rants. But no matter.
Ok, here I go.....
FUCK NUGET AND FUCK VISUAL STUDIO, THE FACT THAT IT KEEPS REDIRECTING A REFERENCE TO THE FUCKING AZURE SDK IS PISSING ME OFF. EVEN MORE SO THAT WHEN I RENAME THE FUCKING .DLL ON THE AZURE SDK SO IT DOESN'T REFERENCE IT, IT JUST DOeS NOT FUCKING RECOGNIZE ANY FUCKING .DLL I POINT IT TO, EVEN IF THE PATH IS CORRECT.
FIX YOUR SHIT MICROSOFT.
(Sorry for caps, I'm just really frustrated.) -
Fuck c++
Everytime I have to use this fucking language it spits up some other bullshit error
`cannot convert std::vector<int>() to std::vector<int>&`
WHY THE FUCK ARE STACK ALLOCATED VALUES EVEN THEIR OWN TYPES
AND WHY CANT I TAKE A GOD DAMN REFERENCE TO IT
JUST WHYYYYY29 -
3 weeks.
Am I just stupid? It took me 3 whole weeks to finally come to the realisation today that the Elasticsearch "guide" and Elasticsearch "reference" were different, with different version numbers. I've been ignoring Google search results that say Elasticsearch 2.x for WEEKS and wondering why I couldn't find a solution to simple problems.
Turns out, the current Elasticsearch "guide" is on version 2.x while Elasticsearch itself is on version 6.x.
They even have almost identical URLs that go ../guide/../reference and ../guide/../guide.
WHY? Why would you do that? Am I just stupid? Am I still getting it wrong? What the heck is up with Elasticsearch documentation? -
Last couple of days as a dev at this job. I'm polishing up my documentation and making sure my reference guides are up-to-date. All the while knowing that my documentation, tools, and tests will likely never be touched. They'll sit on a share drive somewhere, like ancient tomes, while the next devs re-invent the wheel. So it goes.1
-
Passing variables by reference in nested functions using PHP.
If you miss an ampersand your afternoon is very long.
😝😝😝😝😝4 -
(I am talking about my school’s promotional project, look at my rants for reference)
Deadlines were insane and I had nothing to do about it. Had to touch JavaScript for the first time in 3 years and code like I still know it by heart.
In short: H.E.L.L. It stands for:
H oh
E god
L never
L again6 -
Client: There was an order issue... please look into it.
Me: Okay, whats the order reference id.
Client: I accidently deleted the order. Please check your system logs. It was a 20 pound order.
😠
Me (4 hours later): It was a 18 pound order with free shipping... and it failed cause they never finished the 3D secure.
😑 -
Have been working as a freelancer since i was 14 with a lot of projects parallel to school. Just graduated high school and got my first job as a software developer only by using reference to freelance projects.
I'm so excited!6 -
I just watched "Venom" in 3D.
That was awesome. I also loved the "Parasite" manga and anime reference. Plus, they made the labours and weapons of the aliens look like those from the game "Prototype" 1 and 2.
Would really watch the future movies of Venom and recommend everyone who did not watch this movie to watch it. It is a masterpiece.4 -
For everyone, who uses any IntelliJ based IDE: Ctrl + Click on a method or variable, you will see all uses of that var or method. If you are clicking a usage of it you will jump to the method reference, even from libraries or for example from the Java runtime library.3
-
Today I had an, argument with my C# teacher because he believes that reference types are passed by value
I posted a link on Facebook to MSDNs page about it, but somehow some guy in my class still argued for it being pass by value. The reason he says so is because the value is the reference, even though it's quite literally a reference.
It's a reference to a variable rather than, a value.
Kindly
Fuck
Off12 -
Hello everyone.
So, i am thinking about where to get lists of programming languages, frameworks and softwares that is fundamental. For example:
If i would like to develop a web site. I would use html, css, js & php. Maybe a site or frameworks for reference and 'roadmap'. I want to become a good programmer.6 -
Man, I love how G++ (and every other Gnu tool for that matter) makes 0 effort to understand what you fucked up, and they only tell you where they got stuck. What am I supposed to do with this error that doesn't contain a single reference to my project?7
-
One that you can discuss those minor bugs with and really Bond with.
Old but Golden dvd in the background for size reference3 -
Spent almost two days debugging the hell out of an interrupt handler only to find out that my reference code (official example from the vendor) has some wrong function calls damn it.3
-
Unbelievable !!! In reference to this: https://devrant.com/rants/2131796/...
The process that was killing performance was, Watchman! I don't even understand I don't have any node stuff running why is watchman starting on system boot ... it was taking sweet 512MB of RAM
Everything now runs smoothly ...3 -
NullPointerException: Object reference not set to an instance of an object.....ummm what was null?
How much longer must we wait for a language that tells you the variable name that was null?2 -
!rant
Just learned a new thing today. This was on the Gophers Slack Channel
Every problem in software development can be solved with another layer of abstraction
Corollary: for every layer of abstraction, you create n! more problems.
Reference: https://gophers.slack.com/archives/... -
i's reading about Munchausen syndrome.
( https://en.m.wikipedia.org/wiki/... )
So what if someone tries to feign Munchausen syndrome itself?6 -
I fucking hate shit/incomplete code tutorials, especially ones that reference old/unmanaged libraries. Fucking waste of time!!!!9
-
My team lead had a history of being vindictive. After 1 engineer left she talked a lot of shit on him. After another left (who was extremely well liked), she surprisingly talked a lot of shit on her.
Well I put in my resignation and reached out to personally thank her for the years of working together. I said she could use me as a reference any time. She did not reciprocate. In fact, her entire demeanor was cold and confrontational.
No idea why I thought I would be any different, she's just a shitty person.3 -
As a filesystem admin I've taken up making every file I create named using some Archer reference, please send ideas.6
-
client: i want u to build me this site and please disable javascript on it
me: thats not a very good practice but whatever
client: Remember... No Javascript...
...
i smiled because it took me 10 seconds to get the reference1 -
Q: "Babe, what's wrong?"
Women: "Nothing, its just fine"
Compilers: "Object reference not set to an instance of an object"6 -
I like Scala, but the docs suck.
The FAQ literally uses StackOverflow links as answers.
Not as references, where they write the complete answer and provide the link for reference or credits.
They actually just throw in the links.1 -
Our parents keep reminding us about the time change that happens every half a year. To remember that the clocks need to be adjusted. And we, the children, keep reminding them, that most devices are already connected to the internet and use the time servers for reference. Which surprises our parents every time. 🙃18
-
apple you fucking donkeys you don't even have the specs for iPhone 14 up yet
https://developer.apple.com/library...
you're only what, the highest market cap company in the world?!!?!?2 -
I once had a user email the help desk, explaining in a rather twisted and confusing way his issue. He signed the end of it with "shibboleet" (xkcd reference). I called him, because there was no way I'd be able to go over it through email, and for nearly an hour we totally nerded out over it together, working through it. At the end of our conversation, he said he couldn't believe the shibboleet thing was real! I confessed that I was first level and he'd happened to have asked about a thing that was of personal interest and hobby of mine... and catching the reference was the icing, that I wanted to play along.
-
Maybe a stupid question but I can't seem to google the right words.
In Linux, how do I reference the same device (disk) through reboots? Like, there's no guarantee that /dev/sda1 will be the same device twice, right?
Like, if I have three or four disks and I want one for "backups", how do I choose that disk *every time*?4 -
Every assignment is done by reference in JavaScript... like why? Lemme use a pointer when I need it.
ES2016 looks so much like Java, I swear nobody will notice if they added pointers... and over 9000 more confusing features.12 -
Student: Hey will you be a reference for me?
Me: Of course!
HR: Hello, Student says you are a reference for them. Please fill out this form.
Form: 20 long answer questions.
Sometimes I regret my decisions. I am a perfectionist, so this form will take me an hour to fill out haha. This is definitely a reason why I don't say yes to every student who asks for a reference, and only those who actually make me remember them.2 -
So... the "boss" was getting really annoying asking for nonsense with a shitty attitude and for some stupid reason i said "I'm Mr. Meeseeks. Look at me!". The reference didn't click, but the insult was there.
That's a way to fuck things up. -
Github's issue reference menu can't even fit all of the duplicate issues for the one you just opened, you twat.
Stop wasting my time.1 -
That feeling when you're coding around your less computer literate friends and someone makes a Matrix reference for the millionth time. #howfuckingoriginal
-
When another "front-end developer" appends the entire bootstrap CSS file to your templates because it needs to align two elements. To templates that never included any css framework cuz i hate them... Then he asked me for help because it did not work... I fixed an invalid CSS file reference.
FUCK HIS LIFE8 -
Tested out parcel.js as webpack replacement and wasted 3 hours because of a missing sourcemap reference at the end of the bundled file. It was not parcels fault, but dear author of parcel-vue-plugin never again override one of parcels core file you fucker or i'll chop of your genitals with a rusty knife.2
-
Java and C were telling jokes. It was C's turn, so he writes something on the wall, points to it and says "Do you get the reference?" But Java didn't.11
-
What's a good programming tool for mac book pro?
I like sublime text but I want to get other people's comments, and reference.14 -
Twilio's API docs suck.
Why can't they just provide a simple API reference will all the endpoints and parameters instead of some hand-holding tutorial with a helper library.11 -
When you get that customer's customer who forgets what the email is about:
-customer's customer was complaining they couldn't see a thing on some website-
Me: "That reference number didn't work... can you give me another reference number or something that might help find the thing?"
Customer's Customer: "I'm sorry but you're going to be more specific, I can't help you without a reference number."
-It appears customer's customer thinks I'm asking them for help now... let's see if...-
Me: "Never mind, close ticket."
Customer's Customer: "Ok!"
-me closes ticket-
┐(´ー`)┌3 -
Anytime I see a reference to Elder Scrolls VI on reddit I do a "RemindMe! 5 years".
I also am predicting it will be absolute shit.9 -
After reading the script for the architect scene in Matrix Reloaded I was determined to use the word 'concordantly' in a sentence. I am proud to say I have succeeded, and with reference to cloud computing no less.1
-
I struggle with a single decision on a daily basis: do I leave copies of my work at my school for future students to reference, or do I let them struggle just like I did when I ventured down the path of programming?5
-
The code is under "GNU General public license as published by the Free Software Foundation, either version 3 or any later version" and I used it as a reference.
Should I redistribute the my new code under the same licence and make the source open? Should I make just the component open source or the entire app?2 -
I've done it! I've implemented a new feature. I call it, wheal. its just like the wheel you know and love, in every way, shape, and form. But now, you can take comfort in knowing the state of the art has surely progressed, every time you go to reference, "wheal". This has the added benefit that others who may already be familiar with wheels, will have no trouble at all coming to terms with wheals. Just please, do not make reference to wheels, or your software will not compile. And also be sure to annotate all instances of wheals *wheals are just like wheels!* until all devs have been on-boarded.1
-
TL;DR: work at the reference hospitals, we got precautions, no panic, we got this.
Well, currently my client is one of the reference hospitals in belgium in regards to coronavirus so they receive a lot of the infected patients. Although the general public is 'uneasy' to put it mildly, the IT department is not scared. We take our precautions, we already have safe working distances from each other. If the federal minister of health announces it, all non-medical or non-essential employees from the hospital will be either put on leave or work remote. Bottom line is: no panic. we got this! -
C# developers!
Anyone knows a good source to start reading about C# 7's syntax (not only "what's new")? Sometimes it feels like the language specific tools that I know are not enough.
P.S. Can't find it in msdn language reference or guide.
Please share.3 -
So it's a French one related to kind of comedy act.
Interviewer: What can you bring to the company?
Me: An apple?
Interviewer: What?
Me: I don't think I can fit with the company mindset. Bye.
And I leave the building.
For me it was Epic! I'm still not sure she understood the reference, but still Epic.9 -
I have been 'called' by a very unusual number. Seems to originate from Russia
For reference, don't call them back!
+79540118049
Now I'm in paranoid mode due to The whole pegasus affair where a simple phone call already infects your phone
Am I paranoid android?8 -
So if you’re planning on going to Antarctica sometime soon, well then don’t ,
Reference: earth.nulschool.net2 -
Why is it considered bad material design to use lateral motion transitions between views?
Reference: https://material.io/guidelines/...5 -
Fuck you Python! "It's global, unless you modify it. Then you have to use a keyword first." "It is passing reference by value." Asshole language that tries to be too flexible!2
-
Quick question...
Can you guys code without any reference?
I find very hard to memorize all the functions and etc...4 -
> Build project
> 13 Errors: Could not find reference
> Uninstall and reinstall NuGet package
> Build project
> 158 Errors: Could not find reference -
That feeling you have when you opened a file full of messy shit code and somewhere in there is a reference to another - more "shittier" - file.
-
Just finished my ticket i've been struggling on for 2 weeks. Extracting the rotation as a 3d Vector out of a composed 4x4 transformation matrix .
I barely knew that matrix format , barely knew how 3d transforms work anyway, without reference data to compare.
So proud on myself 💪🏻 -
As much as I enjoy working with Magento 2, (No really, I actually do) the amount of times I come across a bug that is reported on GitHub and labelled as 'Fixed in 2.2' or 'Fixed in 2.3' without any commit reference or backport to 2.1 is pretty infuriating. Upgrading to 2.2 would probably break many more things than it would fix, too.
-
I need a fucking crystal ball to know whether something is a reference or an object fuck angularjs
2 functions 100% same logic 1 returns a new object 1 returns a reference to the old one
Anyone knows where i can order one my expectations are that it lights up if the function will return a reference and stays daark if it returns a copy -
When gdb doesnt automatically deferences `this` but you just explicitly deference it at the start of every method:
Ps: the reference variable was literally called `dbug_mee_dawg`
Ps2: Java programmers will ***never*** understand this /s4 -
I'm studying Databases and I'm getting confused about Foreign Key.
A Foreign Key made reference to Primary Key of another table. But what's the point? Can't I simply use a value and select requested data where TableA value is equal to TableB value?
Sorry if I didn't explain it well, I'm so confused lmao6 -
Swift is such a horrible language now that I am actually using it. You have protocols that don't behave like interfaces, classes that aren't objects, structs that aren't passed by reference. And stupid counterintuitive generic grammer. I feel scammed.1
-
Ok, let's do the opposite (reference to a previous rant).
Should a frontend developer know about:
- Data structures and algorithms?
- User interface design patterns and usability?
- User experience heuristics?
- Accessibility?
- Design tools?
- How websites work on the browser after the frameworks have done their job?
- Data flow, and artifacts like user stories?13 -
I wish they would shorten the element reference method calls in js, it's just a tedious ordeal typing document.getElementByID() or getElementsByClassName() all the damn time.19
-
!rant
So I've been hearing a lot of fearmongers about general ai fucking the world up somewhere between 5 to 50 years from now.
Now, I'm no specialist, but last I checked, the smartest ai can't understand a reference that points to two sentences back or more.
What are the actual odds for a breakthrough in general ai? One that could replace mundane jobs.2 -
There's a device which is like a sensor that goes on your head that tracks your brainwaves and maps out how attentive/focussed you are during work hours, so that your employer can review it later.
It's like keystroke monitoring but on steroids.
The world is fucked.
Reference - https://youtu.be/tnZpBQQv3dg5 -
So i made an account on this education videos android app for checking their ui. Used the name "Han solo" and... they contacted me for buying their courses!
Geek reference vs marketing logics:
Tech people: 1
Marketing dept : 🤦🏻♂️3 -
something something the weed number is the date lololololol
MY NAME IS DRACULA
I'M HERE TO SMOKE THE VEED
(name the reference)1 -
object fucking reference fucking not set to an instance of a fucking object....WHYYYYYYYYYYYYYYYYYY!!!!!!!!!1
-
I’m juggling 3 reference books for a microprocessor course this semester. Have to study 8085 and 8086 microprocessors and interfacing them. Everything seems more interesting when exams are near I swear. I find this course genuinely interesting now9
-
Had a somewhat specific question about a new technology, searched up the answer on Stack Overflow, nothing there except my same question with an unhelpful answer.
Combed through the open source repository, found the answer, created a helpful answer on SO with reference to the source code I got the info from.
Got one upvote :)1 -
Put the meeting agenda in the meeting invite: after a few meetings of you referring to those notes in a condescending manner, people will get the hint that you want them to familiarize themselves with the agenda before the meeting. It also gives you a nice reference point if you ever get off topic.
-
Supposedly 2 years professional experiencd junior - console.log ("how do you like figure out what data is being passed In and what it looks like? is there some special tool you use when you are trying to get the types or correct nomenclature for the reference?") Me "I just log it to the console or use fiddler. " how do I do that?1
-
I hate when I just want to reference a camelCase variable or fileName.class in my .docx Word documentation and it actually bothers to try to correct me. Word is an application made by coders, I don't see why it can't figure out that I'm not wrong when I type ".toString()"2
-
How hard can it be to reference a file on a mounted windows network drive with UNC path to the java command? Seems like everyone uses the same env variable but always different syntax. Sometimes it's
-Dsmth=file://\\net.work.path\sub.xml, then it's -Dsmth=file:///\\net.work.path\\sub.xml, then
-Dsmth="file:///\\\\net...xml"
and none of them work?! 😤4 -
"it should just work" - one of my tech leads in reference to setting up eclipse for development
i dont want to use eclipse to begin with but its what the monolith we work on works well on, its so awful that it intellij cant necessarily handle it9 -
Well that was fun. I'm deleting duplicate files from a mysql table and S3. Accidentally removed the one I wanted to keep from S3 and don't have a reference to the old one because I give my S3 files super unique names to prevent duplication and naming hacks. Ugh.
-
the moment when you've removed a progressbar in the layout but not reference in the code..
and android studio says "No chamges to deploy"
fml..3 -
This code is huge ! THAT MEANS IT HAS HUGE BUGS !
FIX AND PATCH !
FIX AND PATCH YOUR BUGS !
Basically the reason I want to work on a big codebase one day is to be able to scream that
Winks if you get the reference (just so you know, I didn't read it fully)2 -
odoo keeps showing nameerror: name 'id' is not defined.
like bruh, 'id' is in default, the primary key of my fucking model. why the hell cant i reference it
fucking bug3 -
Hey developers, am I allowed to make use of the pass-by-reference feature of C/C++ during a coding interview( given I am using C/C++ as my main language )?
I basically used python in my interviews, but this time I decided to go with C/C++.
now,
for those who gonna say "WRONG CATEGORY": most of you check rant rather than questions.
for those who gonna say "BUT YOUR NAME SUGGEST THAT YOU HATE C": bloody educate yourself.11 -
So my boss wants this mssql reference table editor. Where you point it at references table containing mapping references and it will build a pretty gui for editing the table.... and they want it in like 3 days... so I now either hack something together which is so tightly coupled to the scheme of the table it will require redevelopment each time a new reference table needs adding to be edited or I don't deliver on time and give them a solution which will understand the schema and build the exit view dynamically... I'm starting to hate these stupid deadlines! And to top it all off they justify it with stuff like "it's just an edit view!?!?" Or recently on a basic form I created it was "why do you need to write c#? It's just a HTML form!?"2
-
Why THE FUCK would Array.fill(arr) use arr's REFERENCE?
I know it's the default behaviour on parameters but WHY WOULD YOU WANT THAT BEHAVIOUR IN THAT METHOD?3 -
As students, imagine if we had to reference StackOverflow every time we used it to solve our problems...3
-
Coffeemug at the cafeteria I worked on as a sidejob. Felt sad that noone there understood the reference.
-
1. Figure out what project needs it
2. Read a primer book (skim), mostly syntax and note the gotchas
3. Start coding
4. Read in detail as reference or Google... While coding -
Not many people will get this joke/reference.
I got {for i=1,8 do print(i .. ",") end} M's in my bank account, yeah
{for 1,5 do print("In my bank account, yeah\n") end}1 -
We were refining a tech debt issue about aligning the names and types of the same reference id on different response models. This is to not confuse our API users and make it more intuitive.
Discussion was wrapping up as we all agreed it was a no-brainer and pretty straight forward.
Then suddenly, one colleague goes: "But what's the benefit?"
Errrm...2 -
I was suprised when I open source of amazon lumberyard forum website and saw reference to another website in comment :D This is the way how it's do it right.
4th row
Link here: https://paulirish.com/2008/...1 -
So I found myself in a situation where I scored 50% on Turing test. How can I be sure that I am human?
For the reference:
https://newscientist.com/article/...16 -
When an internal wiki document you wrote for your personal reference not intended to be used as a guide, gets used as a guide.
Like I intentionally didn't write it well , with no details or explanations, it's what just happened to work for me, on my environment.
Who knows when and if this'll come back to bite us. Hopefully I don't get blamed. -
"Rust, the language that makes you feel like a memory astronaut navigating through a borrow-checker asteroid field. Lifetimes? It's more like love letters to the compiler. Safety first, even if it means writing a Ph.D. thesis to move a mutable reference around."2
-
I mean, seriously, people joke about this, but does a new version of angular get released every week or something? How is anyone supposed to keep up? Let alone find the right version of the documentation to reference?
I’m sure learning angular will be worth it in the end... maybe.2 -
Implemented a function to a Drupal syst3m to link to a reference page with preselected filters. After days of struggling I noticed that this function already exists. It already were implemented with one of our modules...
-
Would you like to share your story here about how has your life been as a self-taught full stack developer?
PS: You may answer it yourself or taking in reference of a friend. Doesn't matter.10 -
Anyone here from Europe????? :D
JK
I just need a good bank here, with benefits, shoot me some best ones, also shoot me reference shits so you and I will have money :)!
If you want me to have some sort of crypto thing only, don't worry to shoot that on me too. I work for crypto company.8 -
Been trying to scrap Microsoft's docs page for a while now for offline reference, but its been hell. Tried Httrack Copier, Internet Download Manager, Scrapbook e.t.c but it just doesn't do it well. I gave up two months ago. Was looking at the docs today again and saw a link at the bottom that says 'Download PDF'. I almost cried.1
-
Tempo has lost its reference to the issues on which I'm trying to log work. Used to press 'W' on an issue and that issue was automatically selected as "Issue key", but now I have to select it manually. A small problem I know, yet it annoys the crap out of me.
-
I'm starting to think about putting two of my interests together: chess and coding. Does anyone has some good reference on how to start getting into it? I'm looking in particular for good theoretical references. Thank you 😃3
-
ContractNotCompleteException.
Just found this on a contract.
19.1 Within this clause *Error! Reference source not found.* the following words shall have the following meanings: -
Is there anything like React Context or Unix envvars in any functional language?
Not global mutable state, but variables with a global identity that I can set to a value for the duration of a function call to influence the behavior of all deeply nested functions that reference the same variable without having to acknowledge them.13 -
I need to uninstall WSL from windows 10. And the Microsoft docs suggests that uninstall with 'lxrun' command then also in one of their reference pages it says that lxrun is deprecated for windows 10. tf4
-
!rant
Good week! First off to Nordic.js in Stockholm (thu-fri), then Red hot chili peppers live on saturday!
Javascript and Red hot, they both rocks!
Source reference:
http://jsrocks.org
https://rockhall.com/inductees/... -
I love deadlines.
I love the whooshing noise they make as they go by.
--- Douglas Adams
Work in the team goes
Whoosh whoosh whoosh
Whoosh whoosh whoosh
Work in the teams goes
whoosh whoosh whoosh
Although the sprint
-- me
Reference
Rhyme - wheels on the bus goes
Quote - https://goodreads.com/author/... -
If you’re having a bad day , always remember , Poseidon loves you..
Reference - kiss of Poseidon
https://urbandictionary.com/define....1 -
Python is an example of a language which is far, far too high-level for my liking; to provide a reference for my preference, C++ is one of my favourite languages, because it is versatile while remaining somewhat verbose, while Python tosses that verbosity out of the window while not functioning as one would expect it to function after reading a lot of the documentation.3
-
Since I have learned Java I was taught that Java only passes by value. But my Uni Professor discusses that Java is passed by reference for object and string. I am really confused right now and need some advice.15
-
So today I tried to code in c++ by separating class code into header and cpp file which I had not done before. Compiler was throwing error while compiling, "undefined reference to std::cout". Took me nearly an hour to figure out I was using gcc instead of g++.6
-
"Object reference not set to a reference of an object" is the single least helpful exception ever.
Also, I still hate Visual Studio. Sorry.9 -
i can't stop laughing at this poor guy and i feel really bad about it
(for reference, Gambatte is #2 in accuracy, 3DS VC runs games like VBA 2007 does (read: literally *barely*) and GameYob is about 16-17% more accurate than VC, so... 45% or so?)5 -
Me: I found the problem. The function call is being given a reference to an undefined variable as an argument. The quotes around that argument were accidentally omitted; it's supposed to be a string.
A "Senior" Developer: No, that wouldn't cause it break.
Me: 😐3 -
Remember fellow web developers, always use an empty object as the first argument with Object.assign(). Totally forgot that tidbit and caused myself a quite qvoidable yet well deserved headache 😳😢
-
10 years ago I remember adding a project reference to share code between some C# projects by right clicking and picking add reference. Took about 5 seconds. Here I am, 2021, and doing the same thing in Typescript is apparently a nightmare.
Every time I find something nice about nodejs, I find something else that pisses me off to no end.7 -
Oh look, the code points each script_extension matches when using Unicode property escapes in JavaScript regular expressions.
https://gist.github.com/AmyShackles...
Annnnnd apropos of nothing, I’m trying to learn Hungarian on the side for fun because I made a Hungarian friend. Forgot how hard language learning was!1 -
I am currently in a process of learning Domain Driven Development (DDD) and how to actually implement it. I'm honestly struggling to understand it. I feel it is very abstract. I'd truly appreciate any resource reference that I can use, especially how to actually implement DDD.4
-
Best documentation have probably been most language docs and references I've worked with, official or otherwise, especially C++. Completeness, consistency, tidiness and examples really help a lot, since I know I can rely on the docs for basically any problem and makes work so much easier since I'll be guaranteed to leave understanding what's up.
Worst documentation has got to be the internal docs we had to create for a seven-man uni project, you couldn't find shit in the sea of docs that were out of date or just plain wrong. It was so much easier to ask whoever was working on that part about the intricacies of the cobbled-together mess than to either read the code or the docs. One absolute mouthbreather was working on the database docs and put in that it stored ArrayLists. Fucking Java ArrayLists in a motherfucking database. One day I am going to rant so hard about this dumbass and it's gonna be a spectacle.
Bonus points goes to the company's public documentation at my internship. It was good and pretty complete, but sometimes there was a document from 2 years ago that had been written by a non-english speaker that was absolutely awful. Some of them were so bad that as soon as I'd finished learning what I needed to, my mentor told me to go and fix the docs, I don't blame him. -
every (cl)ass has reference of every other class and people are talking about modularity and encapsulation.#FML2
-
K, how to get started with HTML, CSS and JS basics? I want to get started right away and would like to have something like a reference tutorial, with short helpful code. Nothing like a course or something. Hope you can help me.3
-
Fuck you System dot fucking Value fucking tuple you stupid piece of shit reference. This garbage half the time won’t install properly on local, app works fine on local without it, then I fight with it for hours getting it to work on the server because the server is a different .NET environment. It’s always this one giving me problems, always.
So go fuck yourself System.ValueTuple -
"To help you debug your app or extension, when you've loaded it unpacked, there's no limit to how often the alarm can fire."
https://developer.chrome.com/docs/...
So there is no limit while developing - but stuff will start timing out in production...
Just one question:
Why does Google give their devs Crystal for free? -
ohhhhh I am pissseddddddddddd
itss the fucking pytorch.module class it would seem !
I do exactly the same goddamn shit as its supposed to do in a goddamn notebook and run it step by step and the fucking model trains and the output values change !!!! and the loss decreases !!
I do this in the goddamn class derived from model with a call to model.parameters() and the fucker fails !!!
why ???
why ?????
why ??????
is it cloning the goddamn parameters so the references aren't there ????
seems to work goddamn fine when i call a layer and activation function at a goddamn time chaining the calls one after another !!!!!!
UGHHHH IT LOOKS LIKE IF YOU DEFINE THE LOSS AND OPTIMIZER OUTSIDE THE FUCKING CLASS IN A SEPERATE TRAINING FUNCTION IT DOESN'T TRAIN !!!!!!
WHY ??
A REFERENCE IS A GODDAMN REFERENCE !!!! -
a) No documentation. At least you know from the start where you are.
b) Light documentation. At least you might have an API reference or something
c) Badly translated but complex documentation. Had this when I worked for a car manufacturer. Docs were badly translated and actually gave you a dangerously wrong or opposite description of what things really did. It was mental! -
Is there any Vue.js tutorial that show you step by step how to build a full aplication with database interaction?
We are building a page with inventory features in Vue.js and would be nice to have a reference.
So far all the tutorials and articles I've seen shows only the classic "app" with some limited features.2 -
When the missing reference error goes away when you delete the Target block lines in .csproj
Hogwarts stuff right here -
I just started a web dev course.
I definitely hate bootstrap, jquery-mobile and all their fucking classes.
Does it exist a good reference poster (or something else printable) with all these classes and what they do?3 -
On the office we have began to discuss which is best practice in a REST API when reference other objects.
Things like:
A)
```
{
"id": 1,
"field1": "value1",
"referenced": <id>
}
```
or
B)
```
{
"id": 1,
"field1": "value1",
"referenced": {
"id": <id>
}
}
```
I prefer B. What do you think?4 -
I believe Google assistant has a loooong way to go.
(the hand reference was from a previous part of the conversation based on "lamas with hats") -
😂😂😂 mfw redid all my logging statements today to change sentences into keyvalue pairs (for log querying) and the script broke due to an invalid parameter reference in one of the debug statements.
Causing more errors trying to prevent errors smh -
Lots of ppl cannot access internet since idk, an hour or two. I tried pinging 1.1.1.1 it works, turned on DNS and voila!
The fucking country's DNS connection is broken or something, idk.
When in doubt, https://1.1.1.1/
Dns settings for future reference: 1.1.1.1;1.1.1.23 -
Reading books. When you are used to focus on long texts, those sw related books are not scary anymore. I can finish reference material easily if it keeps my attention.
-
Fuck AIX, fuck you in your stupid face. I hope you choke on a mouse and die in computer hell.
Bonus points if you get the movie reference without google.1 -
Spent a week writing my own orm because I didn't think codesmith would work with my project. After it's finally done, a co-worker tells me I can just add a reference to the existing orm project solution and use that. Fml
-
Framework throwing null reference exception, support is in another timezone and the client needs a fix before close of business. Guess it's time to get out the decompiler.
-
Based on previous experience, I am planning to write a devbox script as and when I installed required softwares. I will mostly be working in Python and fedora already seems to have virtual envs and python3 built-in. Anyway can you guys suggest existing scripts for reference
-
I have completed my btech this year
And I have experience of 2 months
in 2 months I developed a project(whole backend) in java by this month i will complete this intern .
Can any one get me the reference.
ThankYou3 -
i have no idea what im doing
javascript, jsx, typescript, react have some of the ugliest and redundant syntax i have ever seen
what are people's favorite reference material for them
do people recommend the official documentation, was surprised react looked better than expected for its docs6 -
At the beginning of a master course at my university the students need to do a little task to ensure they know fundamentals about programming. 70% fails the test. They had no Internet access but a reference card for c, c++, Java & python. Is this really that hard?16
-
This invite to an ElasticSearch webinar is epic:
webinars/proven-architectural-patterns-for-mature-elastic-stack-deployments?ultron=reference-architecture-webinar&blade=invite&hulk=email -
I just wish I could determine what I want as a reference and what I want as a value in JavaScript. I hate not being able to determine it myself and be constrained by a spec while not having any other language to use (no I'm not gonna use webassembly for everything).6
-
If you gona reference a web.config key in your code, wrap it in a try/catch and throw a useful error, for fuck sake!
-
Is 'Add your 2 cents' a reference to anything because I see it as the placeholder for comments and don't understand what it means?3
-
We have a C++ for embedded systems training at work this week.
References are a good thing but after looking for the reason why one object has no reference to the other for half of an hour just to realise that my member wasn't a reference so that i got an copy gave me the urge to use pointers instead. But unfortunately we'd to use a reference in this simple exercise which cost me a lot of time because that damn reference.2 -
I could really do with HKT support in Rust right now. I need to somehow convert a
Marc<Task<Output = T>> into a
Task<Output = Marc<T>> where Marc is a Mappable Atomic Reference Counter from the mappable_rc crate. Nothing technically challenging in the whole operation, it's just not supported by the type system without those two types knowing about each other. -
Trying to learn some C# with graphical interface, thinking on doing pacman, snake, breakout or some other game but don't want to use an engine like unity.
Windows forms is windows exclusive so i was trying to learn something cross platform. Since i'm using linux and vscode, disk space 8s not a privilege i have access to... (lazy)
Any good reference/tutorials/advices on where to start?7 -
Oracle Java on Mac and JabRef are the reasons I have to move my reference library (> 1000 entries including 12GB of full text pdf files) to another reference manager.
Any suggestions?2 -
If we’re concerned about Big G tracking our location without our consent, I’m wondering why there’s actually less complains about SIM cards being trackable. They don’t even need an internet connection to get your location, and there’s no way to turn it off.
Reference to posts/rants/articles such as this: https://devrant.com/rants/1020761/... -
I’m having to justify why our QA team doesn’t actually point stories… anyone have a good reference?5
-
I have a dream that one day whenever you pass / assign / apppend an object you can choose to pass by value or reference, regardless of the object being a primitive or a container (list, vector etc.) object
So I could stop waste my time and bang my head to my desk over such dumb problems this shit induces because language designers found making list to be passed by reference fun
I know such behavior is inherited from C's logic, and I don't give a fuck about any further explanation I might already know. What can be explained doesn't mean that's logical.
You give the choice to pass by value or reference for every object the same way or you do not at all, but no mixed shit.
Just, shut up and make it happen.4 -
Hey guys I'm struggling with this error in django
django.db.migrations.exceptions.NodeNotFoundError: Migration recommendations.0001_initial dependencies reference nonexistent parent node
Can someone please help me1 -
The further away from the origin point of technology that is well documented byte by byte opcode reference and an external means of entering them onto a storage medium the easier it will be to steal delete and censor our work
On a lighter note
Stop pretending to preserve our creations when you fucking creatures make a chomo version of everything -
Does somebody have any experience with LXC/LXD containers on servers? I basicaly want all the services separated, but still have an easy way to manage the networking/routing for all the services and containers.
Any reference, guide or tool that helped you in master this subject?
Thank you in advance!4 -
I've spent two days of holiday to setup CircleCI. And I can't **believe** how hard they make such an essential service. I've uploaded 16 commits to Github just to fix the configuration. And what's the best part? It still doesn't work! The configuration reference is useless.
*looks at CircleCI*
Oh what's that? They're having a system slowdown? well, GOOD FOR ME... /s -
I recently went from being a java/python web developer to a PHP firmware developer. I've never written in PHP before and I keep typing $("# when I go to type a variable reference. jQuery has made this transition annoying to say the least =P1
-
Hello, I wanna how the tool for playing scrabble working for getting unique and perfect combination of words and letters.
Thanks
Reference:7 -
in 2023, swift still doesn't have a tracing GC, and they are still using reference counting to decide when to deallocate an instance, surprise! what's even worse is closures are everywhere and the default way to define a closure make it possible to keep a reference to variables in the parent scope.8
-
Holy shit Realm. This DB.... On Android it will crash if you access a reference to the db from a different thread than the one it was created from! 🤦♂️🤦♂️🤦♂️🤦♂️🤦♂️🤦♂️🤦♂️🤦♂️
Why oh why can't they just have their own internals managing all the fucking thread they need? There's a reason they provide sync and async db access.
This basically means that my reference to a realm instance should always be tightly paired with the corresponding thread reference so that I can run my db queries on it.
👎9 -
I looked up well-reputed NGO on Google. And then navigated to their Wikipedia page to learn more about them. And this is what I found—
“Sorry, this page was recently deleted (within the last 24 hours). The deletion, protection, and move log for the page are provided below for reference.”
Why was it deleted? fraudulent claims? Plagiarism?6 -
I'm in need of an opinion.
I'm in my final year at my university and have finished all my major subjects. Lately I have been having the feeling that I am under utilizing my ability and That I can do a lot more than what I'm doing in my life.
Just to put into perspective, I have one heck of a resume with senior job positions.
I've been considering leaving or taking a break from my university so that I can at least see where I am in life and to fully utilize my skills to see if I can build a better life than the one I'm currently. Honestly, I have no "Raggrets". I just feel like I can do better now and come back to uni to finish my degree in the coming years.
What would your take be? Would it be okay for me to quit? Since I have epic network and people know me by my skills, I don't believe finding a good job would be hard. And I already have a pretty decent job. I just don't know if I should take a break from university or not.4 -
Ok. As a tech reference tool
I'm hooked on chatgpt
You just have to double-check what it in outputs
Fuck you in people for shelving it over and over it's awesome3 -
why google???? I mean how hard for them to update a reference document. The reference of gmail api for python2 and python2 is in EOL. The first error I found for python3 is reported in 2015 on GitHub and now is 2019. I mean, seriously the bigB_Company don't have time to update their document. I scratched my head for an hour, what the fuck did goes wrong.
-
Networking guys:
Any advice for the CCNA exam? I've been through the cisco online courses and use them for reference. I know Todd Lammle's guides are pretty good too. Any extra texts/resources I should take a look at?
I feel my weak points are:
IPv6, NAT, ACL's, and Class A/B subnetting.5 -
Want to deploy laravel website on Amazon ec2 with nginx server... I did install php, laravel, mysql server & cloned repository. But can't migrate to database.... The error is connection refused.
Can anyone give reference for this? 🙏🙇13 -
Hello Everyone, I am learning PHP programming and I want to build a vegan based website like this https://gohealthyonline.com/ but I am confuse to make a home page the same as the above reference. Can anyone tell me, How to do it?8
-
DevOps fucks up. I search and send them docs for reference, to resolve issue. DevOps brushes it off, fucks up even more. Eventually comes back to docs, reads it and fixes it.
Lost 4 good hours, for which I already had productive plans. DevOps is putting the responsibility of checking whether they're setting it up correctly or not, on me, a dev. I hate this! -
Been using Linux since 99' and only just now discovered chown --reference can be used with . so you can fix janky folders in a jiffy.
-
Is antix Linux running some kind of custom build of grub?
It doesn't do a search and I see no reference to uuid in it's config so I'm kind of wandering how it's finding the image ?