Tag: Programming
-
How to structure your Scala application?
Posted on October 23, 2019, Level beginner Resource Length short
Michał Matłoka wrote this piece about the application organization and structure in Scala. In Scala, one tends to see smaller libraries, which are quite flexible. That is why many things like application structure and life-cycle fully depend on developer.
Tags scala programming java oop functional-programming
-
Use Kabanero, Appsody, and Codewind to build Spring Boot application on Kubernetes
Posted on October 21, 2019, Level intermediate Resource Length short
An guide by Hafid Haddouti. In the era of DevOps where the team is responsible for building and running applications for their entire life cycle, choosing the best tools is crucial to help reduce the work needed for building and deploying cloud-native applications.
Tags kubernetes programming java devops oop
-
How to create a todo list with Phoenix LiveView
Posted on October 17, 2019, Level intermediate Resource Length medium
Phoenix LiveView is a great solution for anyone who wants to get a real-time app out to the world quickly without spending a ton of time building out both frontend and backend. By Dennis Beatty.
Tags programming erlang functional-programming
-
Here's what we learned about page speed
Posted on October 8, 2019, Level beginner Resource Length long
Backlinko.com analyzed 5.2 million desktop and mobile pages and in this article they published what they learned about page speed.
Tags web-development programming performance
-
Build a PWA using only vanilla JavaScript
Posted on October 6, 2019, Level beginner Resource Length medium
Sayan Mondal wrote this article on building progressive web app. A Progressive Web App (PWA) works like any other normal app but with a lot of added features and a lot less hassle. They are fast, reliable, and can work perfectly in an offline environment.
Tags javascript programming nodejs teams app-development
-
Build a Laravel 6 CRUD app with authentication
Posted on October 2, 2019, Level intermediate Resource Length medium
Learn how to build and secure a travel manager CRUD application with Laravel 6.0. Author will walk through every step of building the application and then add authentication using Auth0. By Holly Lloyd, R&D Content Engineer.
Tags php web-development programming infosec
-
Quick guide to microservices with Quarkus on Openshift
Posted on September 29, 2019, Level intermediate Resource Length medium
Piotr Mińkowski wrote this article about one very interesting framework dedicated for microservices architecture, which is becoming increasing popular –- Quarkus.
Tags programming java devops microservices
-
Build a tree-shaking utility in JavaScript
Posted on September 23, 2019, Level intermediate Resource Length long
A guide with clear instructions how to build your own "dead code" remover in JavaScript. By Chidume Nnamdi.
Tags javascript web-development programming performance
-
Tour of Akka Typed: Message Adapters, Ask Pattern and Actor Discovery
Posted on September 17, 2019, Level advanced Resource Length medium
An article in series by Manuel Bernhardt in which he explores the basics of the Akka Typed API, why it was created and what are its benefits in comparison to the classic Actor API, how to build typed actor systems via protocols and behaviors and how to create typed actors.
Tags akka java scala programming messaging queues
-
Choose boring technology
Posted on September 14, 2019, Level beginner Resource Length short
The perspective of seasoned developer on development process and how big companies can have a branded way of doing engineering. Compared with situations where "the way engineering is done" is actively being figured out.
Tags programming software-architecture miscellaneous how-to
-
Step Zero: Kubernetes on Microsoft Azure Kubernetes Service (AKS)
Posted on September 13, 2019, Level intermediate Resource Length short
Step to step guide how to create a Kubernetes cluster using the Azure command line tools. It describes the commands required to setup a Kubernetes cluster using the command line. By JupyterHub.
Tags devops azure programming software-architecture
-
Mono repo vs one per service
Posted on September 12, 2019, Level beginner Resource Length long
An article by Yan Cui about his take on using code repository when working with microservices and serverless. With AWS Lambda, we can deploy and scale individual functions. However, we engineers still like to think in terms of services and maintain a mapping between business capabilities and service boundaries.
Tags devops microservices programming agile aws software-architecture teams