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 - "1-on-1"
-
Our university syllabus is so outdated, we are forced to do C programs in TurboC.
So we install Dosbox on Windows 8 machines...
1 upvote = 1 prayer53 -
I overheard this on my way back to home.
Girl 1: I bought a new phone yesterday.
Girl 2: Let me see it.
*hands over the phone*
Girl 2: There is no Instagram?
Girl 1: No, Instagram wasn't installed when I bought the phone.
Girl 2: That's weird.
*me almost dead*31 -
1 minute of Thread.sleep() for Tum, the best cat ever. Rest in peace, your memory will live on in my devrant avatar.17
-
Where to get help on fixing a bug:
1.Google
2.Stack Overflow
.
.
.
8479.Your coworker who is coding with his earphones on.11 -
Math teacher: 1+1=?
Me: one zero
Math teacher: wrong!
So i gived to her my calculator (in binary mode :-) )
Me: check the answer.
Math teacher: [saw 1+1=10 on calc] thinks about 10 seconds LOL then says: you calculator is broken!18 -
Doing web development on one monitor is a living nightmare.
1-3 windows or panals for coding
1 browser for previewing
1 broswer for google shit lol
multiple file explorers open
multi terminals
I see why 2 or more monitors is basically a necessity.27 -
Shamelessly borrowing this from /r/ProgrammerHumor/ because.. 1+'1'-1 ¯\_(ツ)_/¯
On a serious note, this will help with JS coercions: https://medium.freecodecamp.org/js-...1 -
10 Things You’ll Find Shocking About Asynchronous Operations:
3.
2.
7.
4.
6.
1.
9.
10.
5.
8.
(found on twitter by @iamdevloper 😂)6 -
The second episode of The devRant Podcast is here! We're happy to announce the release of episode #1 - featuring David Heinemeier Hansson (DHH) (known for creating Ruby on Rails, Basecamp, his book Rework, and much more). It was a thrill getting to interview David and we think everyone will really enjoy!
We also want to give a huge thanks to our two devRant users who helped us out and came on to talk about their rants - @peaam and @switchstep. We also greatly appreciate all of the questions that were submitted by community members. We really wanted to ask all of them since there were a lot of good ones, but unfortunately we ran out of time with DHH and we didn't get to ask any :/ We're going to make sure we better allocate time in the future.
You can get all the links to the podcast here: https://devrant.io/podcasts/... (available on iTunes, Google Play, YouTube, Soundcloud, Stitcher, and we've provided the raw mp3 in various bitrates).
If you'd like to see it on any other platforms in the future, please let us know. And like always, feedback is appreciated since we're new to this and still learning our way when it comes to podcasting. If you enjoy the show, please rate it to help us out :)
Thanks everyone!7 -
How to get free dark theme?
1) Set theme to blindingly white
2) Go to settings and turn on invert colours.
3) Profit14 -
Response time of different people on Whatsapp:
Best Friend: 5-10 sec
Friend: 1-2 min
Best Friend(Girl): 3-5 min
Girl Friend: 1-2 day 😢
Client(when me solving bug): 0.00005 sec
Client(when me asking payment): *Blocked*
😕😕😕😕😕7 -
Confession of the day:
1. I work in release mode
2. I work on the main branch only
3. I test on production13 -
HTTP return codes cheat sheet :
1** : Hold on
2** : Here you go
3** : Go away
4** : You fucked up
5** : I fucked up5 -
my boss went on vacation 1 day before the deadline. Then disaster came in. So we emailed him, and he replied.
"Good luck"9 -
I sometimes wonder my English is that bad ...
I reviewed a pull request. I commented on this line of code
a = getA() * -1;
saying that
"I think this logic should be in setA method instead."
When the guy asked me for the review again, the change was
- a = getA() * -1;
+ a = setA() * -1;
...2 -
1. Unlimited money on bank account
2. Give me master degree
3. Disable remote desktop as “secure environment” at my workplace22 -
Since 2011, everyone in my large family lights candles on birthday cakes in binary. 1 is lit candle, 0 is just a candle. I taught them to do this. I mean you can encode years from 1 to 127 with just seven candles, so we’re using the same pack of small candles we bought in 2011.
Fuck you big candle industry. You got nothing on me.16 -
+1 if you think devRant needs a favorite button on each rant so you can create a collection of top rants 😊8
-
I am a Unix Creationist. I believe the world was created on January 1, 1970 and, as prophesied, will end on January 19, 2038.2
-
Submitting long written text on browser.
Novice:
1. Type
2. Submit
Experienced:
1. Type
2. Ctrl+a Ctrl+c
3. Submit4 -
That awkward moment when I was able to run three docker containers on a 512MB server:
1. DotNet core web service
2. MySQL
3. OpenVPN
BUT I cannot run:
1. NodeJs web service
2. MongoDB container
Spent two hours configuring the damn server to get hit by this T_T14 -
Being majestic as a web developer:
1. Hacking through the DevTools to remove the anti-AdBlocker overlay + vertical scrolling paralysis on news website
2. See point 115 -
whenever my team starts on a new project we're all like "okay we're gonna have MEANINGFUL commit messages this time guys"
*5 hours later*
$ git commit -m "go fuck yourself"
[master a7b9de] go fuck yourself
1 file changed, 1 insertion(+), 0 deletions(-)4 -
My team has 1-on-1 check-up meetings with our boss about once a month.
My 1-on-1 today consisted solely of him saying "So I bought a new Porsche, want to see a picture?"
It was a pretty productive meeting, if I do say so myself!2 -
This feeling when you search for something on ddg, find StackOverflow answer that is working solution
+1
"You can't vote on your own post"
Damn, smart past me :D4 -
Reached 100+1 on a single rant...
Devrant raised to 150 +1's in order to receive the stress ball...2 -
Getting stuck on a problem for 1 and a half hours when you realise Python was aliased to python version 2.7 instead of 3 :(
-
Ruby’s fanciness bit me in the butt today. It’s pretty rare, but often confusing AF when it happens.
array = [1, 2, 3, 4, 5, 6, 7]
array.count +1 +2
# => 1
What the fuck?
array.count +1 +2 +3
# => 1
What the fuck?
+1 +2 +3
# => 6
Okay.
(array.count +1 +2 +3)
# => 1
What the fuck?
(7 +1 +2 +3)
# => 13
Okay...
array.count + 1 + 2 + 3
# => 13
Alright, so spaces matter here...?
((array.count) +1 +2 +3)
# => 13
But not here!? ... Oh. I think I know what’s going on.
Array#count
Returns the number of elements. If an argument is given, counts the number of elements which equal it using ==
Well fuck me.
Ruby is seeing `array.count(+1+2+3)` instead of `array.count()+1+2+3` since `+1` is a value, not an operator followed by a value as is the case with `+ 1`.
Now, why was I using +1 +2 instead of adding some spaces like I normally would? So they would match what was in the comment next to them for easier reference. Heh.
Future dev, I did this for you! So this is all your fault. :|36 -
At a job interview.
Them: Can you please write a function that calculates fibonacci numbers on the whiteboard please.
Me:
fib=_=>($=>$.round(($.pow((1+$.sqrt(5))/2,_)-$.pow(-2/(1+$.sqrt(5)),_))/$.sqrt(5)))(Math)18 -
1.) Make Linux slightly more popular on the desktops.
2.) Windows 11 is actually a Linux distro.
3.) Let JavaScript burn in hell17 -
THE RULES OF TECHNICAL SUPPORT
Rule #1: The Customer Lies
Rule #2: Rule #1 still applies when the customer is your coworker
Rule #3: Customers following instructions is like characters dying in a movie: if it didn't happen on-screen, it didn't happen.1 -
Father devrant I have a confession to make:
I stayed up until 12 in the midnight during Sep 30 to do 4 PRs immediately once it was October 1 in under 1 hour...
Now I passed out on the classroom and people think I got possesed
b r u h6 -
From 'Javascript' then 'jquery' 😬 then 'angular 1' 😐..wait their is 'angular 2' damn this just a new framework compared to angular 1.(back-end) 'Nodejs' 😩, wait! you have to learn 'Express' after sometime upgrade to 'Hapi' wait now am on 'loopback' can't we just have one standard framework 😣😣😣12
-
When my comment on someone's rant gets enough +1's for some sweet stickers, but none of my rants had enough 🤔😥3
-
what is worse on stackoverflow:
1. getting downvoted to oblivion
2. having your question view'd multiple times with no response
?5 -
Pings google, no losses in 1 hour!
And just as I run that JavaScript code on Node.js, the internet stops! Every fricking time!
-_-'
>_<3 -
Method 1:
1. Read others' people answers on wk70
2. Apply
3. ???
4. Profit
Method 2:
1. cd <ProjectName>
2. git init
3. dotnet new sln
4. dotnet new console #or webapi/lib
5. code .
6. git commit -m "Initial commit"
7. git remote add origin <github link>
8. git push origin master -u
9. profit1 -
Thanks again devRant, @dfox and @tragus.
Those stickers are amazing.
Hope to get the stress ball one day too.
Btw @dfox what do you mean with +1’s here? 500 +1's on a single rant for a ball2 -
Scenario 1:
Me: *cover both ears with headphones, start listening to vicious metal, look angry, busy and determined*
Co-workers: "Oh hey! I need to understand ____"
Me: "Fuuuuu..."
Scenario 2:
Me: *place headphones on one ear, listen to gentle, approachable music at low volume with smile on face*
Co-workers: *crickets for hours*
Me: Fucking seriously? *commence Scenario 1* -
Don’t know if I should be worried that I received an invite to a 1-on-1 meeting with the company CEO…14
-
Day 1 of my 1000 job applications TikTok challenge
Goal:
- apply to 9 different jobs per day
- see if i can break the Guinness World Record of being rejected 1 thousand (1000) times
Stats so far:
- 9 job applications
- 0 replies
- 0 hires
Will be documenting this on devrant too7 -
Steps to work on android studio -
1] Open android studio
2] Wait for an hour.
3] Wait for the build.
4] Build failed.
5] Get frustrated, close it.
6] Repeat 1-5.10 -
Mother fucking SQL, fuck mathematicians, fuck every thing!
So let's supose we'd only need the first char of a string. Every, and I mean fucking every (php, java, javascript, ruby, python, haskell) fucking language, uses something like `substring(input, 0, 1)` as it knows the input is nothing more than a fucking array of chars, otherwise known as motherfucking String. Logically the offset for the first char is 0.
Enter SQL, there you need to put `SUBSTRING(input, 1, 1)` because fuck every one! Fucking math guys who developed relational algebra on which (most) databases are based on (I love you for it, but come on you fuckers!), Decided that the first character should be at position 1...
Fuckers6 -
Tomorrow's my last day.
There is no exit interview scheduled. I'm not surprised, there hasn't been any 1-on-1's in about 2 years, and any feedback or complaints are never addressed.
Just need to bite my tongue for one more day. -
1) Open IE or Edge
2) Search "download chrome"
3) Click on top hit
4) Download and run installer
5) Enjoy adware9 -
FACTS:
1. Gaming consoles are just PCs with a ton of limitations imposed on them by the manufacturer44 -
When you +1 one of your colleagues rants on devRant and realise the whole senior Dev team is on here. Hmmmm.3
-
1. Visit the official site.
2. Browse for official tools.
3. Check the official documentation.
4. Check the Internet for other non-audiovisual sources.
5. Try making a simple application.
6. Run out of application ideas.
7. Move on to the next shiny dev technology.
8. Go to step #1. -
Fun drinking game: work on a legacy system for a few hours. Every time you say "what the fuck?" equals 1 shot.3
-
1. Learn Kotlin
2. Actually sit down and push through machine learning.
3. Finish integral calculus and start multivariable calc.
4. Work on 1 project until completion.
5. Socialize a bit more.
6. Obliterate bugs.5 -
1. Actually focusing on developing stuff instead of learning languages.
2. Having fun instead of trying too hard.
3. Get a good job.2 -
The debugging loop for Minecraft Spigot plugins on a 4GB RAM laptop:
1. Start Eclipse - 1'
2. Edit code.
3. Build plugins - 2'
4. Close Eclipse to make RAM room for Minecraft.
5. Upload plugins to server with FTP - 1'
6. Start server and launch Minecraft - 2'
7. Enter the server.
8. Find bugs.
9. Stop the server, close Minecraft.
[Go back to 1.]17 -
#1 life lesson learned from coding:
Don't work on projects for the government or any authority EVER!6 -
People on devRant: "it took me 1/2/3 hours to fix that bug, omg, what a time waste!!"
Me: *wrestles some bugs for 1/2/3 DAYS*
I'm confused, how is fixing a bug within hours a ranting material...?11 -
*Le me posting a rant on devRant
*Le Rant gets no ++1 for a while
*Yup it was stupid one, delete it4 -
1. firing up the terminal
2. enter sudo apt-get install openvpn easy-rsa
3. realizing I'm on my windows machine1 -
On call at 2100. Call at 2101. Co-worker off at 2100, call at 2059. Neither were problems with our infrastructure. They were with the callers' teams fucking up.2
-
dfox +1'ed my very first activities (comment and rant), and I immediately thought he was half a user and half a +1 bot. You know, similar to MySpace Tom. But just now he +1'ed my comment in a rant where he also commented on.
He's real.1 -
1 on 1 meetings with manager throughout the year
Manager: You're doing really well! Keep it up!
Me: Cool, thanks!
1 on 1 meetings with my manager a month or two ago
Manager: You're still killing it! I'd really like to see you challenge the status quo since you're the newest on the team. I think we could benefit from fresh perspective.
Me: Ok, cool, I'm starting to feel pretty comfortable so I'll do that.
Me: *starts challenging process, team structure, and company norms in meetings*
Manager: *confused pikachu face*
1 on 1 meetings now, right before performance management
Manager: I really need you to start picking up more important work. You're not performing well relative to others at your level, and I won't be able to represent you well during performance management.
Me: 😐10 -
When somebody else in the office steals your rant, puts it up on devRant and gets more +1's than anybody else on devRant.4
-
Create the project of your billionaire app idea -> spend 1 week working on it -> realize that actually sucks -> repeat5
-
Life of dev
birth();
while(alive()) {
....code();
....debug();
....insertRandomBugRant();
}
while(dead())
{
....ThereWasBugInMyCode();
}
Fatal error: Call to undefined function birth(); on line 11 -
colleague 1 : hii,we need to talk.
Me: okay,what?
colleague 1 : we have issues with you.
Me : post on GitHub bro..!2 -
+1 if you think devRant should start sending notifications like "congrats on your 300 +1 rant. claim your swag"3
-
In my opinion the image feature on devRant is not very user friendly. I think following points should be changed:
- In the rant preview the image has always a 1:>=1 ratio. This means that you can't see the full image unless the image has exactly a 1:1 or smaller ratio.
- To see the image in fullscreen mode you have to tap two times. In my opinion that's just too cumbersome. Often when i browse through devRant and i see a image i just scroll along because i don't wanna tap two times to see the image.5 -
Does anyone else get crippling fear anytime your boss wants a 1 on 1 meeting?
I always assume I'm getting fired and panic over it..even though so far that's never happened.12 -
I just want to mention some old software from 50 years ago that is running on Voyager 1 and 2 and needs to be maintained and cut due to nuclear power source depletion.
https://popularmechanics.com/space/...2 -
It's looks like this weeks "Weekly Group Rant" is trolling all the developers who have side projects that never finished.
1. CMS like WordPress
2. MVC framework like Laravel
3. Android App like Tinder
and... list goes on.
#1, #2 and few others are still stuck on index page.2 -
How we click notifs in devRant.
1-1. SOMEONE mentioned you in a comment!
1-2. SOMEONE commented on your rant!
2. SOMEONE ++'d your rant!
.
.
.
.
.
.
.
.
999. SOMEONE ++'d your comment!
1000. One (or more) new comments on a rant/collab you commented on!
Sorry creators, but..... (silence, drops mic)1 -
I'm sitting here at 1 am working on a side project. There's, literally, a bug in my code. It's bed time.9
-
Yesterday hr called me for a meeting 1 on 1 that lasted for over 1 hour.
Me: i work on my side project when i get home every day
Hr: ohhh.. so you do have time to work on another project aside from ours?
Me: what? I said i work at my project after work when i come hom-
Hr: so you have that much free tim ok how about this. Would you like to work on another project for our clients? So you'd be working on 2 projects-
Me: ...
Hr: one day you work on this primary project the next day you work on the secondary project
---
Corporate people really think giving me MORE work with NO increase of payment is a REWARD???? Go FUCKV yourselves11 -
Weather is changing so frequently.
I'm switching since 1 1/2 weeks between being tired, no sleep, migraine.
On top of that I have to unclog a multilayer cache architecture based on varnish.
My brain poof.
Plus a lot of management tasks.... And planning.
I just want to enter a hibernation mode and sleep for 3-4 weeks.
Please?6 -
NSA is seriously hiring on SO. Even with happy YouTube video under it. Like nothing is happening.
It must be freezing in hell atm I guess
https://stackoverflow.com/jobs/...5 -
Step 1: Make an account on some website with the username "{username}"
Step 2 : Take a screenshot when the website sends you some kind of personalised email
Step 3 : Add some caption saying "lol this website is so broken!!1!1!!"
Step 4 : ???
Step 5 : profit1 -
I just found something cool on accident.
Assuming you start the fibonacci sequence on 2, you can find any of the fibonacci numbers for a given index with a simple trick:
Let Phi = 1.618
Let your index n = n+1
Floor(phi**(n+1+0.328))+1 = the fibonacci number at index n in the sequence.
This probably breaks down past some point but its nifty.21 -
I'm doing a short 1 hour livestream on twitch on installing CraftCMS, plugin development and maybe Angular 4 setup, if there is enough time.
https://www.twitch.tv/qbasic164 -
Craft CMS deployment on shared server, PHP5, Apache takes 10 - 30 seconds to load.
Craft CMS deployment on virtual shared server, PHP7, Nginx takes 1 - 2 seconds to load.1 -
When you forget to turn off your passwordless personal hotspot on your iPhone and it says it has 1 connection.1
-
It's 1 AM and I've just finished deployment on production. I should go to sleep but what I do, yes scroll through devRant.6
-
swag link says you need 20 +1's for stickers and 175 +1's for ball from each post. clicking on Learn More it then says you need 15 +1's for stickers and 150 +1's for ball from each post.
How about some stickers for spotting a content issue?1 -
1, People stop forcing Node.js on me
2, Browsers actually comply with W3C and don’t publicly experiment on their own
3, Internet Explorer is pulled from all installations retroactively5 -
*1 hour passes*
Me: adds new code
*1 day passes*
Me: Why did it work?
*some random weekend*
On call developer: Who fucking wrote this code!4 -
1. "Who the fuck added that line of code?, why oh why?!??"
2. $ svn blame file
3. "Oh... It was me, carry on"1 -
Meanwhile I reach 175 +1's I'm playing with my own custom stress ball with a bash fork bomb on it :]
-
Why can't meeting organizer enforce time schedule, especially ending?
It's pretty much normal to stay 1,5 hour on 1 hour meeting.1 -
Two notable things happened to me today on devRant:
1. I accidentally +1'd a random rant. I feel rude to undo it.
2. I accidentally reported a random comment. I feel stupid for having done such thing.
Now I'm expecting to get a notification saying It wasn't worth reporting :/4 -
German friends...
Thoughts on 1&1? I have tks now, it's painful. Telekom seems shady af, but I have their mobile plan.
I have no idea how to get unbiased info here, so i'm asking people who actually use the internet to work from home and do more than just surf Facebook and cat videos10 -
An ad of items on sale in a store:
Bath toys for babies, buy 1, get a second one for 1 $...
One of the toys is a rubber duck..
I don't have a baby...still considering 😂4 -
Windows:
Step 1: install my c++ library from www.scammysite.be
Step 2: extract the zip and open scammyexe.exe
Step 3: ....
Step 304: do three backflips
???
Step 404: it should now be installed on your machine
Linux:
Step 1: sudo apt-get install coolsoftware
Hmmm....3 -
Tomorrow I'll finally start working on a new part of my company's current project from scratch after loads of frustration in the past 1 1/2 months! Not a rant, just a lil bit of hope that it'll get better :)4
-
Busy day yesterday. I helped lay over 6000ft of Fiber Optic cable on a military base:
1 x 5100ft 144 SM #OS2 #OSP & 2 x 500ft 24 SM OS2 OSP to link 3 bldgs/1 #splice via ~12 handholes. 4 guys, 6 hours, 100% roughed. Me +1 will fuse later.
CFOT life.5 -
Almost done with my stickers on my new laptop, ordered the $1 unixstickers pack and will use them soon \o/4
-
How did you spend your weekend?
- 1 day wasted on trying to configure a project
- 1 day spent on formatting documentation ( including changelogs & mailing archives, project started in 1987? The repo still has files that were last updated 26 years ago )9 -
Our scrum master planned a 1-on-1 to go over everyones tasks when he is off for 20 days (paternity leave) one day before his wife is expected to give birth
Now he is surprised this plan fell through for obvious reasons5 -
ran 7 servers locally
1 frontend
6 backends.
tested a task I'm working on.
worked flawlessly.
dayaum.5 -
1) Open-source Windows based on a Linux kernel with full Direct-X compatibility.
...that counts as three.3 -
Going for an interview with them asking me to open console on their laptop and type a 1 liner in JavaScript that will make an array with indices being numeric values 1-20. Their machine doesnt want to work and never wanted to log in... So i do the following:
1.Pull out my phone
2.Open Thermux
3.Ask for wifi password
4.Install node on my phone and write the below attached code
Needless to say. I actually feel good about myself, i got the job and a good offer and the network password...6 -
Why do game studios force social/multiplayer in single player games?
Single player sandbox? How about we make it a multiplayer co-op?
Just fine 1 on 1 brawl? Hey how about you find a team and tag team? No? Too bad fuck you, no points to you for a whole fucking season.
Ugh.15 -
C'mon CBA, get it together. If today is Friday and something happened on Thursday (AKA yesterday) that's "1 day ago". It is known!7
-
Hej @dfox why the rant feed on the web (devrant.io/feed) is still stuck with the +1 instead of ++? ;)4
-
We were contracted into this big corporate company about 12km down the highway from us in the most congested part of the city.
We had a 1 hour meeting scheduled for the Wednesday that we had to drive in for, on the day before that we had to drive in for a 1 hour planning meeting for the next days meeting.
We had a 1 hour meeting to plan a 1 hour meeting...1 -
float integral = 0;
float dx=float.minValue;
for (float x = a; x<=b; x+=dx) {
integral+=f(x)*dx;
}
A classmate just literally wrote this and he believed it was the proper way to do it.
I asked him to integrate f(x)=1 on 0<x<1. -
A personal sad short story:
Pull request opened on 20 November 2020.
+1 -1
Descriptions: Fix xyz issue
Comments (12):
- User 1: When it will be merged? (December 2020)
- User 2: When it will be merged? (January 2021)
- User 3: When it will be merged? (February 2021)
- ...
- User 11: When it will be merged? (July 2021)
- Official team: Sorry for the time it took, watch the PR for any update on this. (July 2021)
Today, after 7 months, it's still not merged.
I love the open-source community.4 -
has anyone ever had this happen?
ide- syntax error: missing ";" on line 7 (1 error)
me- *adds the missing ; *
ide- syntax error: missing ";" on line 7 (57 errors)1 -
Finally , dual monitor , too bad am going on a vacation tomorrow.
Been cribbing about a single monitor since ages (1 year)5 -
Tonight's checklist:
1. Study a chapter in ISLR
2. Try to understand source code of an open source project in GoLang.
3. Complete programming challenges on HackerRank
What I am going to end up doing:
1. Watching videos of The Rock trolling others.
2. Watch Family Guy2 -
!rant
On top of having a good day, aka I didn't spend hours on 1 bug as usual... my devRant stickers made it! Thanks @dfox & Tim :)2 -
Reading 1 tutorial/ part of the documentation
Trying it on my own
Realize that your code doesn't work
Googling the problem
Fixing it
Repeat -
My day today:
- tell everyone to fuck off and are idiots politely from 10 to 4
- tell them if they won’t fuck off now I will start looking for a job - 1 hour
- listening them apologizing me - 1 hour
- code and solve problems - 1 hour
Mondays
Hopefully I start working on Tuesday.5 -
1) search a project on github
2) read its documentation and decide if it's worth it
3) read contribution guide lines
4) contribute
5) start at 1) -
2 interviews today, 2 tomorrow and 1 on Friday.
I've only been put on gardening leave on Monday. Things are going well.3 -
My roommate is a hardcore apple fan boy. Me and my other roommate use windows so we actually installed windows on his Mac.
He later passed out.........
1 like = 1 prayer.9 -
If I only had a dollar for everyone that comments on my rant, but doesn't +1 it, I'd be one wealthy individual.3
-
"Sweet, I fixed story 1 and can commit! ...but issue 2 is pretty small, let me just work on that first so there's 1 pull request".
4 hours later, issue 2 not done yet, and I can't push push story 1 to QA until I finish it. I really need to stop doing that.4 -
How hard can it be to make a calculator app. Apparently Microsoft cannot get it right. You might say hey, but it works already. No it does not. See in math 1-(-1)=2 because the double minus sign cancel each other and turn into a plus. Well the w10 calculator app, just does 1-1=0 and show that this is the result. Yes this is the result of one minus one. This is not the result of one minus minus one. This is basic math .... Stop focusing on the interface and code the base right Microsoft.15
-
I can see your local web servers - http://http.jameshfisher.com/2019/...
This article pisses me off so much.
Can someone tell me what's the deal with websites being able to access localhost:3000?
Newsflash, jamesfisher.com:80 is open to everyone on the internetworkz!!1!1!!34 -
When we subtract some number m from another number n, we are essentially creating a relationship between n and m such that whatever the difference is, can be treated as a 'local identity' (relative value of '1') for n, and the base then becomes '(base n/(n-m))%1' (the floating point component).
for example, take any number, say 512
697/(697-512)
3.7675675675675677
here, 697 is a partial multiple of our new value of '1' whose actual value is the difference (697-512) 185 in base 10. proper multiples on this example number line, based on natural numbers, would be
185*1,
185*2
185*3, etc
The translation factor between these number lines becomes
0.7675675675675677
multiplying any base 10 number by this, puts it on the 1:185 integer line.
Once on a number line other than 1:10, you must multiply by the multiplicative identity of the new number line (185 in the case of 1:185), to get integers on the 1:10 integer line back out.
185*0.7675675675675677 for example gives us
185*0.7675675675675677
142.000000000000
This value, pulled from our example, would be 'zero' on the line.
185 becomes the 'multiplicative' identity of the 1:185 line. And 142 becomes the additive identity.
Incidentally the proof of this is trivial to see just by example. if 185 is the multiplicative identity of 697-512, and and 142 is the additive identity of number line 1:185
then any number '1', or k=some integer, (185*(k+0.7675675675675677))%185
should equal 142.
because on the 1:10 number line, any number n%1 == 0
We can start to think of the difference of any two integers n, as the multiplicative identity of a new number line, and the floating point component of quotient of any number n to the difference of any number n-m, as the additive identity.
let n =697
let m = 185
n-m == '1' (for the 1:185 line)
(n-m) * ((n/(n-m))%1) == '0'
As we can see just like on the integer number line, n%1 == 0
or in the case of 1:185, it equals 142, our additive identity.
And now, the purpose of this long convoluted post: all so I could bait people into reading a rant on division by zero.26 -
*Working on code: 😋😃🥰
-
* Goes to todo list
-
* Item on the list: Documentation (1 month overdue)
-6 -
Gremlin
[grem-lin]
Noun
1. When a user is incompetent and blames their problems on the computer:, "My computer is full of gremlins" -
· 10 sales on Play Store
· 1 star review because "good app, but doesn't have that particular function"
· 0 sales on Play Store4 -
getting a priority 1 email on sunday leaves u working till monday...where my fuckin weekend go !!! 😡3
-
Whenever I hear "this <person> is going to work on <project>" I edit my "bus factor of 1" wiki page.
Teams work on projects. People work on teams.5 -
If you had a project that you had to work on with 1 other person for a year, who on devRant would you partner up with? Regardless of stack.7
-
Dev boy to Dev girl: "What's the time complexity on you loving me, baby?"
Dev girl: while(iExist){
Int n = Random.Next(1, 100);
for(int i =1; i < n^4; i++){
Console.Write("..."); } }
Dev boy: Assert.Fail(); -
Somewhere on upwork post online.
1. Require backend architecting done for Twitter like app. <more details on app >
2. Client budget: fixed price, 200$ -
Age+=1
First time, I am this far from home on my B'day. But atleast I am with my friends and these fuckers wrote "Antarvasna writer" on my cake.2 -
Setting up nextcloud on a raspberry pi taught me more than 1 semester of networks/system administration course in university. This is sad.3
-
Asked stuff on stackoverflow, getting a -1 and suggestion to close the question.
I want to change my career.5 -
Step 1. Estimate a time based on previous experience working as a professional and qualified developer.
Step 2. Wrong -
When you write print(string), which type of people are you:
A) 1. ( 2. string 3. )
B) 1. () 2. string
C) Autocomplete guys
D) hodor
*applies for echo, printf, println, etc.
** python2 and c++ are discriminated on purpose9 -
Why did it take years before someone told me to add this to your bash script to see the line on which a command failed?
errorOnLine() { echo "Line $1 had an error" ; exit 1 ; }
trap 'errorOnLine $LINENO' ERR7 -
Fun one on the subway:
Make a little prompt script for your phone or computer
>welcome to Washington, D. C., Mr. Davis
>what would you like to view?
>1-traffic lights
>2-subway
>3-mainframe
3
>Subway Control
>1-emergency shutdown
>2-accelerate line
>3-shutdown line
Interact with script while on subway, watch reactions. Wearing dark glasses also helps.2 -
Quad Booting my laptop with Manjaro-KDE . Let's see how this one turns out.
This is my third Linux distro after Ubuntu and Fedora.
Been using Ubuntu from past 2 years.
Hoping to move on to Arch in next 6 months if I like Manjaro
Currently I have 1 Windows, 1 Ubuntu, 1 Kubuntu and now a Manjaro2 -
Coworker 1 asked if there was a website where he can learn more about Formstack.
Coworker 2 said no.
Coworker 1 asked him then what about formstack itself? Is their website helpful? Do they have a help section?
Coworker 2: "Well there’s not really a websiiiiiite for help, but their main website has a page for help.”
Coworker 1: “can you send me a link?”
Coworker 2: "no. I mean I can, but I mean they don’t really have a help website, but just help on their website.”
Coworker 1: "WTF!"2 -
The problem with moving Docker containers from your decked-out dev machine to a VM on AWS when your boss has told you to keep costs down:
1. Start Micro instance, 1++ gig memory
2. Get Out of Memory error from app after 30 minutes
3. Goto 1 -
This is the beginning of an edifact file, we received for the third time with the same error at a different line.
Let's see if someone here finds that error.
UNA:+.? '
UNB+UNOC:3+1+1+60:0931+1++1234567'
UNH+1+ORDERS:D:96A:UN'
BGM+220+B10001'
DTM+4:20190620:102`
LIN+1'
First time. Meh. Could happen to anyone.
Second time. Aw come on. Really?
Third time: Are you fucking serious?
We told them now two times what the problem with the file is.
How can you still manage to make the same error on a completely different line that didn't have that error before?7 -
When you keep on refreshing the tab to see if your pull request got merged but it still says
”Pull requests 1”3 -
I thought I found a way to compute PI, but I actually just found a super shitty way to print a variable..
const precision = 1000000
// convert degree to radians
function rad(degree){
return degree * (Math.PI/180);
}
function calculatePI(){
// [x, y]
// take first point on start of unic circle
const point1 = [Math.cos(0) , Math.sin(0)];
// take second point at 0.001 degree
const point2 = [Math.cos(rad(1/precision)), Math.sin(rad(1/precision))];
// Estimate 0.001 degree of circle
const dist = Math.sqrt((point2[0] - point1[0] ) ** 2 + (point2[1] - point1[1]) ** 2);
// Calculate full circle
const perimeter = dist * precision * 180;
return perimeter;
}
console.log(calculatePI());4 -
I got a new formula 1 model of one of my favorite racers (Sebastian Vettel)
It looks so great on my desk5 -
Peers: Set bit 0 to 1 (((W key for movement)))
Host: Gets Bit 0; 0=1; sends signal back to peer for moving peer 1 pixel up
Peers: (Location remains the same?)
Any suggestions on what i'm doing wrong here?4 -
I am introducing the Thunderdome policy:
2 Tickets enter 1 Ticket leaves. (Aka 1 Ticket gets worked on the other one gets deleted.) -
I wish multiple notifications would just be condensed into one on my phone... The notification menu gets cluttered by the separate replies and ++s.
Maybe instead have something like "devRant: 2 replies, 1 mention, 1 ++"?2 -
As i was shitting on toilet I realized something very important. This could be THE answer.
The question: what is the formula for achieving success? I realized this must be THE ultimate answer:
Money + connections + luck >= success
Why?
MONEY:
You must have money to make more money.
CONNECTIONS:
Some average joe can tell his friend Cockty to phone call his friend Dickson who's a good friend with Cumston to message his millionaire friend Asslicker who is gonna help the average joe succeed.
LUCK:
No matter what you do or how hard you work, how many achievements you have or degrees, you can spend 10 million dollars on a project -- and still fail because you're not lucky.
Let's calculate this probability:
have = 1
missing = -1
money = 0
connections = 0
luck = 0
success = 1
money + connections + luck >= success
Case 1 (have everything):
have + have + have >= success
1 + 1 + 1 >= 1
3 >= 1 ✅
Case 2 (no money):
missing + have + have >= success
-1 + 1 + 1 >= 1
1 >= 1 ✅
Case 3 (no connections):
have + missing + have >= success
1 - 1 + 1 >= 1
1 >= 1 ✅
Case 4 (no luck):
have + have + missing >= success
1 + 1 - 1 >= 1
1 >= 1 ✅
Case 5 (no money, no connections):
missing + missing + have >= success
-1 - 1 + 1 >= 1
-1 >= 1 ❌
Case 6 (no money, no luck):
missing + have + missing >= success
-1 + 1 - 1 >= 1
-1 >= 1 ❌
Case 7 (no connections, no luck):
have + missing + missing >= success
1 - 1 - 1 >= 1
-1 >= 1 ❌
Case 8 (no money, no connections, no luck):
missing + missing + missing >= success
-1 - 1 - 1 >= 1
-3 >= 1 ❌
We have: 4 possible outcomes that we want, k=4
Out of total: 8 possible combinations, n=8
Probability of achieving success using this formula is: P(A) = k/n = 4/8= 0.5 * 100% = 50% chance of being successful in this shit life
This is correct in theory. HOWEVER:
Case 1: someone having
- a lot of money
- a lot of connections
- a lot of luck
In practicality is damn near IMPOSSIBLE
Maybe 1 in 100 million people are born like this. That's 100,000,000 people / 8,000,000,000 people = 0.0125 * 100% = 1.25% of people are this blessed and gifted in life. This might be even less so we can ignore this probability as a possible outcome and average it out to realistic average joe daily life.
Therefore giving us a total of 7 combinations, 3 possibilities to succeed in this shit life
So: k/n = 3/7 = 0.4285 * 100% = 42.85% chance to be successful in this shit life
Mathematically proven how life is pure trash
Funny enough we can round it to 42%. And 42 is the answer to life, universe and everything in existence4 -
Scenario 1) Server -> proxy -> client
Scenario 2) Server -> proxy -> 2nd proxy -> client
Scenario 1 works on some web browsers
Scenario 2 always works3 -
Anyone sad/angry about Google discontinuing web hosting on Google Drive.
http://googleappsupdates.blogspot.com/...2 -
Spent 1 hour figuring out why an Exported Class ( Node.js) wasn't being picked up in a require statement by gulp. I have 2 clone software the same repo on my laptop. I put the new class on 1 repo and was running the gulp tasks from the other repo. Sigh.2
-
1. When someone Buzzes you on Jabber and wants you to join TS
2. Mum says it's dinner.
3. My little brother. -
Oh god, here comes another math post! I can feel it coming on, like werewolfism during the full moon.
I'm only passingly familiar with logarithms, so this, like everything I've stumbled on, has probably already been discovered, but
n/(1/((n^(1/n))-1))
Is a pretty good approximation (within a couple percentage points, or three or more digits) of the natural logarithm for all the numbers I've checked it on.
For example if
n = 690841693
ln(n) = 20.35342125707679
while our estimate using the above formula comes out to:
n/(1/((n**(1/n))-1)) = 20.353421612948146
Am I missing something obvious here, and if so, what?
Am I doing the idiot savant thing again, or am I just being an idiot again?10 -
Today I had the regional stage of the Romanian Olympics of Informatics.
There were 3 problems supposedly : 1 easy , 1 hard and 1 insane.
I spent time only on the "easy" one
No one took more than 50/100 at that problem :'(4 -
5000+ Lines of Code for one IntegrationTest means you are dping testing wrong.
1 day work on software 1 week on tests.
At least I'm now sure I didn't create a avoidable bug.2 -
5 mandatory leaves available, but haven't got even 1 person to spend it with. welp, i guess they will lapse and i will compromise on the 1 rule that i promised myself in work life : "never let your leaves lapse or get them encashed , always use them, you deserve it"3
-
Folow up to https://devrant.com/rants/1112459/...
Ive added the backend and did most of the ui.
Now somre logic remains and an admon page.
So far im at 1/4-1/3 LOC comparing to angularjs version. -
I know it's not really related to development, but I got in a discussion on twitter and one dude tweeted "in science, 1 isn't 1"
And so I was like "mate what? science is highly dependent on math and in math, 1 is kinda always worth math"
And this this girl comes in and just says:
"it's not true that 1 is always 1 because there's binary code as well"
And was was like totally astonished, like, have you even studied something? 1b = 1d = 1x and it's always 1 in whatever base!
(she even says she's some sort of engineer in her bio)8 -
I'm having a laptop which is powered by i5 3230M with 6G memory (1 x 4G and 1 x 2G). Sometimes I can feel the lag while I'm working on multiple IDEs. So, how much more memory do you guys suggest?
(2 x 4G) or (1 x 4G and 1 x 8G)19 -
On strong painkillers, read a rant, want to +1 it, but can't. Puzzle for a moment before realising it's your own damn rant!2
-
Microsoft Foundation Classes - MFC. Spent 1 month to make a fixed column on a grid. Counter intuitive APIs.
-
Doing some group assignments for uni
Repo 1, 60, 7, 2 commits
Repo 2, 200, 12, 1 commits
Repo 3, 55, 10 commits
You can guess which stats are mine.......
And then on the reports I have to do all the work cause I wrote all the FUCKING code ... FUCK8 -
I was trying to build this AWESOME react native application.
1. install npm and react native [3 min]
- oh wait install yarn [about 10 min]
- how about expo 1 min
- and install expo on my phone [ 1min]
2. create a react native app
umm install pod [10 min]
run npm ... figure failures and stuff [20 min]
it's been almost 1 hour now and I forgot what I was building.2 -
Holy fuck, after 1 month of not using my pc and no coding I look at the project I was working on and it looks like chinese, I don't understand anything, so step 1 it's gonna be trying to remember how this thing worked (caveman brain turned on)5
-
The platform team who provides all other teams with common framework emails everybody we need to upgrade the framework to new version. Let’s say version 1.a.0. They say it brings crucial security features and all pipelines using old versions would be blocked. My colleague created a story to upgrade all of our 10 microservices. When I got to it in a couple of days for some fucking reason they already rolled out 1.a.1 and didn’t inform anybody, the pipelines just logged warning u need to use 1.a.1. Alright, I did the upgrade to 1.a.1 and merged ducking everything in 10 fucking microservices. In a couple of days at morning they roll our 1.a.2 and require everybody to upgrade ducking degenerates as they found a high severity bug. I wanted to start again but was lazy and did nothing all day to learn that at 6pm the fuckers roll out 1.a.3!!! And again require everyone to upgrade!1!1!1eleven
Ten fuxkibg microservices. Goddamit write some unit tests, do friends&family, do fucking tests on small group of your inner clients before rolling out this shit that everybody must to use.
Spat at the display -
for 1 freaking second I was like I'll post it on stackoverflow. felt happy, but then I freaking woke up
-
Went through 60 python packages to see which fails installing on the serve. Took hrs as I have no terminal access but just via jenkins pipeline. So "edit/gitpush requirements.txt and wait" many times. Eventually looped them 1 by 1 in shell. By end of day got the list that installs.
Finally sent the whole list....with confidence
-Takes full 10 mins & Fails......
(panic mode starts)
+Changed the sequence = fails, somewhere else
+1 by 1 again = installs.....
+few random without the culprit =works
+again, whole list = fails, somewhere else
Need to sleep, brain's thinking of eagles1 -
I have 6 mosquito bites on my body. 5 on legs 1 on arm. All within 1 hour. I dont have enough hands to scratch myself. I scratch as if im some fucking cocaine addict in crisis from missing cocaine. Just Fuck OFFF OF OF ME8
-
One of my teammates signed up for a day-long session on Angular 2, since he's been doing a lot with Angular 1 and wants to transition to the new version.
The instructor spent the first half of the day going through the w3schools tutorial on Angular 1, because "understanding the basics of Angular 1 will help understand Angular 2".
Btw, this was a paid workshop session. -
Spring for .net's documentation was last updated on 8/1/11...
Now I know, why nothing is working.
Fuck this.1 -
asl has an example gif now:
(Previous post: https://devrant.com/rants/2234550/...)
https://github.com/skuzzymiglet/asl7 -
Worked with two different customers
(customer 1 is up to date because of active development and customer 2 got his update long ago)
Changed something for customer 1 and accidently pulled customer 2. 49 changesets (needs a db update probably). Rolledback and now keeping an eye on the error logs -
Assumption. Screens are wider and wider, bigger and bigger.
Solution 1: Make more one-page layout sites like there is no space on sides.
Solution 2 support solution 1: Make everything 2-3 times bigger so there can't be space on sides.
Solution 3 support solution 2: If there is some free space, call it neccessary white space.
It's a trend i see around me. Sometimes i don't get it. More than 1 year i have no side menu in designes what i coded. -
I think I have a slight problem in my API.
Snapshot 1 : API entrey point
Snapshot 2 : on "return" statement from API.
No biggies, 8 GB of RAM used.
The API ? Adds 1 ligne in database.
That's gonna be a fun debug8 -
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 -
Update:
Having a dump on a train is the equivalent of sitting on a bucking bronco that vibrates enough for you to feel like you're 1" above the bowl7 -
What do you call a function based on (w*x) / (y*z)
where w and y remain the same, and x always increases linearly with z?
For example
at one point on the graph it might look like
(60*1) / (25*1)
and on the next it equals
(60*2) / (25*2)17 -
1. Finish the product I'm working on.
2. Finish the researches left in between because of the point one -
Pushing all store builds for a tiny change that "shouldn't" break anything but testing only on 1 device on 1 OS.
Apple testing just takes too long, fuck em. -
(found on a german blog)
Apparently the DoD saw itself in the need of writing a document to assist at detecting agile bs.
https://media.defense.gov/2018/Oct/... -
useful alias when you want to inspect what is taking up space on your disk - needs GNU du
alias duh='function _blah(){ du -ahcd 1 --time $1 | sort -h -r; };_blah'
$ duh /path/to/folder | less2 -
Why the limitation to only see 30 +1 posts listed via a profile while using devRant on a desktop @dfox?1
-
Severity 1 issue on the company today... No back ends for the full country... It was even exciting, don't aak why.
-
I took a few days off to move and when I came back, my manager had posted a message in chat about how horrible one of the naming conventions was (an implementation I made). One of my co-workers then defended it and defended something else I wrote that he was complaining about.
We had a 1:1 the day I got back and holy shit ... I did loose my cool and I'm not proud of it, but the guy went totally bat shit. He said I was the problem with them team, screaming about going off and writing rouge things, how he was my boss and I needed to do what he fucking told me to.
In my 20+ years in tech, I have never had to deal with a psycho. He served work release for assault and witness tampering last year and he told us a story that made it seem like it was his all his "crazy ex-girlfriend" who made trumped up charges. After that conversation, I doubt that's the case.
He's still under house arrest for something else until the end of May too. The entire team told me not to do any 1:1 calls with him and our project manager, who is really amazing, will probably be on any calls we need to do in the future.
I've also all confidence in him as a manager. Even when our PM tried to do a retro for the team, he still passively aggressively bitched about things that obviously related to my projects and the entire team could see it. -
Since I am a contractor, I will have 2 one on one's.
The one with the client,who is an architect,will be nice.
But the 1:1 with my company's manager,whom I gotta report to ,sucks. -
!==rant
Are there any good cloud-based IDEs that:
1.) Supports C# (ASP.Net Core / MVC)
2.) Would work on a Chromebook2 -
Who thinks a study designed on +1's on a platform which promotes them as a sign of popularity and approval affecting user behavior is in order ?
-
Rembember the good old time when you just needed 10 +1's for stickers? Well live is getting harder from now on.1
-
@dfox love your work. Have an enhancement request for IOS app badge counter: tapping on notification symbol in top right corner to view +1's should be the action to clear the badge counter for +1's, not the action of tapping on individual +1's (there's nothing to read when tapping on them)7
-
How upvote whoring will be on devRant : Guys upvote this Rant to reach the upper limit on the votes counter and know what variable type it is !!!1!!1!!3
-
When people on GitHub respond to issues I subscribed to with "+1" instead of using reaction emojis. 😡 I get an email everytime...
-
clicking on file tabs in intelliJ is making the project navigator (cmd+1) expand and collapse randomly and its driving me insane
-
MCIA-LEVEL-1 MuleSoft Certified Integration Architect - Level 1 test is one of the MuleSoft affirmation tests, which can upgrade your position and work on your life. However, how do get ready for the MCIA-LEVEL-1 test well and pass it effectively? While scanning on the web asset for MCIA-LEVEL-1 MuleSoft Certified Integration Architect - Level 1 test, DumpsCafe strongly prescribes you pick an online MCIA-LEVEL-1 practice test. MuleSoft Certified Integration Architect - Level 1 MCIA-LEVEL-1 test questions are kept in touch with the best expectations of specialized exactness, given by our guaranteed well-informed authorities and distributed creators for advancement. You will pass MCIA-LEVEL-1 MuleSoft Certified Integration Architect - Level 1 test with online review materials, 100% cashback included.
Get ready to pass the exam with the help of the MuleSoft MCIA-LEVEL-1 exam:
Readiness of accreditation tests could be covered with two asset types. The first is the review guides, reference books, and study discussions that are explained and suitable for developing data starting from the earliest stage. Aside from the video instructional exercises and talks are a decent choice to facilitate the aggravation of through study and are somewhat make the review cycle really fascinating in any case these interest time and fixation from the student.
Brilliant up-and-comers who wish to make a strong establishment out and out assessment themes and associated advancements commonly blend video addresses with a concentrate on advisers for harvest the upsides of each, however, practice tests or practice test motors is one significant review device that goes ordinarily unnoted by most competitors.
Practice tests are planned with our specialists to make test possibilities test their insight on abilities accomplished in the course, just as possibilities become agreeable and acquainted with the genuine test climate. Measurements have shown test uneasiness assumes a lot greater part in an understudy's disappointment in the test than the dread of the obscure.
Confirmation questions master group suggests setting up certain notes on these subjects alongside it remember to rehearse MuleSoft MCIA-LEVEL-1 dumps which had been composed by our master group, each of these can help you loads to clear this test with superb imprints.
DumpsCafe gives you the latest MCIA-LEVEL-1 exam questions:
DumpsCafe has in addition presented two or three supporting devices and learning modes that will help you in having a fitting enthusiasm for the fundamental limits and to additional work with your MCIA-LEVEL-1 dumps status association with getting MuleSoft Architect attestation with a guarantee. A couple of up-and-comers need to further develop abilities to get movements or others need to have a promising beginning in the MuleSoft MCIA-LEVEL-1 dumps announcement world and with this part, they can plan as shown by their singular basics.
DumpsCafe MCIA-LEVEL-1 test dumps are similarly open in the pdf plan so you can use this report in any of your splendid devices whether it is a PDA, tablet, or even a PC. We have made this relationship in the pdf record so it can end up being less difficult for you to utilize and you can start perusing for your MuleSoft Certified Integration Architect - Level 1 test wherever.
MuleSoft MCIA-LEVEL-1 content makes you ready for the real exam:
Rather than following the ages-old idea of MuleSoft Certified Integration Architect - Level 1 test readiness utilizing voluminous books and notes, DumpsCafe has presented a brief, direct, and most important substance that is incredibly useful in passing any accreditation MuleSoft Certified Integration Architect - Level 1 test. For an occurrence, their MCIA-LEVEL-1 refreshed review guide covers the whole prospectus in a particular number of inquiries and replies. The data, given in the review questions, is streamlined to the level of a normal test competitor. Any place, it is fundamental, the appropriate responses have been clarified further with the assistance of reproductions, diagrams, and additional notes.
Conclusion:
Need to pass your MuleSoft MCIA-LEVEL-1 test in the primary attempt? Download the most recent MuleSoft Certified Integration Architect - Level 1 MCIA-LEVEL-1 dumps and invest however much energy as could be expected to rehearse before your MuleSoft Certified Integration Architect - Level 1 exam. Passcert group profoundly proposes everybody purchase MuleSoft Certified Integration Architect - Level 1 MCIA-LEVEL-1 dumps when you will take your test in several weeks. Please keep sufficient opportunities to practice. DumpsCafe guarantees 100% passing your MuleSoft certificate MCIA-LEVEL-1 test effectively.
For more info: www(dot)dumpscafe(dot)com/Braindumps-MCIA-Level-1.html1 -
Running npx google-artifactregistry-auth in three simple steps:
1. Run npx google-artifactregistry-auth
2. Interrupt the process because it will inevitably get stuck on retrieving credentials
3. Run npx google-artifactregistry-auth
Then to install packages you need just 3 simple steps!
1. Run npm i
2. Interrupt when it gets stuck on reify
3. Run npm i3