DEV Community

Cover image for 20 Articles for Web Developers | Reads for the upcoming week
Full Stack Geek
Full Stack Geek

Posted on

20 Articles for Web Developers | Reads for the upcoming week

In this article, we would be listing out articles across various dev communities that web developers should read this week

1) Better Unbound Python Descriptors
About This Article: Welcome back from another hiatus! This post is a facepalm post because I recently realized that I've been an idiot for so long. I have a tendency to make things more complicated than they need to be, as can be seen in my articles about instance properties.
Read the complete article here: Better Unbound Python Descriptors

2) How to modify “remember me” expired time in Laravel?
About This Article: In this article, we will be discussing the way you can easily customize the default expiration time of remember me token in Laravel. We would also be getting to know the default value of expiration time of remember me token in Laravel.
Read the complete article here: How to modify “remember me” expired time in Laravel?

3) Reusable Code: The Good, the Bad, and the Ugly
About This Article: The mythical "reusable code" idea has existed for decades. It showed up shortly after the first lines of code were written. We preach reusability and sometimes strive for it, but it rarely becomes a reality. I've seen various levels of success with this over the years. Everything from "we have a reusable library that 75 percent of us use" to "we have shared code libraries here, but never use them in your projects."
Read the complete article here: Reusable Code: The Good, the Bad, and the Ugly

4) Var vs Let in JavaScript
About This Article: In this article, we would be discussing the long run debate of var vs let in Javascript. We would also be discussing why the usage of let is increasing in dev communities. Declaring variables in Javascript was not a cake walk up until 2015 when ECMA 2015 was introduced and hence let and const was introduced and we got rid of var (It still works though!).
Read the complete article here: Var vs Let in JavaScript

5) How to Test Storybook Components in Angular Applications
About This Article: To better understand the Applitools Storybook SDK for Angular, here is a tutorial on how to build a small Angular application from scratch, adding some Storybook stories, and then finally performing visual regression testing using the Applitools SDK to generate snapshots for us to view and analyze.
Read the complete article here: How to Test Storybook Components in Angular Applications

6) Asynchronous JavaScript | Callbacks | Closures | Promises
About This Article: In this article, we are going to discuss Asynchronous tasks in significant depth. We will be discussing what exactly are Asynchronous tasks, what the hack are callbacks, closures, promises and much more in the context of JavaScript.
Read the complete article here: Asynchronous JavaScript | Callbacks | Closures | Promises

7) A Primer on Data Compression
About This Article: Let's talk about statistical mechanics for a second. Suppose we have a system of 4 particles, labeled a through d, each of which can be in one of two states. We can call them the 0 state and the 1 state. A particle has one "unit" of energy when it's in the 1 state, and no energy when it's in the 0 state.
Read the complete article here: A Primer on Data Compression

8) Implementing OTP in PHP using Twilio
About This Article: Verifying a phone number using OTP (One Time Password) is a sure shot way to reduce the spam over your website. In this article, we will be going to discuss this topic in great detail. We will be learning how we can set up our PHP code to send the OTP to the mobile numbers and hence verifying the user.
Read the complete article here: Implementing OTP in PHP using Twilio

9) Tic-Tac-Toe with the Minimax Algorithm
About This Article: In this article, I'd like to show an implementation of a tic-tac-toe solver using the minimax algorithm. Because it's such a simple game with relatively few states, I thought that tic-tac-toe would be a convenient case study for machine learning and AI experimentation. Here I've implemented a simple algorithm called minimax
Read the complete article here: Tic-Tac-Toe with the Minimax Algorithm

10) Introduction to Elasticsearch and the ELK stack
About This Article: In this article, we are discussing Elasticsearch. We would be starting with the introduction of Elasticsearch, will be having a brief discussion over so-called ELK stack. We would then move to the architecture of Elasticsearch and what the heck are nodes, clusters, shards, indexes, documents, replication and so on. So let's start.
Read the complete article here: Introduction to Elasticsearch and the ELK stack

11) Research: The Skills You Need to Boost Your Java Career in 2019
About This Article: Since 2001, Java’s lowest position in the Tiobe rating has been #2. In 2019, Java became the 5th most popular coding language in the world, according to StackOverflow Developer Survey.
Apart from the numbers, as I’m writing these lines, my laptop asks me to update Java, which I need for a bunch of programs such as text processors and scientific packages.
Read the complete article here: Research: The Skills You Need to Boost Your Java Career in 2019

12) Redis vs MySQL Benchmarks
About This Article: n this article, we would be discussing the performance benchmarks of Redis and MySQL. To begin with, we would start with the introduction and installation of Redis over Ubuntu Machine. Then we would move towards the benchmarking between these two.
Read the complete article here: Redis vs MySQL Benchmarks

13) DevOps: Tools vs. Mindset
About This Article: DevOps is quite common nowadays in the IT industry, from technical conferences and seminars to podcasts and more. Everyone seems to be talking about it, a lot of us know how to use it and implement it, while others are still willing to know more.
Read the complete article here: DevOps: Tools vs. Mindset

14) What should I learn after PHP | Roadmap 2019
About This Article: In this article, we would be discussing the roadmap a developer should follow after learning/working in PHP or any other language for a significant amount of time.
Read the complete article here: What should I learn after PHP | Roadmap 2019

15) Deploying With Distillery and Docker
About This Article: I use Distillery to generate Erlang releases for my Elixir applications. Through this post, I'll explain how I generate the releases that get shipped to production.
I use Docker to ensure that the final Erlang release is always the same across production instances. This approach also allows me to avoid generating the release on production, which means my production instances stay slimmer by not having Erlang, Elixir, and Node installed natively.
Read the complete article here: Deploying With Distillery and Docker

16) Best PHP Frameworks (2019) | Google Trends | Stack Overflow Insights
About This Article: In this article, we will be discussing the best PHP Frameworks along with their pros and cons in great depth so that one might get a clear understanding of which one to chose. Our comprehensive research would include some Latest PHP Frameworks.
Read the complete article here: Best PHP Frameworks (2019) | Google Trends | Stack Overflow Insights

17) Modern Web Components
About This Article: I'm the lead on Santa Tracker. Yes, I know it's June right now—pretty much as far from the holidays as you can get.
I want to talk about Web Components. A quick refresher: these are Custom Elements which might use Shadow DOM, allowing elements of your own name that have their own CSS, styling and DOM contained within them.
Read the complete article here: Modern Web Components

18) InnoDB vs MyISAM | Storage Engines | Tabular Differences
About This Article: In this article, we would be discussing Main Differences between Storage Engines like InnoDB and MyISAM, written in Tabular form for great understanding.
Read the complete article here: InnoDB vs MyISAM | Storage Engines | Tabular Differences

19) Microservices Chassis Pattern
About This Article: Nowadays, every developer is talking about implementing microservices and a whole new set of microservice patterns. It really is important to know whether the service that you are writing is a microservice or not. You may end up writing a fat service or a monolith if you do not identify the boundaries of the service and know when to break it into a smaller set of services.
Read the complete article here: Microservices Chassis Pattern

20) PHP Cookies and Sessions | Detailed Explanation | Coding Examples
About This Article: In this article, we would be discussing the Concepts like Sessions and Cookies in great depth with Coding Examples in PHP. We would be seeing the differences between Sessions and Cookies in PHP. We would also be learning how to set Sessions and Cookies in PHP through Coding Examples.
Read the complete article here: PHP Cookies and Sessions | Detailed Explanation | Coding Examples

Oldest comments (0)