🤖 Coding News ⚡️
27.2K subscribers
2 photos
1 video
807 links
High quality articles, videos, and tutorials about programming 💻

HTML, CSS, Sass, JavaScript, TypeScript, React, Angular, Electron, Node, Vue, GraphQL and other topics 💥

@CodingChat talk with other engineers
@CodingNewsFeedbackBot advertisement
Download Telegram
​​atsby + Redux is a powerful combination when building static web-apps with dynamic features. With Gatsby 2, it has never been easier to get up and running. Today, I’m going to guide you through the steps needed.

4 min read

#Gatsby #Redux
​​One of the most common UI components that I have had to build and use, seemingly on a day-to-day basis, is one where content is displayed in a container after some user interaction like a click or tap.

3 min read

#UI #HTML
​​In this article, I’ll walk you through my strategy for solving programming problems from start to finish, which I use both in my daily work at Google and with programmers of all levels (bootcampers, university students, and interns alike) as they learn and grow.

6 min read

#Programming
​​https://t.iss.one/ReactJSNews/20

The React Handbook follows the 80/20 rule: learn in 20% of the time the 80% of a topic. Amazing tutorial which is going to give a lot of understanding on how React and it’s ecosystem work.

2 hours read

#React
​​The world’s top tech firms test candidates’ knowledge of algorithms and how fast these algorithms run. That’s where Big O Notation comes in. This article explains what it is, and provides practical examples of real world algorithms and their Big O Classification.

20 min read

#Algorithms #Interviews
​​Understanding the impact of choosing the right tech stack is a major factor of success for freelance developers. This guide explores key questions that you should answer when picking the best technologies for your client’s application or website. We urge you to read it before hopping carelessly on the latest JavaScript framework.

7 min read

#Programming
​​​​So you might have clicked on this article because you are curious. You are curious to know why someone would differentiate a programmer from a coder. You might be thinking “well aren’t they the same thing?” A lot of people do think they are. However in my eyes I see a big difference between a programmer and a coder. Let me explain.

4 min read

#Programming
​​We often hear about algorithms, but there aren’t many tutorials that give you a sample demonstrating how to actually write one. Algorithms solve specific problems. In this case, we will draw a line on a custom raster “display” consisting of HTML elements. Of course, it is easier to simply use canvas, WebGL or some other library to draw lines. But by doing that you’re not really learning how to write your own. You will probably never have to write code to draw a line on the computer screen during your entire career as a web developer. But in this tutorial we’ll take a look at one of the most simple algorithms in computer history as an example to demonstrate the basic principles!

10 min read

#Programming #Algorithms #JavaScript
​​Web Components are a set of APIs that allow you to create custom HTML tags and use them alongside standard tags. They provide many advantages such as portability across projects, encapsulation of state, and access to a shadow DOM. Web Components are also functionally independent from frontend frameworks. You can use your components in a React, Angular, Vue, or vanilla project.

8 min read


#WebComponents #React #JavaScript
Programming languages as humans
​​If you are thinking of building a static site with React and want it to perform as fast as a cheetah, you should consider using GatsbyJS. I decided to try it out and was amazed with how easy it was to setup, deploy, and how fast the site loads now. Gatsby uses the best parts of other front end tools to make the development experience feel like you’re on vacation.

7 min read ⚡️

#Gatsby #React
​​A static website contains Web pages with fixed content. Technically, it is a simple list of HTML files, which displays the same information to every visitor. Unlike dynamic websites, they do not require any back-end programming or database. Publishing a static website is easy: the files are uploaded on a simple Web server or storage provider. The two main advantages of static websites are security and speed: there is no database so it can not be hacked and there is no need to render a page for each request, which makes Web browsing faster.

8 min read

#Gatsby #Strapi
​​I’ve noticed a lot of confusion in the industry about various software roles and titles, even among founders, hiring managers, and team builders. What are the various roles and responsibilities on a software team, and which job titles tend to cover which roles?

15 min read

#Roles #Titles
​​​​​​​​React.js Resume Template

https://iamskok.github.io/react-resume/

Show your support by staring the project ⭐️

The link on GitHub repo is below 🔽

#React #ReactRouter #GitHub
​​Today, 30 years on from my original proposal for an information management system, half the world is online. It’s a moment to celebrate how far we’ve come, but also an opportunity to reflect on how far we have yet to go.

5 min read


#Internet
​​Google wants to improve the web experience, fast. Site performance is a core concern for the tech giant, especially since they revealed in early 2017 that the average website load time on mobile was 22 seconds, while also revealing that 53% of users quit a website on mobile if it takes longer than 3 seconds to load.

5 min read

#MachineLearning
​​​​Single Responsibility Principle (or SRP) is one of the most important concepts in software development. The main idea of this concept is: all pieces of software must have only a single responsibility.

You can read other posts from our reader - Nikita Sobolev on his blog https://sobolevn.me/

21 min read


#Python
​​The newest debate in town is whether you should keep your services in a single repository or multiple small repositories.

5 min read


#Git #Repo
​​Are you always mystified, like me, whenever you come across words like Buffer, Stream, and binary data in Node.js? Does that feeling make you shrink from understanding them, thinking they are not meant for you but only for Node.js gurus and package developers to understand?

9 min read

#NodeJS