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 - "significant"
-
There's no greater waste of time than laying in bed with your significant other and waiting on them to fall asleep so you can tip toe back to your computer in order to hit a deadline.
Literally my ritual every night.20 -
Me: Optimize a sort & match method in backend because users complain it's a bit slow.
Coworker: These algorithms are both O(n), so they're identical *closes PR*
Me: *start zoom call* "Heeeeeeeeeey Iiiiiiiiiii wouuuuuuuld liiiiiiiiike toooooo diiiiiisscuuuuus thaaaaaaaat puuuuuuulllll reeeeeequuuueeest yooooouuuuu cloooooossseeeed"
Coworker: "wtf are you doing, why are you talking so slow"
Me: "No matter whether I talk fast or slow, the information still reaches you in O(n) time, so why are you complaining"
I fucking hate it when people misunderstand the purpose of (or abuse) big O notation. It's an estimate of how an algorithm SCALES once the set increases in size, in which case you leave out both less significant terms and constant factors.
But those terms and factors are important when you're talking about the DIRECT PERFORMANCE of the algorithm on fixed-size sets, instead of SCALING to larger sets.
1n and 10n are both O(n), but 10x performance on a job that used to take 10 minutes is still significant.19 -
If I could represent my life using 32-bit signed integers, you would be -2,147,483,648 because you are the Most Significant Bit of my life ❤9
-
EDIT: devRant April Fools joke (2021)
-------------------------
Hey everyone,
@trogus and I are happy to make an exciting announcement. With the rapidly increasing success of NFTs, we've decided the devRant community shouldn't miss out on this compelling new paradigm for user-generated content. So, we will soon be offering all rants as NFTs at auction.
To kick things off, we're going to first be offering the first ever rant posted to devRant (https://devrant.com/rants/489/...) at auction for a starting price equivelent to $100,000 USD. We think this is a fair starting price for such a significant piece of devRant history, and we anticipate the final sale price to be significantly higher.
We look forward to hearing everyone's thoughts on this new direction for the devRant community, and we can't wait to see the Rant NFT market take off!
Sincerely,
@dfox & @trogus30 -
Interviewer: "Give me an example of a time you made a significant contribution to a particular community."
Me: "This one time I got a +6 on my devRant"9 -
Life lesson learned:
If your girlfriend asks you what SO means, it's "Significant Other",
NOT StackOverflow.7 -
WordPress needs no introduction, it powers a significant portion of the web while having some of the most nightmare inducing code i have seen in all my years as a developer.
Just look at the API, i mean what the actual fuck is that?
get_fucked();18 -
Other people when they read SO:
________________
( Significant other )
————————— o
º
º
Me when I read SO:
_______________
( Stack overflow )
———————— o
º
º9 -
Trying to explain to your spouse/significant other the great development you did at work today only to get the obligatory 10 second silence after you finish and a "Uh huh...that's great" head nod. Go me!2
-
if you were code, you wouldn't compile
I wouldn't catch you if you were the last exception in my code
your brain is so tiny, indexing it would make no significant performance gain
you are so embarrassing, I can only go out with you in SSL
if you were a pointer I'd move to java2 -
Most hated language features?
PL/SQL:
• it exists
XSLT:
• it also exists
PHP:
• it still exists.
VB:
• Significant parentheses: `subName` calls the subroutine, and `subName()` calls the subroutine and gets a return value. If you use the wrong invocation, it yells at you. Why!?
• For reasons unknown, you can only have `sleep` appear once per codebase. (So put it in a function!)
Ruby:
• It’s bloody easy to write code with absolute shit performance, and it kind of feels encouraged because of just how easy Ruby makes everything. Less critical thinking means worse performance, and Ruby’s blissful elegance encourages mental laziness.
• Minor: You cannot pass a hash as the first method parameter without enclosing it in parentheses, ex:`method({key: value})`. This is due to the ambiguous case between passing a hash argument and a (curly) block/proc (`method {|args| code}`). This could be remedied pretty easily with a little bit of look ahead.
• Minor: There is no `elsif` for `unless` (a negated if). Why? No reason given.
Python:
• no block endings, so nested code can be extremely difficult to follow.
Bash:
• The freaking syntax oh god why.
All languages:
• rand vs rand() vs Rand vs Rand() vs rnd vs RND vs random() vs random vs randInt() vs Math.random() vs Math.randInt() vs ...18 -
Going... going.... going.... gone!!
Stackoverflow is sold, now to sit back and await the profiteering that's bound to happen.
I quote:
Prosus has built a significant presence on the enterprise side with a focus on the future of workplace learning. Prosus will reach 90% of the Fortune 100 across its corporate learning companies including Stack Overflow, Skillsoft, Udemy and Codecademy.
https://prosus.com/news/...19 -
I’m back at devRant.
I was active few years back.
What made me comeback is me deciding to delete social media apps in my main phone.
The reason for deleting is that some topics/post/feed triggers a painful experience I had this year.
The painful experience is my wife cheated on me.
I’m not here for pity.
I just want to let the married ones know here that it’s not all about coding or work.
You should also try to keep the fire burning with your significant other.
Else someone comes by and will keep that fire lit.5 -
Rant Init...
That moment you write some magnificent code and everyone is sleeping so you can't share it with anyone but you feel like the room should turn into an exciting musical where you win an award. (Best code can ONLY be written between the hours of 12am and 6am)
The next day, you try to explain to your significant other (user) how amazing this new genius way of doing that "thing" was, in hopes of sharing your excitement but all you get is a "you're such a dork" instead.
You may even try to share it with a coworker or fellow programmer but somehow they just don't see how exciting it is for you.
Rant completed...7 -
> TeamLeader1: I just discovered SQL is actually super fast! The low responsiveness I've experienced comes from our ORM!
> IHateForALiving: well of course SQL is blazingly fast. SQL has been refined by the best engineers in the world for the past 50 years, its performances are unparalleled for everything you could possibly need, unless you want to scale REALLY big. Sequelize, instead, is an Active Record ORM, so it's bound to struggle with huge amount of data, because every single row will get attached a significant amount of black magic to make sure everything syncs correctly. Why is that?
> TeamLeader1: I have a problem with this frontend component, it doesn't allow pagination. I tried downloading the whole DB to bypass that, but the ORM is slow... so I will bypass the ORM and download the whole table with a raw query. Look at that! It works like a charm, it's super duper fast!'
This mf is downloading some 35 thousand rows every time some user loads a page because he doesn't know how to paginate the fucking table with Angular, there's no way these people are real.12 -
Microsoft are getting a lot of pats on the back today for open sourcing MS-DOS. It might have meant something before FreeDOS was so well established and mature, but now... really, who gives a shit? Even more significant, they already "open sourced" it before, just not hosted on GitHub.
Here's the thing. Going open source is like losing your virginity. You only get to do it once, you can't take it back, and you certainly can't claim to be doing it again just because you're using a different host.9 -
It has come to my attention that, I @C0D4 have become an addict.
This is something I thought I could fight. Resist the urge to become attached to my substance of choice in the early days and not have it compromise my every day life.
But how wrong I was, my addiction grew over time and my ability to resist the urge to peek at a ++ spam wall, or get back into a discussion at the mention of my name, read more of the great stories that remind us all, we are not alone and many of us are on a similar journey.
So, devRant my one true drug of choice, Today is a significant milestone on this path of corruption, my 1024th (1kib) day!
Here's to another 1024 days of snorting rant lines 🙌 🤤😎11 -
Falcon Heavy launch coming up!
I can't wait. That's something people should watch, fuck the superbowl!
I would say it's 60% as significant as the moon landing was, if not more; a field of technology we should really focus on, but governments rather spend money on stupid war
Make sure to tune in tomorrow, 18:30 / 06:30pm UTC, on SpaceX's YouTube channel
It's going to be spectacular, success or failure7 -
Since everyone seems to be talking about getting places late, here's my not-so-significant story about my most recent interview.
So I was told that GPS probably wouldn't work. But the instructions that I got were not specific enough to guide me - something I learned only once I arrived in the general area that I was supposed to be in.
Ended up going one street too far and talking to the wrong front desk. They kindly gave me instructions to get to my destination.
These instructions were also wrong. They left out one step and viola, I'm at the gate of the sheriff dog training facility.
Turn 'er around and finally get on the correct road. My 20 minutes early turned into 10 minutes late, just like that.
They were understanding and I got the job.5 -
1. Scripting out a team. I've built a collection of bash scripts to do what one of our teams does. Except the script does it in 30min and always does it well where that team used to take 4 to 10 hours and almost always missed something in the way.
2. Automate 70-80% of our BAU tasks with a single >4k loc bash script. Integrations with servicenow, lots of internal portals, predefined huge sets of commands to run on separate servers or lists of servers, do all sorts of diagnostics, schedule hw maintenance for DC folks, chase for approvals, track CHNG/CTSK tickets in a graphical chart so we would not miss any of them and lots lots more.
Finally we were able to afford time to make some coffee/tea.
These are the bau optimizations I'm proud of the most. And they have made significant impact on how our teams operate.
Whoever recognizes both company values in the tags and know what is that company - are they still using ´S´ in unix team? :)1 -
When you're newly assigned to one of the most FUCKED UP team in the department and your manager said that ALL LEAVE REQUESTS from your team are AUTOMATIC DISAPPROVED for March until i see significant progress, hayyyy...poker face. I really don't know what to feel right know.7
-
Several rants ago I promised to drop a bombshell about Android. What took me so long was my research.
I wanted to measure the extent of Google’s background data mining. I put Android at a significant disadvantage — it was Redmi 6, a device with a 5-year-old half-dead battery that was heavily used by my partner. The only change was me installing Lineage OS + microG — a private, degoogled combo that has no quality of life ramifications. Google Play Store opens, apps download. MicroG emulates Google Play Services — maps, banking and other Play Services-dependent apps work flawlessly. This made a huge difference.
Before degoogling, this phone lasted one day tops on standby. Now, with Wi-Fi connection enabled, apps auto-update working (one game I had installed auto-updated during the test), and no battery saver engaged, I was able to pull ELEVEN DAYS on full charge. Battery saver promised even more uptime, but I considered that cheating.
Modern phones have modern screens that drain battery quickly. Yet, they also have 4000+ mAh batteries. If your Android smartphone performs worse than mine in a test like this that doesn't use screen, kiss your privacy goodbye.24 -
Companies/Managers be like:
No, you cannot get a significant raise for being the best dev on the team. (EoY reviews from colleagues)
We would rather hire someone for more than you are asking for to do the same thing, then wait 3 months for them to become productive again.
So you can leave for some random position in another company that will pay more than you'd get here, even after the raise you've asked for.
Why?9 -
They shut down the project I was working for, Again!
Yes, I learned a lot
Yes, I felt important
Yes, it was something I am proud of
But damn...
For once, I want the things I do to see the light of day...9 -
> writing important email
> switches to another tab to check something
> switches back
Safari: "This page was using significant memory, so we reloaded it."
*knife emote*12 -
My coworker can't be bothered with learning git branching, so he comments out significant functionality during testing and then comments it back in before go-live. What could possibly go wrong?7
-
Probably Dennis Ritchie. Inventor of a timeless language and member of the Unix project at Bell. I think his work is significant and he lived his life, then died a good man.
-
I just watched The Social Network and I'm so depressed that I'm through quarter of my life and haven't done anything significant yet.....😭😭9
-
I spent the last 3 months trying to hire new developers for my team. I found someone experienced who is great and a graduate, who is, well, a graduate.
For some reason he thinks he knows everything about our framework he has never used and seems to think he knows how everything works in our codebase which he has never seen.
That’s fine. I’ve had my share of cocky developers.
But what confuses me is that when I ask him what critical bugs are left, he reels off two significant ones. I ask what it will take to fix it. Of course he says he knows how to fix it. So I say great. Then fix it and let’s move on to a more fun part of our project.
Suddenly he didn’t know where he problem was and so I told him he had to investigate and come back with something concrete.
It’s just frustrating managing this developer who is deceitful.10 -
Indian Product Management community is the shittiest community for any professional domain.
Everyone is just focused on being a guru preaching shit to others when they themselves no nothing about the function or possess any significant skill(s) to perform at their job.
A bunch of bozos, themselves struggling to stay afloat, are saving others. Fucking hilarious.
What makes this worse is that the entire community is so inclined towards "cracking the interview" and landing a job.
Instead what they should be focusing on is teaching them younglings what the role is and how to develop the right skill set. More importantly why the role exist in the first place.
That way, they will automatically land a good gig and solve critical user problems.
No wonder, most products these days are bloated with garbage and PMs are only focused on engagement, retention, and more fancy buzzwords which make absolutely no sense.8 -
Did you guys know that SO stands for 'Significant Other' on other social platforms?!???
Filthy muggles.11 -
FUCK YOU LENOVO AND FUCK YOUR CUSTOMER SERVICE
They "repaired" the hinge and it locked solid three days after I got it back.
My faithful companion has been reduced to such a terrible state :(
I had to remove the screen, there was significant stress on the panel.
...I guess I could make a server or something out of it?11 -
What the hell happened to devRant?
So we have this person who is digging up old posts, harassing people (@LotsOfCaffeine here, me as well, probably more) and some fucking how is getting 14 updoots while obviously being, or at least portraying themselves as a misogynistic hater of everyone and everything. What the actual hell is up with devRant? How are there FOURTEEN OTHER PELPLE who AGREE WITH THIS PERSON. How many active users are we here? I'm sure 14 users is a pretty significant percentage of the active user base.
People, I feel bad for this person. I've been a bit of a dick to them and so have many more, but what the hell happened to devRant, the place where you went to rant about stupid colleagues and bosses, share funny coding stories and other bulshittery? We're turning into fucking 4chan with politics, sexism and racism being the main story line here. I dont fucking get it. I'm on the brink of just leaving. I'm so fucking tired of this shit...35 -
Yepp.. The older you get, the faster the time flies by. Remember how long days used to be when you were 10? How much you used to do then? And now? You barely skim through your emails and it's already lunch time.. And soon after that it's already time to go home, go to sleep. And the next day is the same. Round robin, round robin... And when you think that the pooft-you're-gone moment is approaching faster and faster every year, you wonder what are you leaving behind, to remember you by.. A few dev projects that will drown to oblivion a few years after you're out, a few modules in other projects that will live longer but your code lines will soon be overwritten and forgotten in git's history, where noone ever scrolls to. Your own projects you have never released. Your fam who will remember you until their grandchildren - after that older generations are forgotten...
What is it that will keep people saying your name after you're gone? What significant have you given to the life?19 -
The CEO of my last workplace asked an employee for his credit card; withdraw significant amount of money as a debt and never paid back. He already owes 2+ months of salary to that employee.
(He owed me money too but I never gave my Macbook back. 🖕)14 -
Boss: We need to disable CSRF and any other form of security, because that shitty, insignificant client has a website that is abomination anyone's eyes, can't pay because of the iframe thingy.
Me: I'd advice against it. This is a significant security issue that just screams to be exploited and there has to be a solution, but idk much about this situation.
Boss: Idk we need to kiss every clients ass till they come. Remove all the security
Me: *Just wants to get home, last one in the office besides the boss* fine
*removes it, deploys and gets the fuck home*
...2 weeks later
Payment gateway: Yeah, we blocked your account, because someone was trying to purchase 30k product in a span of 1h
I'm not even mad about that, but rather about the fact I fucking called it.
* Achievement unlocked: Targeted by scammers
P.s. no major damages, cause the guys from the payment gate understand shit about security.3 -
I was working on a team with people with various employment statuses. Contractors, employees of the client, and me as a regular full time employee of the company that “owned” the contract. My HR manager gave us a presentation about our reporting structure. I had at least seven managers for different reasons across various projects.
I got a new position so needed to resign but I had no idea which managers were the ones I should notify. I looked at the org chart that the HR lady showed. I sent my resignation to five managers that would be affected by my leaving. Unknown to me my project manager was actually a contracting manager hired by the client. He let his employer, the client, know that the lead dev quit.
Apparently it destabilized the contract for my employer. If I hadn’t just issued resignation they would have fired me for telling a customer about a significant internal staffing change. They didn’t fire me because the optics would have been worse for them.2 -
🚨 PSA 🚨
It is not ok to be all over you significant other in a pretty intimate way when in public. Especially not the fucking bus stop. At 10 in the morning.
Fucking hell.24 -
Bad thing: I spilled booze on my fabrics yet again. I probably shouldn't drink from the couch or the bed anymore.
Good thing: I found out how to disassemble my tablet and removed its cameras.
Bad thing: front cam couldn't be removed without damaging some traces for a coax connection.
Bad thing: during disassembly I noticed significant amounts of corporate "fuck you" and certified enganeering. Like allowing the rubber back plates of the tablet to come off, but not get back on without percussive maintenance!!! FUCKING CERTIFIED PIECES OF SHIT!!!
Good thing: even after a lot of Tappy-tap-tap, the tablet still works without a problem. Hopefully I can now save some others from the shitstains by posting about it on the XDA thread 🤔
Overall verdict: FUCK!!!12 -
So salty. Just got off from a long day at work with my coworkers after a significant sprint, so we all go to karaoke to celebrate and let loose. But naturally I have to be under 21, and the karaoke place cards, so I end up taking an Uber home by myself, which felt really fucking embarrassing. I wish there were venues in the city that didn't require you to be above the magical number of 21 years of age to have a good time.5
-
Dragging my significant other to devrant is totally a good idea and I will hear nothing contrary to that. 😐9
-
Time I made a friend... oh due to code?
Well yea let’s solve the first part of this first 😢
Actually I met my significant other putting my self through tafe (you aussies will know) nearly 10 years ago so I guess that counts 😎2 -
The difference of 5 letters can be significant using "this" or "self" instead of "localhost" (added in /etc/hosts) looks much nicer and is faster to type.7
-
Who else has to hear the nagging from family members, significant others, friends etc... when you say your planning to get another laptop, desktop, or even a new monitor?
I swear I hear the nagging every week almost.6 -
An online community I've been part of for years has seen a lot of popularity/hate overnight due to a new policy. The influx of new people who want nothing to do with us but just drop by to troll and be cunts is impressive. Also, a significant amount of bots. I want my online home back :( I'm for the new policy and very much against these new clowns who don't really have any reason to be on our page. Before anyone yells gatekeeping, it's a site about knitting and crochet. Why would you go there if you don't know either craft and have no desire to learn or talk about those? So disappointed. I hope it brought new crafters in and that the trolls will go away soon. It's been such a nice place for so long with barely any idiots because it was reasonably small.. And now look at this mess. I logged in to 20 friend requests from people I don't know and am almost certain aren't real people.
Why is it so hard for humans to accept that some people may disagree with them and that's okay?16 -
Management: List your most significant achievement during this cycle.
Me: Developed and implemented a full stack of database micro containers that allow scalability and reusability. -
"One misstep from developers at Starbucks left exposed an API key that could be used by an attacker to access internal systems and manipulate the list of authorized users," according to the report of Bleeping Computer.
Vulnerability hunter Vinoth Kumar reported and later Starbucks responded it as "significant information disclosure" and qualified for a bug bounty. Along with identifying the GitHub repository and specifying the file hosting the API key, Kumar also provided proof-of-concept (PoC) code demonstrating what an attacker could do with the key. Apart from listing systems and users, adversaries could also take control of the Amazon Web Services (AWS) account, execute commands on systems and add or remove users with access to the internal systems.
The company paid Kumar a $4,000 bounty for the disclosure, which is the maximum reward for critical vulnerabilities.6 -
12 years in the industry. For significant part of that time, I've juggled leadership roles, project management, customer facing role, testing, hardware debugging, marketing .......
Oh, I also code.
My designation is still a software engineer.2 -
Hurricanes that start with the letter F can go fuck themselves.
Fran - 1996
Floyd - 1999
Florence - 2018
All 3 hit (well Florence hasn't hit yet, but it's fixing to) NC and did significant damage.
I wanted a few days off from classes, but not like this man. Fucking hell I hope it doesn't take the power out for too long or destroy anything important (like people).6 -
something kinda depressing about devrant is that, because of sexist bs, women have prime rant material, but this app is also full of sexist bs, so it ends up being kinda hostile towards a significant portion of the users233
-
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 -
Julia is a smelly pile of steaming shit.
https://discourse.julialang.org/t/...
Jesus fucking christ would you look at that pile of pure utter shit. The dumbfuck dev somehow managed to break WHILE loops for devs coming from python, and I speak for myself and probably others when I write most of us python developers are functionally braindead. If you can somehow fuck it up for python devs, a significant portion of the people you're trying to attract (owing by the syntax), then you should probably just go head and delete your whole git repo now.
Julia is a prime example of why you don't listen to your users on fucking github about the direction of language development.
What a bunch of fucking booger eating retards.33 -
Last year, my current manager promised me a significant salary increase if I transferred to his team. He said that's because his department has bigger budget. So I did.
Today I received a notification for a 5% salary increase. 😂
I am a dummy for trusting him. 🤡
There's a reason why a lot of my former colleagues are no longer in the company.
Never fully trust your company folks!3 -
Sony.
I don’t *hate* them, but I had really high hopes for Xperia smartphones back then, five years ago.
So I saved up and bought one. That’s what I got:
1. It was getting slower and slower
2. Micro usb broke just months after I got the smartphone
3. Sticky fragile screen with absolutely no oleophobic coating
4. NO UPDATES TO KITKAT AND LOLLIPOP! They just left us behind!
5. The main reason.
I catch moments with my camera. For me, camera is a vital feature, the most significant factor.
I once needed it really urgent and it just said “Camera is unavailable”. And that’s all. Camera is gone forever, broken. Factory reset haven’t fixed it.
You, alongside with Meizu, turned me away from android irreversibly and forever. When I heard about no update, I literally felt abused. Just like a girl whom random fuckboy made a proposal to, fucked and then left just months later.
With that level of customer support, basic respect to me as a user and buyer and that level of quality control, fuck you and your sloppy bricks you call smartphones. Maybe things are changing now, but I don’t care anymore and hardly ever will.
P.S. it heats up as hell, fucking pocket stoverant xperia abandonware android xperia tx hate abandoned wk130 android update customer support updates sony3 -
I'm on the fence about if the existence/mass production of shit like this is a good sign of a slightly more inclusive economy... or an early indicator of the apocalypse.
The circled part highly amused me.
It does give me s sense of peace and order due to it being sold by menards. They buy up bulk failures to launch and use their large audience to quickly dispose of them... so whoever had this stroke of 'genius', likely lost significant capital.73 -
2021 was really rough, saw friends going over the deep end with burnout, significant incidents to handle and a shitty manager to deal with.
It wasn't about blood and tears, it was about commuting 4 hours/day mid-pandemic to be present in the office and respond to an incident whilst having to deal with a bunch of heroes thinking they were part of a CSI: Cyber episode.
All of that just to be said that my raise "would be enough to keep me from looking elsewhere" as my manager said they were very happy with my performance.
This week I found out exactly how much this appreciation is worth: 2%. And I should consider myself lucky with this number as my performance wasn't good enough to grant me any raise whatsoever.
feelsreallybad.png4 -
Stackoverflow started 8 years ago.
Is there no hope for us "noobs" to ever see the 'k' at the end of our points?
All these 100K + users and i'm over here rejoicing in the 48 points that I was able to muster up with some effort T-T7 -
What's the longest lifetime of one of your applications where you did a significant portion of the implementation?
I just got a warning message out of the blue from one of mine. It was written in 2005/2006 several employers ago and still going strong!5 -
Laptop has died. This is probably a significant blocker to development...
Oh well time to buy a new one I guess!1 -
It's hard to find someone to have real intellectual debates with these days, many like foolish jokes more than serious discussions about topics ranging from CS, history, physics, astronomy, technology, anything significant...
Is it just me ?
Ignorance is spreading at supersonic speeds
Or am I expecting too much9 -
What do people think of LinkedIn?
I keep getting pointless messages about introductory level positions, integration consultant or sales stuff, all for salaries below my current by a significant margin.
Has anyone had anything useful?
The fact that the second suggested tag is "LinkedIn is shit" may have just answered my question...3 -
We have been given two Spanish exchange students for 10 weeks. We are a UK based creative agency, the minor issue being they don't speak a word of English, so there is a significant language barrier.
What would people recommend for a way to help them learn some basic languages e.g HTML, CSS etc.. with such a significant language barrier.
(Already tried Google translating everything)
With my strong Yorkshire accent, my Spanish doesn't come out too great 👌4 -
I noticed the main dogecoin repo was one star short of a significant milestone. Is it odd to feel honoured to be their 2000th?
-
Samsung has a bug in their galaxy software that essentially makes you unable to store anything that's not in the root folder on an additional sd card. After 2 years, they still have the bug. Additionally some phones will shit themselves if you try to format an sd card with it
How the fuck can they just leave significant bugs. The whole just get a new phone every other year mentality/industry style is both wasteful and seems to contribute to garbage software7 -
Damn, I really love programming. ❤️
It's way more uplifting and satisfactory than having a significant other.
Even my botched WP installs are more stable than most pseudo-longterm relationships nowadays.
Oh yeah and another thing:
How is it so extremely hard or even impossible for a lot of women to admit their own fucking wrongdoings to a close person?
Mind boggling.19 -
Merry Christmas to everyone celebrating it. I sincerely hope each of you has someone to cozy up this festive season. Remember and share all the good stories that happened this year, all the sores that hurt you back then but turned out well in the end. Share your plans, hopes and dreams to achieve next year.
Be it a friend, a family, a significant other or your neighbour. Cozy up and enjoy. After all this hard year you've all deserved it.
[don't try to trick yourself that you're better off alone. We both know it's not true]
After a long break I'm having a white Christmas this year. That and my kiddo stepping his first steps, apartment nearly done and a huge christmas tree in one of the rooms, and the fact that I've finaly 100% nailed my gift for my wife [never ever has this happened bfore! Can't wait to see her face in the morning :) ] -- I'm full of Christmas spirit this year!
I wish you all have a great holiday!1 -
Users running Linux on laptops with Intel processors should avoid Linux Kernel 5.19.12 due to an error that might physically harm the display. Fortunately, kernel 5.19.13 has already fixed the issue. Versions 6.0 and 6.1 have also begun rolling out with many significant changes.4
-
I just dealt with a 3 nested "if" statements in SQL. There is no indentation so I am quite frustrated since each "if" spans up to 2-30 lines.
I now understand why Python white space is significant3 -
More masturbation with numbers.
If you take some product p,
and do
√p**(1/p)
and it's factors
a**(1/p)
and
b**(1/p)
you might find something interesting.
Take for example
a=21977
b=43331
p=a*b=952285387
(√p)**(1/p) = 1.0000000108551363
a**(1/p) = 1.0000000104986928
b**(1/p) = 1.0000000112115799
More often then not, a, b, or both, will share one or two of the most significant digits in the mantissa, as the root of p.
It doesn't always work, but it seems to be true more often than you might expect.
This is probably obvious in hindsight but I still think it's cool.
In some instances if you then do, say
sqrt(log(p, 1.000000010)), it comes pretty close to the original factors, but thats really hit or miss.8 -
I just spent… a significant amount of time touching my face feeling the bone tissue within. Now I have the perfect depiction of my skull, and when I open my mouth, I can see the picture of my skull doing so. To me, a skull has its own, separate face. Quite disturbing, not gonna lie.
Remember: right now, inside you, there is a skeleton.10 -
Unpopular opinion: although Windows 10 improved in the years Windows 7 is still better: Windows Search on 10 is almost useless and the control panel and many “modernised” system utilities often glitches, the system looks cruder and takes way more system resources than 7 without giving significant features in return.
Newer is not always better.6 -
MICROMANAGEMENT
I got assigned a milestone we had delayed twice already. It needs to be ready for tomorrow, it's harsh but doable.
Guy from another team, looks at my folder system during the presentation, something like
"src/views/users/view-all/view-all.template.html" and starts whining "hurr durr this isn't good tho, you should have chosen a significant name, it's impossible to understand what this file does".
Honest thought: if you can't navigate through folders, you shouldn't be writing code in the first place.4 -
I love working on legacy products. You just need a good shower and possibly a therapist after.
- Sensitive data sent over the internet encrypted with DES (not even 3DES). Guess it doesn't matter that the key (singular, for the last decade) is basically 0123456789ABCDEF.
- Client databases with open default port, admin/admin superuser.
- Critical applications (potential for substantial property damage, maybe loss of life) with a single point of failure and without backup.
Suggestions, to slow down a bit with sales, so we have time to rewrite this steaming pile of crap are met with the excuse: be more pragmatist, this is standard industry practice.
Some of this shit can be fixed on my own time if my conscience nags too much, but others would require significant investment of time from multiple developers, which would slow down new business.
Guess the pay is ok, so that's something... -
SO is like my SO
Yells at me for asking stupid questions. Hates it when I don't Google first. Tells me I'm too vague. Shuts me up before I have the chance to ask.
At the end of the day I've accomplished nothing with my code.2 -
can we just get rid of floating points? or at least make it quite clear that they are almost certainly not to be used.
yes, they have some interesting properties that make them good for special tasks like raytracing and very special forms of math. but for most stuff, storing as much smaller increments and dividing at the end (ie. don't store money as 23.45. store as 2,345. the math is the same. implement display logic when showing it.) works for almost all tasks.
floating point math is broken! and most people who really, truely actually need it can explain why, which bits do what, and how to avoid rounding errors or why they are not significant to their task.
or better yet can we design a standard complex number system to handle repeating divisions and then it won't be an issue?
footnote: (I may not be perfectly accurate here. please correct if you know more)
much like 1/3 (0.3333333...) in base 10 repeats forever, that happens with 0.1 in base 2 because of how floats store things.
this, among other reasons, is why 0.1+0.2 returns 0.300000046 -
Okay then, ex-android user there.
It started with Xperia TX - it was flagship Sony phone back then. It blew my mind when I touched it for the first time. You know, exploring android for the first time in my life was amazing.
It ran just well for about a year. Then it started to fall apart. I need to clarify that I kept it non-rooted, full stock. I'm not into that customization things.
At first, I noticed significant lags. They were everywhere. The longer I used smartphone, the more lags I encountered. I did factory reset, but lags haven't gone anywhere.
Year 2. Front camera stopped working. Battery became unreliable as fuck, going down to 40% and then instantly to zero. What?
Year 3. Camera broke. It refused to start, just giving me "Camera is not available" error.
I tried factory reset again. It helped at first, but month have passed and all that issues came back. And it also became sluggish as fuck.
Got Meizu m3s year ago. The exact same story. Long story short, in one year I got this:
1. Black spots on every picture I take. Much likely a matrix issue.
2. Camera also became slow as fuck, requiring about 10 seconds to even start.
3. Vertical stripes all along the screen. I never dropped my phone, it just appeared once and became brighter and brighter every day I used the phone.
4. Two huge yellow spots on screen. I think it happened because phone's cpu heat up the screen and it broke.
But the most important thing is that fucking lags chased me in every app, they were everywhere. Fucking tiny-ass lags. And they're not going anywhere, they're become more and more significant with time.
Don't say me about oneplus, samsungs and other top android phones. They are conceptually the same, the only different thing is hardware.
That's why I switched. IPhone has its downsides, but it's silky smooth. And my friend's iPhone 4 (not s) feels just as smooth as my brand new se.
I'm not going to jailbreak it. I don't need customizing the hell out of it.
I just needed quick and reliable phone, and SE seems to be exactly what I wanted.
Peace to android folks tho✌️17 -
Trying to explain technology to your significant other becomes so hard at times. I had to explain buttons on a form and referred to a radio button, my girlfriend looked at me like I was crazy.2
-
Merry fucking new year.
I hope you find love in 2018. I see a lot of you wanting to find a significant other. Just know that out there are so many others that want the same. Just be ready to not only want love, but give it. Also, make sure your significant other also gives and is not like many just wanting to be loved.
And stay away from CSS. That shit's shitty shit.9 -
"One of the most significant differences between graphic designers and other visual artists is our unhinged love of typography." - Greg Breeding3
-
EVERY COMPANY IS STRAIGHT UP REJECTING OR GHOSTING AFTER GIVING A TAKE-HOME ASSIGNMENT.
I am just tired of this at this point. I have been unemployed for over two months now. I have been constantly applying to every opportunity that I see within my limits. I've also reduced my salary expectations by significant margins.
I'd have understood if I was getting rejected after the initial screening / technical interview. But I am not even getting there.19 -
Coding is not the solution to unemployment or gender inequality... This what the MF don't understand.... Until you create a better Sys and population is controlled and there is cultural evaluation. - you MF are just running a circus show.
Every MF want to jump into the bandwagon of cheap CSR - "hey we are empowering people by teaching people how to develop a website , aren't we good peopLE 😊"
Lol like programming is fucking open source, you don't need to teach people, anyone interested can learn it , and they are billion FREE RESOURCES out here for them to learn, so why not just fucking focus on doing something significant than clowning around "become a dev ".
Fuck havard, fuck Google fuck KMPG fuck the fucking dumb Government fuck youth empowerment📌4 -
So I was asked to do a card redesign A/B Test
The results came in
Redesign performs 20% worse
PM’s report says “no significant difference, redesign approved”
He just wanted his redesign to be published
smh, why trouble with A/B Test when results are known faster than during elections in North Korea1 -
How significant is PhD's impact on someone's career? What I heard its mostly for academic and research purposes, Would you consider studying PhD?4
-
Why does everything installed via npm sux so hard?
Why the fuck does any minor update in their bullshit packages either forces you to change config files:
E.g. now should be "@babel/core" instead of "babel-core" - WHAT A FUCKING SIGNIFICANT CHANGE!!! Rewrite all you configs motherfucker, that goddamn "@" in front of our shit is SO IMPORTANT that we will break everything to add it
Or breaks the code internally:
Consider the recent fail of fucking Terser [https://github.com/gatsbyjs/gatsby/...] that breaks fucking webpack and FORCE YOU TO ROLLBACK TO ANY VERSION THAT WORKS, why you nerd retards, can not run a simple dummy project BEFORE YOU RELEASE YOUR SHIT???!?!!?
Why any fucking update from *.*.1 to *.*.2 turns into hours of googling of what the fuck got broken this time??
The way that webpack, babel and other npm packages are released nowadays is absolutely retarded. I really have a strong feeling that it is better to keep old error-proof working config and NEVER UPDATE, than constantly suffer from butthurt
p.s.
Of course I am sorry for all the hate and caps in my post, and have respect for guys that develop amazing stuff for us for free, but I need to share this5 -
Ok a quick, short story time.
Might write longer one later.
Few months ago i asked my professor if i could do something to skip all those labs and lectures from "introduction to programming". He agreed, but i have to take tests as well and make a program showing that i can use all of C/C++ functions, syntax required by the subject. After few months I didnt managed to do ANY significant progress. That happens when i dont have any directions, i just get 10 000 000 ideas and 0 motivation to implement them (with that many ideas my mind becomes tangled as well). I can bet that im not the only guy who has a similar issue, but keep in mind my mental situation isnt that great; more about that in the next rant.3 -
The last one and only one I joined was online and called “flex bug squash”.
It was about ~8-9 years ago.
I won Flex Builder desktop software license and I was using it after so I think it was cool.
Fun, creative times it was.
That was also first and last significant thing I won and then Steve killed flash on mobile and as a result killed flash.
Thanks Steve if you’re reading this. -
I recently celebrated a rather significant birthday and it got me to thinking what's changed about me over the years.
Young me: Feared that I wasn't a supremely talented software developer and completely insecure about it.
Older me: I know I'm not a supremely talented software developer... and that's ok.1 -
Graphs and clustering changed my perception of the world. I caught myself thinking of random shit in clusters and edges, and now I realized I have been doing this for a while.
•I caught myself thinking the following a few minutes ago:
While taking a shower, for unexplained reasons, I started visualizing different groups of friend’s throughout my life and how their connection/relationship to its group (centroid AKA leader) had a significant influence on how each individual behaved. After doing this for five groups - I proceeded to label them in classes of behaviors and noticed why each friend behaved a certain way. Wtf right? 😂4 -
Small chaotic startup that never grew up (15 years atm).
Hosts/maintains a number of apps/sites for various customers.
At some point, someone decides that a CMS would be usefull to maintain the content across all products. Forgoing all sense, reason and the very notion of "additional maintenance and dev" it is decided that one should be built in-house.
Fast forward a number of years.
Ops performs routine maintenance on prod-servers. A java-patch accidently knocks out one of the pillars a 3rd party lib the CMS uses for storing images. CMS basically burst in to flames causing a.... significant incident.
Enter yours truly to fix the mess.
Spend a few days replacing the affected 3rd party lib. Run tests on CMS in test and staging environments. Apply java-patch. All seems fine.
When speaking to frontenders and app-devs, a significant hurdle present itself:
All test/staging instances of all websites/apps/etc ALL USE PRODUCTION CMS. Hardcoded. No way around.
There is -no- way to properly test and verify the functionality of any changes made to the home-brewed CMS.
My patch did indeed work in the end.
But did the company learn anything? Did they listen to my reasoning, pleading or even anguished screams for sanity?
No.6 -
i find comforting hearing good villain AI videogame dialogues.
for example, morpheus in deus ex.
one obvious reason is that the voice representation has an unrushed pace and low tone.
another more significant reason is that there are no emotions affecting the course of thought of an AI
because of that, villain AI characters can describe brutal but possibly actual aspects of humans without flinching.
as a developer or person, that is a commodity because you want to be as objective as possible.
if you had no feelings of self doubt, fear, laziness, shallowness, then you'd become an exceptional free man3 -
Take a day off, entire system goes down. Come in the next day: "We need to fix this".
12 hours later we get the system back up and a significant design flaw is now known which needs to be fixed on Monday.
It feels good to have the bandaid in place.
Don't use cursors kids, unless you absolutely have to.3 -
Never thought I'd be back here after all these years. But today I thought I would rant about our product owner, who thinks he's priceless to the project. The man walks out of meetings that don't go in his preferred direction. He gets flustered whenever discussions become technical and demands everyone ELI5 the entire thing to him. He clears his throat loudly every time he wants to make himself noticed, like loud grunts of a wild boar. He will find ways to shift blame away and onto others. He does not like being recorded during meetings and does his best to make sure his decisions don't have a paper trail in case they go sour. No paper trail also means he can contradict himself everyday ans get away with it. I wish there was a way to make him resign or switch to a different project. Other managers and even his bosses are already aware of his behavior and yet still no significant changes in his actions or behavior.
-
Fried two devices today by simply connecting them to a power source.
Changed nothing in the circuitry, no shorts due to solder residues (a simple modification was made), no changes in the input parameters. Check.
The afromentioned devices should have only minor HW changes compared to a previous version I'm working with and as far as I can see absolutely nothing which should cause the damn microcontroller to release smoke like a steam train. (All right, a very miniature steam train.)
So the only significant difference might be the firmware which I didn't check yet but will tomorrow. Not my code and the corresponding IDE just basically sucks. Yay.
On the other hand, the Software part finally feels like I'm getting somewhere. It seems just ... to work. Very suspicious.
Feeling ambivalently frustrated and relieved at the same time. Sigh.7 -
The time myself and a colleague got the chance to do a POC to port our iOS app into Swift using storyboards and more modern iOS features. We were able to replicate a significant portion of the existing app in a couple of days. Just wish we had gotten the chance to spend more time on it. We are currently still stuck using crapjective-c
-
Laravel, Symfony...
It doesn't seem to matter what framework I pick to learn next. I rarely get past the Installation step where I have to install and learn a bunch of command line tools first.
It makes me realize I no longer want to be a web developer as even the biggest step I can reasonably make in my career will still not result in an income change significant enough to pay for a mortgage, and the smallest step still expects me to understand all of these command line tools for seemingly no payoff whatsoever.
I feel stuck and depressed looking at all the toxic positivity on LinkedIn. I cannot fathom the amount of indoctrination that must be going on between all these people chirping about how great it is to work for their company.6 -
I find it hard to be retrospective of the last year, work has been at times good but stressful, others tedious and frustrating. This year was an improvement over the last but everything good that I try to write about has some elements of frustration. My social life has also been somewhat stifled as I'm working at a company in a small town with very few people my age. I don't know how long I'll continue to be here.
The best experience of the year I guess is having my idea be viewed as a significant improvement over an existing piece of intellectual property, even if someone else is trying their damndest to take credit for it.
The worst is other people's ego's getting in the way. I've had people be rude, dismissive and belittling. Then when I argue my case if I am shown to be right I get a "well you learn something new every day" if I'm lucky. -
Context: ive been porting a single threaded D.A.G scheduler into a lockless multithreaded one. Point is its an objectively complicated project where theres lots of overlap in the code and architectural boundaries are very fuzzy.
My boss: "Can you just make new branches for every 'large' change youve done. Its too hard to merge this one giant branch youve got"
Me: "Fuck bro, but this is 2 months worth of significant refactoring where the commits are not atomic and you told me way back then that it was cool to work in my own repo. Now ive got to go redo half my work"
Boss: "Well yea but isnt it so much better to work with clearly seperated histories"
Me: "yea its great if you tell me thats the workflow you want upfront. This is gonna suck but ill but my balls and dive into this pit of lava if u say." -
Unstableness of core technology stack. The more developers are there, the more complicated architecture they create that often doesn’t give any significant value besides what if something goes wrong ?
What if you make mistake ?
What if power goes down ?
I feel I am last optimistic thinking software developer on this planet.
I feel that those tools just try to give some sort of power to the management over developer free mind.
Creatures like multicloud, cloud, k8s I feel that it’s just beginning not the end of road. And this beginning is a wrong turn.
It’s just another vendor lock in.
But I might be wrong.3 -
Again with the fucking idiot recruiters...
Wasted several hours in interviews only to find a significant travel requirement that I can't do. Wouldn't have gone beyond the initial email because a fuckwad recruiter didn't think to ask all the questions recruiters should.
Are recruiters just 'developers' who didn't have the smarts to develop code and so settled for technical recruiting? They sure seem stupid sometimes5 -
Getting into the third hour of trying to run an android studio emulator on ryzen.
Significant progress is made though, now instead of not working and giving 9 errors, its still not working, but at least there are no more errors being reported... -
Due to non work related shit I'm struggling to focus, I can still wrap my head around programming (even if with significant struggle) but I cannot keep up with cloud/containers/microservices/cool new tech of the day2
-
I was thinking about switching to Dvorak but then I learned that there are no significant study that it really does improve typing speeds. I don't feel like switching for something with so little gain and I return people will look at me like i'm hermit hipster. I mean they're doing that already. I don't have friends. Pls send help4
-
The very last weekend of the year has arrived.
How has the year gone so far? Any significant memories that you want to share?
Maybe share a new year resolution as well.
Last Weekend: https://devrant.com/rants/1003927420 -
Interview today for potentially the most significant position of my junior career. Nervous as hell is an understatement. Been studying for days.2
-
I had two job offers, one paid twice as much. I took the lower paying one because it was exciting work where I expected to learn a lot. I was right on both counts.
Best or worst? Definitely the most significant. I'll let you judge which.3 -
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 -
If there's one thing I hate about devs is definitely when they get too emotional about the reviews they receive.
Doing a thorough review always takes significant amount of time and energy. It's about ensuring high quality of code, about functionality and best practices, ... It's also about learning: I learn from the changes being reviewed while at the same time I also try to teach the author as much as possible, giving down to earth opinions.
It's never (or at least should never be) about attacking the author. There really is no reason why someone would spend all this time getting overly personal.
I used to start my responses with (lousy) apologies for being "harsh", but stopped doing this now that my team understands all of this. It also helped asking them to do the same with my changes. The look in their eyes when they find something is simply invaluable :).1 -
Fucking hypocrite, tell me to create a review for fucking version changes, they create a review of significant build system changes, don't add all their changes to the review and merge it while it's being reviewed... And I'm super unhappy with their changes...
-
So I went into work yesterday on my day off right? (Mardi Gras) to finish up a pretty significant addition to our application. I only had 2 days to work on it before we were to show it off to potential buyers today, so I came in to get it to at least a working state that we can improve later...
Well, that wasn't good enough. First thing my boss said when he saw it was, "this isn't what we had talked about". No dip-shit, this is what you get when you have 1 programmer working on their holiday. Like, I know we talked about this massive content update, but we talked about LITERALLY LESS THAN A WEEK AGO. I really don't know what you expect, but I made it very clear that all I could get done was a prototype at best. Not to mention that this whole app is a hard-coded "fake-prototype" that was never supposed to make it this far.... -
It's sad how easy it is to fool people by switching between absolute and relative values.
3 million people did this, 3 million people own that, 3 million people agree on those things, it all seems significant - but 1% of US population sounds completely marginal and irrelevant...1 -
Is it just me or have you all be noticing a significant increase in the number of posts on devRant asking for simple technical assistance with code and packages?
I've always had the opinion that asking for personal advice here is fine but technical stuff should be kept for StackOverflow and other such forums. What is your opinion about that?2 -
I absolutely love how capitalism fell on its face when greed went far beyond anyone's imagination.
Corporate wants all the money to themselves and wants to give out as little to us peasants. Housing prices went beyond most people's reach. Banks almost never gives loans. Inflation and interest rates are up everywhere.
So now people are like "Alright I'll live in this rented flat and not have any kids" and now the birth rate is the lowest in the last 50 years and this is reducing the size of the talent pool for these companies.
I saw an interview of Elon Musk where he went like "We don't have an over-population problem, but its actually an under-population problem.", and this is the first thought that struck my head.
What rich people don't understand, is if they want to be rich and stay rich, a significant amount of people have to stay poor. And due to low birth rates, this isn't going to last long.17 -
I learned 2 significant things today:
1 - Waterboarding is not waterboarding if you use diesel.
2- People who park to close to your car on the driver side are actually just encouraging you to stick to your diet.9 -
The life of every individual, viewed as a whole and in general, and when only its most significant features are emphasized, is really a tragedy; but gone through in detail it has the character of a comedy.4
-
Well, first off I want to actually pass my college classes. You know, the classes I barely find interest in that seem to be very minimal in my coding skills.
Next, take up or join a project for the summer. You know, get my name out there.
Third, make money
Fourth, make something significant in the OSdev community. I absolutely love low-level dev. Now (to myself) Let's do this! -
It always amuses me when companies pay only "competitively", don't create a good working culture and then complain about high turnover. Money pays bills no matter what. Employees don't jump (easily) to other jobs when the pay isn't significant better. But if your culture is toxic, employees even take a paycut just to get out.2
-
Crypto:
What's your thoughts on Ethereum Name Service? Do you think this will take off?
ENS is basicly a decentralized DNS based on the Ethereum blockchain.
It seems like a significant piece of technology to me but I'm having a hard time to judge how significant or useful it will be and to whom.
https://ens.domains11 -
So I've been a professional software developer in variously named roles over the years since I was 18, now 35. I've had many ideas for my own projects over the years some great, some not so great, and as with most ideas, if you don't act on them, someone else will suddenly come up with it, which is frustrating as hell obviously. Anyway, I never find enough time to do these things in what little free time I have, so the idea of stopping working for someone else and work on my own stuff seems almost unobtainable. I've worked with companies (startups) that have had ideas that have never made anything significant but still keep going on investor money for some reason or another. I realise my question is quite vague, but how the fuck do you break away and do your own stuff? Time is running out (at least in my mind), anyone here actually done it, succeeded, failed?? Can't be writing other people's badly designed software my whole life, would be nice to design my own and see it through.10
-
I've been reading about quantum computing in finance and other applications (fascinating read, althought really dense), but one question now won't stop bugging me.
Context:
1) Blockchain applications are based on NP-Hard asymmetric cryptographic problems, and how hard it is to solve such problems in a really short time.
2) So called "Web3.0" is based mostly on Blockchain applications, but would still need significant advances in order to be practical.
3) Affordable and practical cloud-based quantum computing is not so far in the future, and could be used to crack most NP-Hard problems in short (polynomial) time.
Thus, my question: Is Web3.0 obsolete before it even begun?
I mean, if quantum computing takes on fast enough, it could snuff out Blockchain applications by giving those a shelf life so short it wouldn't be worth to delevolp for it. It would be like announcing the iPhone 14 and the 15 on the same breath, saying the 15 is only a quarter away - why would anyone bother with the born-obsolete tech?5 -
so some controversial opinions
Our company is moving most of our code style to snake_case, even the JavaScript. Here's our resoning:
Take the CustomerAccountMembership model. In our Python server, we would access it as obj.customer_account_membership, in JavaScript as obj.customerAccountMembership and our API endpoint as api/path/customer-account-membership. Thus we had several String utility functions such as `camelize`, `kebabChop` (which is ironically camelCased) and `snakeify`, and we would use them in translating from URL path to JS to Python, which was troublesome.
Now HTTP allows _underscores_ unescaped and do not pose any significant meaning. JavaScript also accepts it as a valid character in variable names. On the other hand, HTTP is strictly lower-cased, and all computer languages use the -dash- to signify subtraction. Sooo the _underscore_ is the only style that is compliant everywhere.
Unless, of course, we go with customeraccountmembership, which I refuse to do.
I'm not that deep into code character rules.
Opinions?7 -
I have been on crunch time for so long, with so many hours I don't even know what day of the week it is. I legitimately had to look it up. I also calculated my hourly rate for the last 3.5 weeks, and I was making the same as a grocery store bagger! Being salaried sucks in times like this. I am paid peanuts.
Last night I woke up every 30 minutes in a panic I was late to work. This job is killing me, and all because the sales team sold the product on an unrealistic deadline, for no money...
In addition, I am gaining weight, haven't seen my family for any significant period of time for ages, and Taco Bell knows me by name and order...
On that note, next Monday I am going to go into my boss' office, and demand like a 50%-75% raise! I am terrified! Haha
Migraines are fun though. THE PAIN PROVES I AM ALIVE!8 -
When white space isn't that significant.
disc=b*b-4*a*c;if(disc<0){
num_sol=0;}else{t0=-b/a;if(
disc==0){num_sol=1;sol0=t0/2
;}else{num_sol=2;t1=sqrt(disc/a;
sol0=(t0+t1)/2;sol1=(t0-t1)/2;}}2 -
I find it hilarious that sometimes when i create bug in our app nobody finds out. Even pretty significant bugs. Sometimes i wonder how is it possible. 😅4
-
It's the 5th day of my holiday, circa 10.20 AM. So far I've spent around 30h programming, and learned React (already having experience with the other 2 major ME*N stacks I decided it was time to give it a go), made a small 2D platformer with Unity and realised I really like writing unit tests. Maybe next I refactor the app I just made to use GraphQL and TypeScript next, since I'm in the mood of trying something new.
Funny how my significant other thought being on holiday actually would mean a break from programming - no, it means more time to spend learning and trying things you don't have the time or energy to after a working day of Vue/C#!
(To clarify, I would not spend this much time programming on my holiday, if my better half wasn't away from home for this week - won't probably spend nearly as much time on it for the remaining 4 weeks...)2 -
Let me just warn people that if you quit your job but they offer you to come back with a significant salary increase it's probably not the right answer.5
-
Fuck ticketing systems man.. jumped from a good job that i previously thought was going to be a deadend and jobhopped to a new one with a significant salary increase. Problem is that The stress levels increased 5x, and there’s significant rush to complete tasks that have sub optimal descriptions to put it nicely. The problem with that is that the lead doesn’t have enough time to properly write them and catching him during work hours for him to explain them is sometimes impossible. Sitting in limbo with 4-5 tickets open, all of them with high priority and stresing the fuck out.7
-
How to Recover Lost Crypto Funds from Fake Online Brokers - Contact OMEGA CRYPTO RECOVERY SPECIALIST HACKER
OMEGA CRYPTO RECOVERY SPECIALIST is so Genuine and the best.
My name is Manuel. I'm from Swiss live in New Orleans. I fell victim to a fake online crypto broker with my investment of $428,000. The broker promised me significant profits and I was initially successful in trading, which built trust with the broker. However, I soon noticed suspicious activities and inconsistencies in the broker's behavior. Eventually, the broker disappeared, taking my funds with them. This experience left me feeling frustrated and helpless, unsure of how to recover my lost funds. I began searching for solutions online and came across Omega Crypto Recovery Specialist. They successfully recovered 90 percent of my funds and I'm grateful. Without the expertise and resources of Omega Crypto Recovery Specialist, I may have never recovered my lost funds. Highly Recommended.9 -
Suppose for a moment that nation wide, only 2% of computer science graduates are female and computer science graduates are your ideal candidate. If your team is compromised of 40% frmale, then wouldn't this be discrimination against candidates that are male since you've disproportionately selected female candidates over male Candidates. Wouldn't this be shown statistical significant against the Bull Hypothesis. If it were Asian candidates would you say the same thing?
Thoughts please.24 -
When I found out that the server I use weirdly implements SSH login.
For some very odd reason (probably a historical one,) you have to access the web-app console and press a button TO GRANT SSH ACCESS TO THE F*<KING IP ADDRESS FROM WHICH I PRESSED THE BUTTON. The server blocks the wrong IP addresses outright. And only one active allowed IP at a time. This totally obliterates my plan to perform CD on this server. Why can't I just register public keys?
Then I learned several months later that they introduced a new server plan that *does* support the public-key registration. :facepalm:
I'm divided on whether to change my plan in exchange for a rather significant increase in the monthly cost.3 -
When it comes to working on side projects, how do you usually pace yourself? I always find it hard to do side projects. Do you just spend like an hour every afternoon? I feel I rarely do side work mostly because I'm afraid I'm going to sink like 5 hours in 1 setting. To people who do significant side work, how do you balance that with your day job?2
-
Getting ready to finally launch a WordPress Multisite project I've been working on for over a year this weekend...and version 5.1 drops today.
And has significant additions in Multisite functionality that I should implement prior to launch while it's comparatively painless, rather than when we've got a bunch of sites with data to reconfigure.
Blah.2 -
To make something impactful. I don't want to be fully credited, though being able to point to it in interviews would be great.
While working, I constantly segment my product into tiny reusable abstract solutions, most of which I eventually publish. I want some of these to grow into popular solutions to the problem I had or some other similar issue. Or, I want one of my major projects to become either a tool or an inspiration in something significant, but frankly the point is that some people appreciate something I created. -
It seems which the crazy enterprise microservice project which I'm doing (an awful distributed monolith splitted in 10+ microservices, hard to test and requiring continued context switching and running on an unreliable platform) has finally won over my brain.
It's so boring and frustrating to work with which I lost all my ability to focus, I used to be able to program well even under significant distress but more than two years of continued boredom, repetitive tasks and frustrations destroyed my motivation and with that my ability of focusing died. It doesn't matter if I'm at home or in the office, my brain is like a car stuck in neutral gear and I struggle to focus in every task.2 -
For those with hiring experience, or just informed opinions.
Candidate A:
1.5 years self-taught web development, primarily Javascript, but also Ruby & Golang
6 months commercial front end experience
Brucey Bonus: a significant fullstack personal project (deployed), plus lots of smaller projects. Has focused a lot on learning OOP and functional paradigm principles.
Candidate B:
As candidate A, but instead of a personal project, has made a couple dozen PRs on a big open source project (ie Mozilla’s debugger). They seem to have eschewed really dialling down into algorithms/paradigms, preferring to learn “in the wild”.
They both perform equally well in interview tests, and appear to be engaging, hardworking and approachable.
Which one do you pick, and why?24 -
What programming language is looking to become the "next Python" or something. I've heard of plenty of new languages, but which of them are actually going become significant, a.k.a "worth picking up as a secondary language".13
-
Have you ever use Ubuntu (or any Linux that use Pango to render text) for a significant amount of time that you notice that text in Mac OS is just not that crisp? To the point that it looks blurry, even more so in non-retina display.
I want to justify buying new Macbook for that sweet M1 silicon, but I don't think I can live with the blurry text. I rarely use built-in display on a laptop, but it is hard to find external monitor with Retina resolution (200+ dpi) with decent size, or ultrawide for that matter.3 -
Suffering from the cash flow blues.
Remote contracting roles are far and few between, and so far I’ve only found the one client, the problem is that because they’ve been burned in the past by contractors, they only operate on an order by order basis.
So we’re stuck in this perpetual cycle of issues > estimates > order > development > test > tweak > pay and repeat.
The problem is that there is always significant delay between the stages from both sides, either because they’re busy on stuff, or I’ve burnt myself out rushing to meet an estimate and having to take a bit of breathing room.
Don’t get me wrong, it’s great working in blocks of a few days to a week and then having some time to myself (and the money is nice too), but the cash flow inconsistency is super scary when you’re having to manage corporation tax, accountancy fees and a salary.
Anyone else have these issues / know good places to find remote contract work?2 -
As a student, am I the only one that surfs the internet for a significant amount of time to find out the best IDE for a specific programming language, only to then install multiple of them and test them out myself? The ones I don't stick with are still collecting dust in my laptop... dunno why I don't uninstall them.1
-
Friday is always such a significant day because you know what's up next? WEEKEND BABY but I am up since 4am after four hours of sleep (it's 5am now), because well life sometimes sucks like that, and the only thing keeping my brain from going gaga is work so I am working since 4am to probably 7,8pm
Fml and wish me luck8 -
Thought i would share this promising little tool with you guys and gals.
It's called fman and its a new take on a file manager that seems inspired by Sublime Text.
It leaves Alpha 1st March and will be heavily discounted for 2 days (can't say how much but it's significant).
https://fman.io5 -
My last promotion was/is my first Software Development job and a significant increase in pay.
I worked for this company for 12 years, quit for 2.5 years, got a job in a different industry in the mean time, and taught myself to write some code.
Due to some personal changes, I ended up coming back to this company.
After being in the engineering team for a year I applied for the corporate software dev gig. They liked I had floor experience and took initiative to teach myself.
I would consider myself entry level and it shows on my resume, so I was surprised they took a chance on me. The boss says I'm doing a great job, so that feels pretty good!1 -
thought of the day :
machine learning does not totally automate the end-to-end process of data to insight (and action), as is often suggested. We do need human intervention. And having the right mix of specialists is equally important as they have the expertise to build prototype projects in different business lines. Thus, one must hire the right team in the context of her organization to ensure an assured path towards success.
Besides, it is important to note that organizations don’t have machine learning problems. Instead, there are just business problems that companies might solve using machine learning. Therefore, identifying and articulating the business problem is mandatory before investing significant effort in the process and before hiring the machine learning experts.1 -
About to go on crunch to release a feature that is late. I have my own blame to put on it, as I wasted a lot of time, but goddamn.
Every time I said we'd need to take time to test for corner cases and check for errors here and there, my boss told me I need not worry about it, it's just an MVP. Then the marketing people see the feature half-ready and start suggesting their own changes. Then the idea of the project is refined and changed, a new subfeature is added, new backend business logic is added, right as I'm about to finish the original core features. They have the full product in their heads and are already selling it to people while I'm still catching up with quite a significant number of tasks. Now I have to crunch to launch tomorrow morning.
I do mainly the backend parts, but while a frontend guy who knows his CSS does components and pages, I'm the one to figure out pretty much all logic, and how to stitch said components and pages together and how to make the frontend interact with the backend. I'm supposed to do this whole thing and also deploy it all. Hell yeah.2 -
I started to contribute to open source again to improve as a dev and to break away from web stuff, on top of that I want to improve my professional imagine with a rebuilt personal website, decent LinkedIn posting and a more curated GH profile (starting from the name, I’ll replace the childish “edgy” name I’m using with actual name + surname).
The only issue I have is that on my current GH profile there are a couple of issue on random OSS projects which I offered to fix but then I’ve not maintained the promise for mental health or work issues which deprived me of any willpower towards evening programming. Do you think it’s better for me to create a new profile to get rid of these or I can still use my current profile without risking significant reputation damage?2 -
It'd be pretty cool to do well enough in my career that I can buy my dad a garage and we can fuck about the rest of our lives doing up cars.
Also, if I could make some significant contribution to some OSS, that would be great. -
Focus? Everything.. Downside? Not enough time to get good at everything. It depresses me. I see a language and framework and I Wana learn it and use it but I don't have the time cause I'm too busy coding on another platform. This makes me sad. I wish it were the matrix and I could download all languages syntax and apis into my brain so I could spend less time learning and more time making something significant. Okay okay, my focus is Java/Android with a dash of web
-
How much cost to design a restaurant website?
Hello Community Guys, How are you? I require your suggestion? are using website design cost calculators such as ( https://branex.com/website-cost-cal... ) significant in calculating the cost of a small business website.7 -
What's an "old language" that has had significant momentum, but has also had its day and really needs to just go away now and be replaced by something else? FORTRAN? COBOL? BASIC? Any others?11
-
I'm planning to get out of engineering and into tech. Can I expect to make at least 60k in an entry level position? Will I need to get more skills or take a significant pay cut in order to change careers?18
-
sometimes I have random curiosities while I'm out and unable to test things. this is one of them (will comment with answer if I ever test it):
obviously writing aliases to make things you do frequently easy is a win. but what about typo aliases? stuff like sl, dc, she, etc. these aren't typo'ed often (hopefully) but are defined every single time you create a new terminal.
has this probably miniscule overhead actually been meaningfully measured?
question: how many aliases must be defined to cause a significant (say, 3sec?) slowdown when opening a new terminal? -
Anyone ever dealt with a workspace that takes a whole day to get working and then after that it's like a Jenga tower waiting to fall over? I would fix it permanently but there is way too much to unfuck without significant risk.
-
I just setup Jenkins locally for the first time to do some CI/CD for a project using docker. Then I upgraded the container to the latest version of Jenkins.
I am liking it so far but haven’t really setup anything significant yet.
Any of you ranters have experience with Jenkins?
- would you recommend it. Pros/cons?
- what resources did you use to setup and expand your pipelines?
- any experience with Google Cloud Platform and Jenkins.
These are kind of open ended questions to start a discussion on the topic.
Jenkins will be used at least for deploying the front end built in React. I may also use it for deployment if the Golang API but that uses Kubernetes at the moment. -
As a senior developer with a couple of years under the belt, do you think having an active Instagram, YouTube and Facebook account is necessary? Does It help professionally at all? or am I just wasting time that I can use elsewhere?
I am thinking about launching my own SaaS in the future. But as a developer, does social media presence impact in any significant way in your professional life?
I am kinda getting addicted to posting setup videos and reels on Instagram. I don't have an end goal in mind. I just find it a way to express myself. But sometimes even I get cringe seeing my own posts. I was thinking about ditching IG and Facebook and twitter and go back to writing blog posts or something.3 -
Clinician : How did you choose what variables you put in that multivariate analysis?
Me : ... don't ask, just be happy it's significant -
React development builds are so laggy that even the most basic of optimization I make to speed it up ends up as a significant improvement in performance in the production build2
-
What do you think would be the effect of giving out awards for the best open source code on GitHub or whatever?
My theory is that awards would actually make people to stop working on less significant repositories (that clearly cannot win the awards) and focus on the major repositories, the most starred and forked ones so as to get a share of the prizes. Maybe there would be times when commits(which are way better than the current code) are not merged onto the main branch coz doing so would introduce another coder in sharing the prize. The clustering of everyone's efforts on the major repositories would leave the less significant but useful repositories neglected. Can't say the number of times I have copied code from these repositories. I think awards would be disruptive to the open-source Ecosystem. Am high and am out ppl. Go savage the comments. Wait do such awards exists...haha.2 -
Custom Essay Writing
Paper composing is the one of the most significant task in the scholastic long periods of the understudies. Be that as it may, huge numbers of the understudies are getting exceptionally hard to compose papers. The primary explanation is that understudies are looking recorded as a hard copy an article is that they don't have such an experience.We are giving numerous serves to the understudies like by giving on the web best research paper composing administration . An exposition is a decent method to incorporate all raw numbers. The composing ability is significance in all fields, the Essay composing practice prompts the quality writing.Custom article composing administrations spare your time just as your space for different exercises as you are not the person who is composing the paper. We can't give the best and mistake free quality composition, which is the reason we need custom exposition scholars who can give us the best quality custom articles. The various tips make the Essay progressively appealing. The intriguing feature expands the interest and consideration of peruser. The straightforward language give the progression of sentence. So you should keep the language straightforward and keep up the stream. Try not to commit the sentence structure error, it will occupy the peruser from content.
visiT: https://essaywritersworld.com/13 -
If I'm moderately happy in my current company but I would switch for a significant raise that offsets the relative risk, does it make sense to claim that my current salary is the bottom end of the desired range so as to encourage potential employers to start the negotiation from that point? I ask this especially because I find the act of haggling stressful.4
-
!rant
design related.
By god if M&B bannerlord's ui isn't sexy af now!
They got the perfect design on the kill icons when a user takes out an opponent, great contrast, a couple fonts that do their job to the T and match the experience nicely.
Maybe this is all just nerd shit, but good design always gets me hot an bothered.
It's a significant improvement from the first game.
Got check it out. Music is obnoxious af so just mute it or something.
https://youtube.com/watch/... -
I swear to god, getting Chumsky to do my bidding has almost taken longer than writing a parser by hand. I'm not looking for operator precedence, I'm not looking for complicated rules or anything, the main part of my language is literally just S-expressions, with some top level bells and whistles.
I don't even have a working lexer yet because I wanted to use this piece of shit library which usually matches the fewest possible characters to parse significant newlines but the Padded combinator takes as much whitespace at the end as it can find, and a host of other atomics don't actually adhere to the library's lazy principle in their procedural implementation. I've had enough. I'm going to bed, and tomorrow I'm writing tickets.
Actually, I'll probably also write PRs because I actually want the fixes to exist and not just complain about the problems, but I also really want to complain before I get started on that because I spent about two weeks just on this bullshit.3 -
I made a very obvious realization since the last time I rewrote Orchid; the 3 year project that has now become an eloquent documentation of my learning process; Types aren't free. Sure they're free at runtime, in fact the more you have the less the language has to work to separate values, but they generate significant cognitive load.
Oftentimes it's better to have one enum with 12 variants 3 of which are specific to a narrow case to be able to define operations for this enum once, than it is to have 3 distinct enums of 10, 11 and 8 variants respectively, and to have to define common operations (or the dispatch part anyway) thrice.
As for my previous observations about catchall abort acting like the new type abort, I still think that, and I still think that this is only justifiable if the number of invalid variants is low enough in every case that you can list all of them before the abort.4 -
Please Google fix my Chromebook's new tab screen as well as stop screwing up every single screenshot extension. I can't directly upload screenshots slowing down skype meetings. Why are you doing this to me? Your product forums (https://productforums.google.com/fo...) are treating me like I am an old lady who doesn't know what they are talking about. I do not understand what's so hard to comprehend. 1 Google Support Chat, 2 Feedbacks, 1 Debug Log Sent, Screenshots and everything yet you still fail. I have provided significant proof that there is an issue caused by you. Now please fix it because I can't since the Chromebook disables all code not signed by Google (unless you are in dev mode aka annoying screen + lose all security). You guys like hate me or something :(
-
Ever feel like all you ever do is recode the same projects over and over with no significant time or funding or sometimes energy to complete something that would be new or awesome ?
I really wish I had more opportunity to collaborate personally.1 -
According to a report from ZDNet: IBM's new toolkit give developers easier access to Fully Homomorphic Encryption (FHE) which is a technology with promise for a number of security use cases. In case you do not know about FHE, you can take a look at My Quora Answer (https://qr.ae/pNKR2p).
"While the technology holds great potential, it does require a significant shift in the security paradigm," the report adds. "Typically, inside the business logic of an application, data remains decrypted, [Flavio Bergamaschi, FHE pioneer and IBM Researcher] explained. But with the implementation of FHE, that's no longer the case -- meaning some functions and operations will change."
The toolkit is available on GitHub for MacOS and iOS and it will soon be available for Linux and Android. -
Fuckkk.. I'm learning total.js now and lost a significant amount of time wondering were did my flags (an array elements) in the route method have gone missing..
Instead of writing like this:
F.route('/admin_page', view_admin_page, ['authorize', '@admin']);
i had it written like this :
F.route('/admin_page', view_admin_page, ['authorize, @admin']); -
Big talk to all bros, in a conflict situation, say for example in relationship, sometimes when arguing with significant other, you need to be a bigger person and calm it down when the conflict turns out counterproductive regardless of how much pain you feel or your emotional demands not being met.
As man you have to, no other choice.
A small conflict however are healthy for both to grow the relationship.11 -
Okay, so I need some serious help. Can someone explain why anyone would want to use java spring beyond IoC? Half the developers I work with swing Spring around likes it's excaliber, yet when truly pressed why they like it they all say: "because of beans".
Spring is massive, so why just beans? The IoC pattern is extremely robust, so I'm sure there are other secrets to be learned. It has to have some other significant advantage.
I totally understand things like Jax-RS for REST endpoints. I don't think spring is needed for that to work, is it?2 -
Almost everything worthwhile has a significant amount of discomfort associated with it. We feel discomfort when we work hard on worthwhile things and when we grow as partners, engineers, team members and human beings.1
-
How Professional Writers Deliver Flawless Nursing Essays?
If your professors want you to write an essay assignment on a complex topic, looking for nursing essay writing help is definitely a good idea. In this profession, one needs to do some in-depth research and gather proper data before attempting to write. And, this is the very reason why availing expert essay writing services is an excellent choice. Expert essay writers pour their expertise into every aspect of the writing process and deliver good quality content on each order. Nursing essay topics usually require significant amounts of research work. If faced with time constraints or other hurdles, looking for good nursing assignment help online is a good idea.
Essays done by authentic essay writing services are typically crafted to perfection. Good grades are a guarantee if you avail of their writing services.
Delegating your intricate nursing essays to professional writers is a step in the right direction if you are facing any writing trouble. Writers from reputed services take every measure to write the best quality essays......Read more- https://customwritingservicehelp.blogspot.com/... -
Is using getx's `ever` function a code smell? I'm using getx as a library rather than a framework ie state management instead of wrapping the app in it and using their widgets
My background from writing reactive code in vuex is that whenever a watched variable in the overarching store is updated, it automatically calls its listeners and re-renders the view. However, my flutter widgets remain stagnant except I explicitly mount the ever worker and call setState on a local field basically duplicating the store variable/field. It feels hacky to me tbh and leads to errors about calling setState on non-mounted screens, which I'm circumventing by checking if mounted (another hack)
It feels contrived like Band-aid over an actual problem. Is there a more natural way to propagate changes? I'm neither using getBuilder nor obx cuz a significant portion of my code entails computing stuff rather than just outputting data off an api. I want ui decisions to reside on my statefulWidget rather than migrating them to getx controller
Is this really how the project functions, should it be used a specific way, or am I missing something?6 -
Lifts are significant if it is considered fittingly and meticulously upgraded. The Best lift organizations in uae offer affiliations that are standard and adequately guaranteed for their trust and care for clients. The essential piece of breathing room behind the lift affiliations is the 24-hour relationship at our doorstep. We can depend on them at whatever point at our lift requirements. The Elevators can be hurt with any clearly irrelevant nuances happened to the lifts. So it should be all around protested by the master mechanics. For that we can depend on the lift affiliations.
http://alnaselevator.com/cargo-lift... -
The Voice Changing Software Market is relied upon to surpass more than US$ xxx million by 2023 at a CAGR of xx% in the given conjecture time frame. A comprehensive examination has been done on the key players working in the Global Voice Changing Software Market. The report covers the income share, cost, item offering, late improvements, net benefit, business outline, and mergers and acquisitions, which encourages the clients to comprehend the key players in a progressively significant way.
https://clownfishvoicechangerdl.com/...1