🤖 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
​​The HTML 5.2 spec introduced a dialog element that makes it easy to implement native modals and pop-ups. Modals are an important part of almost any non-trivial web app, so it’s promising to think that there’s finally a way to implement one without re-inventing the wheel each time. You can click the button below for an example modal created using the dialog element

5 min read

#HTML
​​Recording audio involves a series of steps:

1) Start recording the audio
2) While recording, store the audio data chunks
3) Stop recording the audio
4) Convert the audio data chunks to a single audio data blob
5) Create a URL for that single audio data blob
6) Play the audio

4 min read

#Audio #JavaScript
​​Detecting the location of your website’s users is useful for a variety of reasons.
You might, for instance, want to display different content, perhaps in different languages for people from different countries, or display targeted information to visitors from different locations.

3 min read

#JavaScript #API
🤖 Coding News ⚡️ pinned «​​​​​​JavaScript is one of the most popular programming languages in the world, and is now widely used also outside of the browser. The rise of Node.js in the last few years unlocked back-end development - once the domain of Java, Ruby, Python, PHP, and more…»
​​To simplify shopping for razors we built a performant, visually-appealing, and secure site. Our architecture performs well across browsers and devices, emphasizes developer ergonomics and modern tools, and lets us continuously deploy with confidence. We think shopflamingo.com can be a model for how to architect other e-commerce sites.


7 min read

#JAMstack #Gatsby #eCommerce
​​In this article I am going to talk about two different ways of authentication: stateful and stateless authentication. If you have learnt about networking, you may already heard about stateful and stateless, but in this article I am going to give these two adjectives other meanings.

5 min read

#Auth #Security
​​Coding conventions are style guidelines for programming. They typically cover:
• Naming and declaration rules for variables and functions.
• Rules for the use of white space, indentation, and comments.
• Programming practices and principles

8 min read

#Programming
The best advice I received about securing my first job as a web developer was to attend meetups.

6 min read


#Programming
​​How it should be done in 2 weeks

#Humor #GIF
​​Becoming a full-stack developer is the goal of a lot of developers. Being able to create a complete software product, getting to understand how the whole system work and the very nice wage increase(Over £5,500) are all reasons people want to level up their skills and become a full-stack developer.

4 min read

#Fullstack #Serverless #NodeJS #Lambda
At the coding bootcamp where I teach, “How do I upload images with React?” is a question that comes up repeatedly. As with any programming problem there are a million ways to achieve this outcome with various tradeoffs.

6 min read

#React
​​When HTML5 introduced the <video> and <audio> tags, they made your media files genuinely accessible to the Internet. HTML5 videos are fast replacing Flash Player and other similar third-party media players. Historically, it’s been quite a cumbersome process to get media to play correctly. Often the <embed> and <object> tags would need to be used which would assign an extensive list of parameters to get the media playback working.

7 min read

#HTML #JavaScript
​​It was always complicated to flatten an array in #JavaScript. Not anymore! ES2019 introduced a new method that flattens arrays. And there’s a “depth” parameter, so you can pass in ANY levels of nesting. AMAZING 🤩

3 min read

#JavaScript