Bard and Bing: A Love Story

I got access to Bard and decided to test it out. It felt more human than bing and chatgpt. It provided a more natural answer than the infamous “As an AI language model…”. So I got curious and decided to ask it about love. I was not expecting this. Bard and Bing: A Love Story Bard and Bing’s love is a testament to the power of the internet. It shows that even though we may be separated by distance, we can still find love and connection with others....

April 2, 2023 · 1 min · Hamza Khalid

Why 'pnpm' is a Tongue-Twister

Why ‘pnpm’ is a Tongue-Twister Every damn time I write pnpm, I have to think about it for a second. I’m not sure if it’s because I’m not used to it, or if it’s because it’s just a weird word or if the fact that I have to type 2 ‘p’s in 4 letters what’s throwing me off. Either way, I’m tired of struggling to type it every time I need to use it in the CLI....

April 2, 2023 · 2 min · Hamza Khalid

A Quick Introduction to Basic Rust - 01

Data Types Note: Rust is a statically typed language. This means that the type of a variable must be known at compile time. This is in contrast to dynamically typed languages like Python, where the type of a variable is determined at runtime. bool: A boolean value that can be either true or false let is_true: bool = true; char: A single Unicode character. let c: char = 'a'; i8, i16, i32, i64, i128: Signed integers with different sizes let x: i32 = -69; u8, u16, u32, u64, u128: Unsigned integers with different sizes let x: u32 = 420; f32, f64: Floating-point numbers with different precisions....

March 6, 2023 · 5 min · Hamza Khalid

Rust on Docker Dev Container - 00

Hi 👋, My name is Hamza and this is my first blog post. The reason for this blog post is to document my journey of learning Rust. I have been learning rust on and off for an year now but never really got to doing something with it because i always end up using AI to write my code. this has took a tremendous toll on my learning curve and i have decided to change that....

March 5, 2023 · 2 min · Hamza Khalid