Yall fw cyberpunk i love cyberpunk
Posts by Samiyel F
Ah cool, that makes sense. Very unfortunate timing tho lol
One bad apple spoils the barrel, changing the barrel into a box and leaving the bad apple changes nothing. You need to get rid of the apple.
This is like when a guy joins the police thinking hes gonna end racism in the police force. You cant repair it, once the bourgeois sinks their teeth in something, they wont "let go"
Mug check
Ngl, im one of those people. How does it actually work? Ive never been a youtuber lol
Haskell is such a cool language and then it looks like that and its like... Come on man ...
I love my echo chamber
Oh yeah definitely, people blow everything out of proportion lol. imo the *bad* thing here is apple itself; i wouldnt trust them with anything. And after the windows recall BS you cant be surprised that people would (over)react over AI, pictures, and server in the same sentence
I mean this ones kinda valid cus they send the photo to an apple server, its not locally processed
The Knack™ strikes again
Harass people online for using closed source software
The only thing keeping me from staying here full time is i miss my friends
bluesky add fleets
My bad
I am constantly plagued by cheap sensors why is 50% of my time programming spent compensating for bad readings
The stupid robot is doing its job yippie
Encapsulation would be nice but not having inheritance is great
oop is so good when its rust oop.. a group of data with functions, some of which might be commonly found in other data groups
all of physics is functions and equations, but none of that matters if objects dont use those functions.
fp or oop is stupid. the universe runs on fp and is made of oop. your code should too.
Update: The stupid robot still will not do its job
Its always the guys that leave circles they dont like that shout "echo chamber". Its like the inverse of the "you are not welcome here" comic
in 2025 I will probably go on the computer
STUPID ROBOT WON'T DO ITS JOB
Sucks that they called it lazygit and not gitlazy
use reqwest; fn get_input(url: &str, session: &str) -> Result<String, Box<dyn std::error::Error>> { let client = reqwest::blocking::Client::new(); let response = client .get(url) .header("Cookie", format!("session={}", session)) .send()?.text()?; Ok(response) } fn main() { let url = "https://adventofcode.com/2024/day/1/input"; let session = ""; let (mut l, mut r): (Vec<i32>, Vec<i32>) = get_input(url,session).expect("No data found").lines().filter_map(|line| { let mut parts = line.split_whitespace(); let left = parts.next()?.parse::<i32>().ok()?; let right = parts.next()?.parse::<i32>().ok()?; Some((left, right)) }).unzip(); l.sort(); r.sort(); let distances: i32 = l.iter().zip(r.iter()).map(|(a,b)| (a-b).abs()).sum(); let similarity: i32 = l.iter().map(|&x| x*r.iter().filter(|&&n| n == x).count() as i32).sum(); println!("Distance: {}",distances); println!("Similarity: {}", similarity); }
how we feeling abt this
my first time taking data from a website, not as hard as i thought it'd be
I just completed "Historian Hysteria" - Day 1 - Advent of Code 2024 #AdventOfCode adventofcode.com/2024/day/1