TheFrontEndπŸ”₯
10.6K subscribers
275 photos
56 videos
8 files
532 links
πŸ“ Articles
πŸ—ž News
πŸ‘“ Tutorials
πŸ€” UI/UX thoughts

on front endπŸ’‘ mobileπŸ“± and web dev πŸ–₯

Admin: @masant1
Download Telegram
Interesting fact. Try to guess if its more or less than Boeing 787 avionics + its online system?

#facts
How to become a frontend developer roadmap to assist your learning.

Nicely visualised that you shouldn't jump into Angular/React right from the start☝️
Critical thinking in software development

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)
This media is not supported in your browser
VIEW IN TELEGRAM
LottieFiles - an online community to find, test and share striking animationsπŸ’Ž
Found this Russian book in one of the North Korean libraries πŸ€·β€β™‚.

It called: Business for beginners. How to open an online shop from scratch

I think they are pranking themselves with this πŸ˜‚
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.
What programming languages do hackers use?

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?
Forwarded from Dev Useful Stuff
​​Vuido (β˜… 3,498) makes it possible to create lightweight, native desktop applications using Vue.js. Applications using Vuido can run on Windows, OS X and Linux, using native GUI components, and don't require Electron.

#js #desktop #vuejs
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✊.
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?
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 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)
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:

β€”β€”β€”β€”
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 🀘

β€”β€”β€”β€”
Introducing the Single Element Pattern

Rules and best practices for creating reliable building blocks with React and other component-based libraries.
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πŸ”₯
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.
That's gonna be quick:

Not number is not a number?

console.log(NaN === NaN);