Critical thinking in software development
Have you ever heard this:
But when you hear such argument, does your opponent considers you unique scenario?
Found a great article for you that proves that this is not always the case and describes other typical misconseptions and stereotypes in software development.
πΆ Definetly have a read ( 9 min)
Have you ever heard this:
Good code should always be DRY (Don't repeat yourself)But when you hear such argument, does your opponent considers you unique scenario?
Found a great article for you that proves that this is not always the case and describes other typical misconseptions and stereotypes in software development.
πΆ Definetly have a read ( 9 min)
Hackernoon
Critical thinking in software development, the word βshouldβ, and why you shouldnβt listen toβ¦ | HackerNoon
This media is not supported in your browser
VIEW IN TELEGRAM
LottieFiles - an online community to find, test and share striking animationsπ
I keep getting requests for free online dev courses. What I normally say is don't limit yourself like that and if you really want to master specific topic prepare to go through both: free and paid material.
Wrote an article to elaborate a bit on this.
Wrote an article to elaborate a bit on this.
Teletype
Paying for online courses: Good or Bad
Let's get right to the point: how often you think "ah, paying 15$ for udemy or coursera course is not worth it"?
What programming languages do hackers use?
Good article describing top 5 languages.
πRead time: 8 min
Good article describing top 5 languages.
πRead time: 8 min
This media is not supported in your browser
VIEW IN TELEGRAM
Someone just told me that promoting 'informative channels' in telegram is useless and people don't need it as they only need movies, memes and porn.
Wait. What?
Do you agree with that?
Wait. What?
Do you agree with that?
You asked about personal recommendations for good quality channels that I follow myself.
The above post is from @dev_useful_stuff - a small channel that collects all the good dev stuff and share it in a very nice, short format.
The content is similar to what you saw on this channel in the beginning (well, before it somehow got mixed with a travelling blogπ€·ββπ) - the NK story is on its way, guys.
Anyways, have a look at the channel - give the guy some support for what he is doingβ.
The above post is from @dev_useful_stuff - a small channel that collects all the good dev stuff and share it in a very nice, short format.
The content is similar to what you saw on this channel in the beginning (well, before it somehow got mixed with a travelling blogπ€·ββπ) - the NK story is on its way, guys.
Anyways, have a look at the channel - give the guy some support for what he is doingβ.
How commenting your code can screw you over π€·ββ
As some say extensive comments are used to either compensate too long, unreusable code or simply stuff noone understands.
As an example to prove the point, look over the 2 code snippets, which one is easier to grasp?
As some say extensive comments are used to either compensate too long, unreusable code or simply stuff noone understands.
As an example to prove the point, look over the 2 code snippets, which one is easier to grasp?
This media is not supported in your browser
VIEW IN TELEGRAM
How to set-up a powerful API with Nodejs, GraphQL, MongoDB, Hapi, and Swagger
What a pleasure to read a well explained article with links to fill all the possible gaps you might have.
No idea what
And if you think I am speaking chinese - the article is for you.
Building strong APIs is something that can transform you from an average developer to a good one and allow you service to be flexible enough for adding extra functionalities.
πΆ Read time: 9 min (but might take longer for filling the gaps)
No idea what
Hapi.js is or don't know how is it better than Express? Still not sure why mongodb should go with mongoose or how to connect it with mlab? And if you think I am speaking chinese - the article is for you.
Building strong APIs is something that can transform you from an average developer to a good one and allow you service to be flexible enough for adding extra functionalities.
πΆ Read time: 9 min (but might take longer for filling the gaps)
freeCodeCamp.org
How to build blazing fast REST APIs with Node.js, MongoDB, Fastify and Swagger
By Siegfried Grimbeek Presumably no web developer is a stranger to REST APIs and the challenges that architecting an effective and efficient API solution brings. These challenges include: Speed (API Response Times) Documentation (Clear concise docum...
Let's have a look at something useful.
Imagine your are JS ninja. π₯
You (obviouslyπββ) would know that there are comparison operators that type-cast:
And the ones that don't:
And then:
ββββ
ββββ
Which is why it's always a good idea to use === as it will check that both operands are identical
ββββ
ββββ
Imagine your are JS ninja. π₯
You (obviouslyπββ) would know that there are comparison operators that type-cast:
==/!= And the ones that don't:
===/!== And then:
ββββ
1=="1"; //true
false == " nt "; //true
[[ ]], [[ ]] == true; //true
//FUCKED UP π€―? Agree.ββββ
Which is why it's always a good idea to use === as it will check that both operands are identical
ββββ
1 === "1"; //false
false === " nt ";. //false
[[ ]], [[ ]] === true; //false
//thats better π€ββββ
This media is not supported in your browser
VIEW IN TELEGRAM
ALTERED CARBON - another cyberpunk recommendation for your spare evenings after coding.
8.2/10 on IMDB
Watch where technology can lead us in the futureπ₯
8.2/10 on IMDB
Watch where technology can lead us in the futureπ₯
This media is not supported in your browser
VIEW IN TELEGRAM
Another great UI visualisation for AI chatbot interaction for you
This media is not supported in your browser
VIEW IN TELEGRAM
Good morning y'all!
To get yourself up and running, give your brain a quick challenge below.
And make yourself some coffee β you'll need it.
To get yourself up and running, give your brain a quick challenge below.
And make yourself some coffee β you'll need it.
That's gonna be quick:
Not number is not a number?
Not number is not a number?
console.log(NaN === NaN);