Details
-
Skillsreact/redux, Express, MERN, TailwindCSS
-
LocationSalt Lake City
-
Website
-
Github
Joined devRant on 10/8/2019
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
-
anyone care to share their opinion on using angular over vue?
I'm going to have a project come up soon that's driven heavily by multiple api backend services and I'm leaning heavily towards vue due to the extensibility and the small learning curve.9 -
Found out my wife is pregnant with twins. Had to give up my office for an alcove in the kitchen. Finished getting everything made/installed last week.
Stay safe7 -
*has a great company name idea*
*tries to register domain*
*domain taken*
*looks at whois*
*i already own it*
i don’t know how to feel11 -
Me - I am sorry my dog eats my homework
Comp sci professor - your dog eat your coding assignment?
Me - ...
Professor - ...
Me - it took him couple bytes10 -
context: I'm sort of a self-deprecating guy and I really don't look for validation.
So, i decided to fuck it. I tried to provide the best decisions in terms of money-wise/biz-wise but apparently this guys rather choose what he believes is best for the code... (he knows shit of coding and that's coming from someone who is not a software engineer but rather a physicist who happens to code).
So, now i let him make all decisions. no opinion from me. a few things are going to shit because of him... fuck it. i had it. as long as I get paid. fuck him.
this is probably common... sorry for the rant.7 -
Today I discovered first thing I personally prefer in JS over PHP.
let's say you have:
//pseudocode
if(sth){
let ret = 1;
} else {
let ret = 2;
}
if(sth_else){
return ret.toPrecision(2);
}
return ret.toPrecision(8);
In PHP this will work. JS will throw up becouse it managed to separate scopes. Its actually what I would like to be the case with PHP.22