Details
-
AboutCan't design for shit
-
SkillsJavascript, C, C++, Ruby, Python, RoR, Nodejs, React, Vue, Angular, Ionic
-
Github
Joined devRant on 7/24/2017
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
-
@zemaitis zemaitis
-
Congrats on the basic humor.
-
Thats why I only - ONLY - read books.
Dont even bother finding a video tutorial or course (looking at you udemy)
Most of these guys just follow the "quick start" guide of XYZ framework and record it on video. Im always amazed people actually seem to buy this trash -
@potata Well, they shouldn't. So its their fucking problem.
(😆) -
If your pc can't handle an electron app in 2019 its your fucking problem - go buy another 8gb of ram, its pretty cheap
-
Instead of complaining, try to understand why your PR was blocked.
Peer reviews are one of the best tools of self improvement, I'm always excited when I get comments from my colleagues on my PRs, even for minor fuck ups.
The reviewer who blocked your PR was 100% on point, it's always better to write self documenting code, instead of relying on comments.
Remember - only code tells the truth. Words can be misleading.
And why would anyone also want to maintain the comments anyhow? -
@martygeek
You sound completely ignorant. I'm sorry but I wouldn't hire someone who can't implement a basic sorting algo in my company.
Yes, of course we always use libraries for that sort (pun intended) of stuff, but you need to prove some of your "academic" knowledge by implementing a simple sorting algo. -
Good luck leaving chrome for a better browser
-
@ganjaman Care to elaborate?
-
@h4xx3r All of them valid comments, thanks for taking the time to post!
I prefer black themes also, but it's targeted at corporate people and corporate people seem to only care about white :/ But we're preparing a whole new UI which will support a darker theme as well
as for points 3 and 4, I will forward them to the team. We know about the LTE connection thing, but need to investigate the one with the camera
really appreciate your comments, thank you -
@taigrr If you give me your email I will gladly check what went wrong (even the first few characters of the email are enough if you don't want to post the whole thing)
thank you for trying it out! -
@irene If you mean producthunt's site, we cant really do anything about that :(
-
@davenall Hmm which one? We only have a youtube video!
-
@alvarlagerlof oh my... completely forgot, its a crazy day today
Here's the link if anyone wants to take a look https://producthunt.com/posts/... -
If you live in 2018 like the rest of the world, yes you need to enable js
-
@arraysstartat1 this is actually genius
-
@irene and what about documentation or references on the project you re working on?
-
Ubuntu or mint. No reason to mess with arch and the rest, unless you don't value your time and want to spend it fixing the os on every update
Stick with the most popular so you can find guides and fixes easily, mint and Ubuntu are almost the same -
@orseji that killed me
-
@mlask Yup, because when someone switches from macos to windows they have nothing to complain about :)
-
Buy magnet(1$) for window snapping and download hyperswitch to get your alt tabbing back
Macos window management sucks, above tools help you forget -
Well, software is built by teams
-
@N-o-X MacOs and multitasking don't really go together, until apple fixes their retarded management system
-
@zaidoman I see! I consider the small form factor a plus, unless you have any wrist pain
Thanks for the reply 🙃 -
Is the keyboard worth it? Was just about to buy it
-
Step 4: make the fucking actual windows behave like on every other Linux distro/Windows installation
-
Those shitty gaming companies, developing more demanding games when some ppl cant afford a faster gpu.....
-
Do you really expect a company to pay twice the amount of devs to develop for every platform natively, just because you can't afford 16GBs of RAM in 2018?
-
Ah, classic.
-
@Proximyst well it certainly makes the code a lot more readable. If you see a !! you know it's either true or false.
when you're creating an api,let's say for your team, you want your functions to be explicit in what they return. Let's say you have a
const hasUsername = user => !!user.email
It's better to return true or false rather than relying to the other person to check for null/undefined/empty string etc
Not the best example but I hope you get the point 😁