Tag: Web development
-
Vue.js app performance optimization: Lazy loading Vuex modules
Posted on March 18, 2019, Level intermediate Resource Length medium
Filip Rakowski wrote this blog series about optimizing Vue.js application for perfromance. He focuses on code splitting our state management -- Vuex modules.
Tags nodejs frontend web-development
-
Programming concurrency in C++
Posted on March 7, 2019, Level intermediate Resource Length medium
The first in series of articles by Mehreen Tahir about programming C++ and introduce you to the features C++ offers in order to support concurrent programming. C++ was originally designed to support only single thread programming. In every application, there is one default thread.
Tags web-development programming software-architecture distributed
-
Structuring applications in Go
Posted on March 5, 2019, Level intermediate Resource Length medium
An article by Liam Andrew Cura about his Gog journey. For him the hardest part of learning Go was in structuring his application. Go doesn't prescribe any particular project layout or application structure and Go's conventions are mostly stylistic.
Tags golang web-development programming software-architecture
-
Laravel OOP principles for writing better code explained
Posted on February 20, 2019, Level intermediate Resource Length medium
An blog post by Peter Matisko about PHP framework Laravel and how to use Object Oriented Programming (OOP) for writing better code.
Tags php programming web-development oop
-
Running Concourse-based CD on Azure Kubernetes
Posted on February 12, 2019, Level intermediate Resource Length long
Roman Alekseenkov published this straightforward tutorial about getting Concourse based continous delivery running on Azure Kubernetes. The author guides you through what it takes to stand up and operate your own full CD stack on Kubernetes.
Tags web-development devops azure software-architecture cicd
-
Practical introduction to functional programming
Posted on February 5, 2019, Level beginner Resource Length medium
Mary Rose article focusing on practical aspects of functional programming. Many functional programming articles teach abstract functional techniques. That is, composition, pipelining, higher order functions. This one is different. It shows examples of imperative, unfunctional code that people write every day and translates these examples to a functional style.
Tags javascript programming web-development functional-programming
-
Structurae: Data structures for high performance JavaScript
Posted on February 3, 2019, Level intermediate Resource Length long
Maga D. Zandaqo published an article about high performant data structures in JavaScript. After author's last attempt to speed up a Node.js server by replacing some JavaScript with a native addon yielded less than exciting results, he has decided to collect and share some common structures he uses to optimize my JavaScript code: structurae.
Tags web-development programming javascript performance
-
Kubernetes ingress controller setup using KOP and Nginx-Ingress
Posted on January 26, 2019, Level beginner Resource Length short
A tutorial by Lokesh Jawane explaining how to set up Kubernetes ingress controller using kops (Kubernetes Operations) & Nginx-Ingress. Kops automates the provisioning of Kubernetes clusters in AWS and GCE. Authors like to think of kops as kubectl for clusters.
Tags web-development kubernetes apis nginx containers
-
Building a reverse proxy in .NET Core
Posted on January 24, 2019, Level intermediate Resource Length medium
Andrea Chiarelli published this interesting guide focusing on building a reverse proxy in .NET Core. .NET Core is a free and open-source web framework, offering higher performance than .NET. It is developed by Microsoft and the community.You will learn how to use .NET Core to implement a reverse proxy to overcome specific needs.
Tags web-development programming open-source microservices
-
Authentication at Edge with StackPath
Posted on January 22, 2019, Level beginner Resource Length long
Jason Byrne thoughts on using cloud Edge for some common tasks. As we spread our applications out into serverless microservices, what better place for our entitlement checks than on the CDN?
Tags web-development serverless apis infosec javascript
-
17 coding challenges to sharpen your critical thinking
Posted on January 3, 2019, Level beginner Resource Length long
Alex Ivanovs created this vast resource of links to platforms offering exciting challenges for coders of all level. If you want to improve your skills in an existing or a new programming language, one of the best ways to do it is through coding challenges.
Tags programming web-development miscellaneous learning
-
Clean code checklist in Angular
Posted on January 2, 2019, Level intermediate Resource Length long
Mathis Garberg posted a piece about how as we become better developers, structuring and organizing code becomes more and more important. Angular has rapidly grown to become one of the most popular frameworks for building front-end, cross-platform web applications. To master it, author decided to put together a clean code checklist which covers my personal recommendations for writing clean production-ready Angular code.
Tags angular javascript nodejs frontend web-development