Saying goodbye to Evernote; finally
My experience with evernote. Over the years, tried to comeback from time to time to the favorite note taking app. Unfortunately, wasn't working out anymore.
- Date
/ thearyanahmed
Aryan Ahmed
I'm a programmer. I build stuff
Saying goodbye to Evernote; finally
My experience with evernote. Over the years, tried to comeback from time to time to the favorite note taking app. Unfortunately, wasn't working out anymore.
The cover generator for my articles
A ChatGPT generated article.
Kubernetes Cluster Architecture
Differences Between SSL and TLS
In the world of online security, SSL and TLS are two terms that often come up when discussing encrypted communication. They both play a crucial role in ensuring that our sensitive data remains safe while traversing the vast expanses of the internet.
Dynamic trait to a concrete type in Rust
As rust does not support interface , sometimes it can be difficult to cast a dynamic typed variable to a concrete type. Lets take a look how we can achieve similar functionality.
Choosing the Right String Type in Rust: A Journey of a Novice
Over the past years couple years, I go back to rust when I get the time to try something new.
A prepared statement is a feature used to execute the same (or similar) SQL statements repeatedly with high efficiency. It is also used to prevent sql injections. This is my take, on what happens behind the scene.
Building a Passwordless Login System with Laravel in minutes
Implement passwordless authentication in Laravel: Collect user email, send signed URL, validate callback. Secure and convenient login without passwords.
Building a URL shortener with Rust and Redis
As rust is being adopted by lots of different companies for solving various purposes, I’m trying to adopt rust. In this article and the series of articles following this will contain my journey to build a simple program, an url shortener, with rust.
Rust: Memory, Ownership and Borrowing
Rust has a pretty good approach to handling this. There is a bit of learning curve. But if you skip it for any reason, or don’t understand it quite well, then it’ll be difficult for you to write good rust code.