🤖 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 canvas element is used to draw “raster” graphics on a web application. The Canvas API provides two drawing contexts: 2D and 3D, and in this guide, we’re going to talk about the 2D one (which I’ll refer it to the Canvas API for simplicity).

17 min read

#HTML
​​If you are savvy on the latest tech news, you might have heard of GitHub’s release of TeleType. Teletype is a plugin that was built by a remote three person team and allows for collaborative editing in the Atom code editor.

14 min read

#WebRTC #RealTime #TextEditors
​​​​I’ve created a very simple way to face match two images using HTML5 and JavaScript. You upload the verification picture you’d like to use, take a snapshot from the video streaming from your camera/webcam, then use a face matching API to retrieve the results. Simple.

8 min read

#FaceRecognition #JavaScript #HTML
​​In this short article we will go through the concept of fragments and how you can reduce the code of your queries and match the exact data needs for your UI.

3 min read

#GraphQL
​​Lists are an important aspect within your app. Every application is bound to make use of lists in some form or the other.

5 min read

#React
​​This article explains how the dotenv package is the basis for implementing environment variables in JavaScript and how to use environment variables with project bundlers and popular front-end frameworks.

7 min read

#JavaScript
​​GraphQL’s main benefit for frontend developers has always been excellent tooling and developer experience.

6 mins read

#GraphQL
🤖 Coding News ⚡️ pinned «​​I recently decided to improve unit test performance on a newly joined project. It felt like it takes too long to test the whole suite (32 tests only) as well as test a separate file in isolation with watch mode. The direct consequences of that are that developers…»
@DeepLearning_AI

Artificial Intellegence && Deep Learning

Channel for who have a passion for -
1. Artificial Intelligence
2. Machine Learning
3. Deep Learning
4. Data Science
5. Computer vision
6. Image Processing
7. Research Papers
8. Related Courses
9. Free Ebooks
10. Advancements

Join👇👇👇
@DeepLearning_AI

https://t.iss.one/DeepLearning_AI
​​During my time at Flatiron School, the majority of our time learning frontend development was spent working with Vanilla JavaScript, React, and Redux. Recently, I started working on a project that uses Vue.js, and I had to familiarize myself with the popular JavaScript framework.

6 min read


#Vue
​​Within the community we’ve been debating the best practices for many years, but there are a few that have been relatively accepted for most of that time.

7 min read


#Serverless
​​Data Driven Documents (D3.js) is a JavaScript library used to create visualizations of data using HTML, CSS, and SVG. It does this by binding data to the DOM (Document Object Model) and its elements and allowing them to transform when the data changes.

8 min read

#D3 #React
🤖 Coding News ⚡️ pinned «​​You’ve always wanted to start learning to code in the Vue framework, but somehow you just haven’t have the time in your busy schedule. 5 min read #Vue»
​​A senior dev whom I respect for his technical prowess called me this morning. He called to fret over the meagre 12% raise he got, against a junior dev working under him and got 40% raise — his compensation now totaling 85% of the senior dev supervising 10 other junior devs like him.

7 min read

#Job #Compensation
🤖 Coding News ⚡️ pinned «​​This article will explain the difference between the commands and how you can use them effectively in your Dockerfile and docker-compose.yml. 4 min read #Docker»
​​In software management, we often change our code and all these changes need to be tracked. As our projects grow, all the dependencies of the projects increase as well. If you want to make changes to your project and move forward, you need to make sure all your dependencies works with your current changes as well. We can’t move forward if these dependencies are too tight or loosely defined. This is called dependency hell.

6 min read


#Software