Tag: App development
-
Huawei CSO: Open-source can play a key role in creating a sustainable future
Posted on September 21, 2022, Level beginner Resource Length medium
Open-source technology can play an important role in tackling the climate emergency by offering greater opportunities for collaboration and shared learning on key issues. By Leigh Mc Gowran.
Tags software cio app-development miscellaneous open-source
-
How to learn JavaScript faster – Tips and resources to get started coding JS
Posted on September 20, 2022, Level beginner Resource Length long
JavaScript is a programming language commonly used for web development, among many other things. It works in conjunction with HTML and CSS to add dynamic functionality to websites. By Annoh Karlgusta.
Tags nodejs javascript apis app-development learning
-
Reducing graph complexity using Go and transitive reduction
Posted on September 19, 2022, Level intermediate Resource Length medium
Directed acyclic graphs (DAGs) serve a wide variety of applications in computer science, biology, sociology, and other fields that involve complex networks. While these graphs often contain a large number of edges, some of the edges might be redundant, making computations unnecessarily expensive and the graph structure harder to understand. By Dominik Braun.
Tags apis app-development performance golang database
-
How agile project managers lead software development teams to success
Posted on September 18, 2022, Level beginner Resource Length medium
Whether you're building websites for an ad agency or software for a company, it's important to understand how to lead your team to success and make your customer happy. Here's what you need to be an agile PM, also known as a Scrum Master. By Donovan Rittenbach.
Tags software app-development cloud cio agile
-
What can a service mesh do?
Posted on September 17, 2022, Level beginner Resource Length short
A service mesh is a force multiplier that can do everything from service discovery to zero trust security, load balancing, multi-cloud connectivity, automation, and north-south traffic. By Van Phan.
Tags app-development cloud cio devops containers kubernetes
-
FinOps 'Crawl, Walk, Run' maturity model applied to Kubernetes
Posted on September 16, 2022, Level beginner Resource Length short
FinOps has become an increasingly popular goal of many organizations. It helps to unite financial teams and cloud operations teams across organizations to speak the same language, understand cloud costs and how they can be optimized. By Danielle Cook.
Tags app-development cloud cio devops miscellaneous
-
What is web3?
Posted on September 15, 2022, Level beginner Resource Length long
Every technology goes through generational cycles, including the internet. When a critical threshold of upgrades is crossed, it marks the beginning of a new generation. This moment, and its significance for the marketplace, can prove confusing. By Rahul Nambiampurath.
Tags web-development crypto cio app-development cloud
-
Simplify your React component's state with a state machine
Posted on September 14, 2022, Level intermediate Resource Length long
Use a reducer to implement a fully-typed state machine without breaking a sweat. As React developers, we've all had to work on a component where the state had become impossible to manage. By Guillaume Renard.
Tags web-development react javascript app-development
-
How to modularize existing iOS projects using Swift Package
Posted on September 13, 2022, Level intermediate Resource Length medium
Modular programming is a software design technique that breaks your project into a smaller maintainable module which promotes separation of concern and reusability. By @sarunw.com.
Tags programming ios swiftlang performance app-development
-
Understanding asynchronous APIs
Posted on August 29, 2022, Level beginner Resource Length medium
If you've worked mostly with REST APIs, you might not be as familiar with asynchronous API protocols like WebSocket and gRPC. Asynchronous APIs allow you to stream data, send multiple requests at the same time, and manage communication intelligently between services, while synchronous APIs require you to make a new request every time you need data. By Melinda Gutermuth.
Tags app-development devops apis cloud
-
AWS CDK - The good, the bad and the scary
Posted on August 28, 2022, Level beginner Resource Length medium
AWS Cloud Development Kit (CDK) has become, in its short history, a very popular infrastructure-as-code tool. It's not too surprising why - it allows engineers to use richer programming languages to define infrastructure, rather than having to use JSON or YAML. By Mike Roberts.
Tags app-development devops aws cloud cio programming
-
GOMEMLIMIT is a game changer for high-memory applications
Posted on August 27, 2022, Level beginner Resource Length long
It can be very frustrating when Go applications use less memory than what is available to them, and yet they still manage to run out of memory and crash. Go 1.19 introduced GOMEMLIMIT, which completely changes how you can manage memory limits in Go. By Etienne Dilocker.
Tags app-development devops golang programming