What's the point of speech
Photo
YouTube
Linus On C vs Rust Linux Problems
Recorded live on twitch, GET IN
### Article
https://thenewstack.io/linus-torvalds-c-vs-rust-debate-has-religious-undertones/#:~:text=At%20the%20same%20time%2C%20I,religious%20overtones%20in%20certain%20areas.%E2%80%9D
By: B. Cameron Gain
### My Stream…
### Article
https://thenewstack.io/linus-torvalds-c-vs-rust-debate-has-religious-undertones/#:~:text=At%20the%20same%20time%2C%20I,religious%20overtones%20in%20certain%20areas.%E2%80%9D
By: B. Cameron Gain
### My Stream…
Ethiopian govt be like:
>We wreck ur home.
You: 😭
>We give you land and money to build new home
You:😕 ok ig better than nothing
>*gives you land and money if ur lucky *
You: Ok ok not bad ig 😐
You: * try to build a new home with the money and land they gave you *
> No No No u gotta wait for 2 years to start construction
You: FFuck YOu You MOthEr FuCKing FUck 🤬
>We wreck ur home.
You: 😭
>We give you land and money to build new home
You:😕 ok ig better than nothing
>*gives you land and money if ur lucky *
You: Ok ok not bad ig 😐
You: * try to build a new home with the money and land they gave you *
> No No No u gotta wait for 2 years to start construction
You: FFuck YOu You MOthEr FuCKing FUck 🤬
Forwarded from Beka (Beka)
https://docs.astro.build/en/guides/authentication/#better-auth
Better Auth is now on Astro official authentication guide🥳
Better Auth is now on Astro official authentication guide
Please open Telegram to view this post
VIEW IN TELEGRAM
Docs
Authentication
An intro to authentication in Astro
Please STOP using UserBenchmark for PC part comparison (Been the fool using them to compare parts)
https://youtu.be/YzNR2B7vA1k?si=CDKPxe5cGtlhqS6R
https://youtu.be/YzNR2B7vA1k?si=CDKPxe5cGtlhqS6R
YouTube
This is a DISASTER for PC Gamers
Unfortunately google search results lead pc builders into a bunch of bad information on a particular website when researching which parts to buy.
What equipment do I use to make my videos?
Camera: Sony a6100 https://amzn.to/3wmDtR9
Camera Lens: Sigma 16mm…
What equipment do I use to make my videos?
Camera: Sony a6100 https://amzn.to/3wmDtR9
Camera Lens: Sigma 16mm…
Razer is on some bullshit
https://www.instagram.com/reel/DBRk7YHSzXt/?igsh=MXJlYWlqYThmZDd1cw==
https://www.instagram.com/reel/DBRk7YHSzXt/?igsh=MXJlYWlqYThmZDd1cw==
🤣1
🎯 Nominal vs Structural Types 🎯
Nominal Types (like in Java/C#):
Types are compared by name. Even if two types look the same, they’re not compatible unless you say so (explicitly cast it).
Structural Types (like in TypeScript/Go):
Types are compared by structure. If two types have the same shape, they’re compatible—even if they have different names.
💡 TL;DR:
Nominal: Focuses on the name of the type.
Structural: Focuses on the shape of the type.
Nominal Types (like in Java/C#):
Types are compared by name. Even if two types look the same, they’re not compatible unless you say so (explicitly cast it).
class Cat { public int Legs; }
class Dog { public int Legs; }
Cat myCat = new Cat();
Dog myDog = new Dog();
// Error: Cannot assign Cat to Dog, even though both have Legs.Structural Types (like in TypeScript/Go):
Types are compared by structure. If two types have the same shape, they’re compatible—even if they have different names.
type Cat = { legs: number };
type Dog = { legs: number };
let myCat: Cat = { legs: 4 };
let myDog: Dog = myCat; // No problem! They have the same structure.💡 TL;DR:
Nominal: Focuses on the name of the type.
Structural: Focuses on the shape of the type.