Proxies are a very powerful tool in Javascript, often used in libraries and frameworks. But what are they? Let’s explore it together.
Adding Uniqrate to Your Hugo Website: A Step-by-Step Guide
Uniqrate is a tool designed for analytics and gathering reader’s feedbacks. Let’s see how to add it to a static site generator like Hugo
Launching our first product: Uniqrate
With 2 colleagues, we decided to team up and build a project. After 3 months, we created Uniqrate, an analytics and readers feedback tool for bloggers and documentation writers.
What is Ownership in Rust?
Memory usage is crucial in programming. To understand how Rust uses memory, we must first understand how it handles variables ownership and memory allocation.
Building a password manager in Rust - Part 2
For the second part of our password manager, we start adding some better functionality to create a new password such as automatic generation, getting the clipboard’s content and alerting the user if the password is too weak
Building a password manager in Rust - Part 1
Learning new things can be challenging. To make it easier, we’ll build a fun little project together: a password manager!
Create a command line application with Rust
In this article, we’ll create a very simple command line application to get our feet wet with Rust!
Observer pattern
The Observer pattern allows us to control the notifications we send to subscribed objects. Let’s see how it works.
Factory method
The factory method design pattern allows us to elegantly create new objects. Let’s see how it works.
Design Patterns: Singleton
A design pattern used to make sure we have a single instance of an object. Let’s see how we do it