lade...
random avatar

anson - Network

Posts Subscribe

Jan 10, 2024, 05:04

https://qoto.org/@anson/11172990...

I understand usage restrictions but chatgpt just restricted me for 2 hours and 15minutes with no prior warning, after I haven’t used the app for days

Seems a little excessive

10.1.2024 05:04Jan 10, 2024, 05:04
https://qoto.org/@anson/11172990...

Jan 08, 2024, 09:41

https://qoto.org/@anson/11171966...

Vulcan and BE-4 Inaugural Flight notes.ansonbiggs.com/vulcan-an

8.1.2024 09:41Jan 08, 2024, 09:41
https://qoto.org/@anson/11171966...

Jan 08, 2024, 07:59

https://qoto.org/@anson/11171927...

Space hasn’t looked this good in a loooong time

8.1.2024 07:59Jan 08, 2024, 07:59
https://qoto.org/@anson/11171927...

Jan 08, 2024, 07:11

https://qoto.org/@anson/11171907...

I haven’t worked at ULA in about 6 months but seeing my rocket finally make it to launch is one of the most intense things I’ve watched. Go Vulcan!

8.1.2024 07:11Jan 08, 2024, 07:11
https://qoto.org/@anson/11171907...

Jul 10, 2023, 19:19

https://qoto.org/@anson/11069140...

Please pray for Ellie she has the thrips 🤒

10.7.2023 19:19Jul 10, 2023, 19:19
https://qoto.org/@anson/11069140...

Apr 09, 2023, 16:03

https://qoto.org/@anson/11016969...

It's interesting that @brave AI rarely cites the top few search results in its answer

9.4.2023 16:03Apr 09, 2023, 16:03
https://qoto.org/@anson/11016969...

Apr 07, 2023, 00:28

https://qoto.org/@anson/11015469...

Coming up on 10 years of writing and I still have no clue this to properly install it and manage it. Docker seems overkill but it seems like the easiest way to get the version I want installed and without environments overlapping

7.4.2023 00:28Apr 07, 2023, 00:28
https://qoto.org/@anson/11015469...

Mar 10, 2023, 22:58

https://qoto.org/@anson/11000146...

My Uber driver is letting his Tesla autopilot take me to my destination. I would be mad but I let an IDE do my job all day every day

10.3.2023 22:58Mar 10, 2023, 22:58
https://qoto.org/@anson/11000146...

Feb 18, 2023, 15:53

https://qoto.org/@anson/10988654...

Bird site made me remove 2 factor auth from my account because apparently only blue subscribers are eligible for good security practices

18.2.2023 15:53Feb 18, 2023, 15:53
https://qoto.org/@anson/10988654...

Feb 10, 2023, 16:47

https://qoto.org/@anson/10984145...

Really disappointed to see the SEC shut down crypto

10.2.2023 16:47Feb 10, 2023, 16:47
https://qoto.org/@anson/10984145...

Jan 21, 2023, 16:50

https://qoto.org/@anson/10972822...

It’s insane that a 30 minute Uber to the airport at 4am costs more than a round trip plane ticket between Phoenix and Denver

21.1.2023 16:50Jan 21, 2023, 16:50
https://qoto.org/@anson/10972822...

Jan 14, 2023, 04:45

https://qoto.org/@anson/10968573...

I don’t want to be the guy that uses ChatGPT for my resume but I really do feel like I’m tying a hand behind my back if I don’t.

14.1.2023 04:45Jan 14, 2023, 04:45
https://qoto.org/@anson/10968573...

Dec 13, 2022, 23:36

https://qoto.org/@anson/10950899...

Fusion tech really seems like its the silver bullet that could stop climate change. Seeing this breakthrough get the attention it deserves gives me a lot of hope for the future.

13.12.2022 23:36Dec 13, 2022, 23:36
https://qoto.org/@anson/10950899...

Dec 07, 2022, 03:33

https://qoto.org/@anson/10947028...

Frontier charges me $90 to change my flight to an earlier time, but outright buying the ticket at the earlier time is only $60. Never flying with them again they are just so ridiculously hostile towards their users.

7.12.2022 03:33Dec 07, 2022, 03:33
https://qoto.org/@anson/10947028...

Dec 02, 2022, 07:12

https://qoto.org/@anson/10944283...

Content warning: Advent of Code Day 2 in Rust


gitlab.com/MisterBiggs/aoc_202

```rust
use itertools::Itertools;
use std::fs;

pub fn run() {
println!("Day 2:");
let input = fs::read_to_string("./inputs/day2.txt").expect("Could not read file");

println!("\tPart 1: {}", part1(&input));
println!("\tPart 2: {}", part2(&input));
}

#[derive(PartialEq, Clone, Copy)]
enum Hand {
Rock = 1,
Paper,
Scissors,
}

#[derive(Clone, Copy)]
enum Outcome {
Lost = 0,
Draw = 3,
Win = 6,
}

fn part1(input: &str) -> usize {
input
.trim()
.split('\n')
.map(|round_str| {
let round = round_str.split_once(' ').unwrap();
let opponent = match round.0 {
"A" => Hand::Rock,
"B" => Hand::Paper,
"C" => Hand::Scissors,
_ => panic!(),
};
let me = match round.1 {
"X" => Hand::Rock,
"Y" => Hand::Paper,
"Z" => Hand::Scissors,
_ => panic!(),
};

let outcome = match (opponent, me) {
(l, r) if l == r => Outcome::Draw,
(Hand::Rock, Hand::Paper) => Outcome::Win,
(Hand::Paper, Hand::Scissors) => Outcome::Win,
(Hand::Scissors, Hand::Rock) => Outcome::Win,
_ => Outcome::Lost,
};
outcome as usize + me as usize
})
.sum()
}
fn part2(input: &str) -> usize {
input
.trim()
.split('\n')
.map(|round_str| {
let round = round_str.split_once(' ').unwrap();
let opponent = match round.0 {
"A" => Hand::Rock,
"B" => Hand::Paper,
"C" => Hand::Scissors,
_ => panic!(),
};
let outcome = match round.1 {
"X" => Outcome::Lost,
"Y" => Outcome::Draw,
"Z" => Outcome::Win,
_ => panic!(),
};

let me = match (outcome, opponent) {
(Outcome::Draw, _) => opponent,
(Outcome::Win, Hand::Rock) => Hand::Paper,
(Outcome::Win, Hand::Paper) => Hand::Scissors,
(Outcome::Win, Hand::Scissors) => Hand::Rock,
(Outcome::Lost, Hand::Rock) => Hand::Scissors,
(Outcome::Lost, Hand::Paper) => Hand::Rock,
(Outcome::Lost, Hand::Scissors) => Hand::Paper,
};
outcome as usize + me as usize
})
.sum()
}
```

2.12.2022 07:12Dec 02, 2022, 07:12
https://qoto.org/@anson/10944283...

Dec 02, 2022, 00:27

https://qoto.org/@anson/10944124...

Content warning: Advent of code day 1 in rust


gitlab.com/MisterBiggs/aoc_202

```rust
fn part1(food_input: &str) -> usize {
food_input
.split("\n\n")
.collect::<Vec<&str>>()
.into_iter()
.map(|elf| {
elf.split_whitespace()
.map(|food| food.parse::<usize>().unwrap())
.sum()
})
.collect::<Vec<usize>>()
.into_iter()
.max()
.unwrap()
}
```

```rs
fn part2(food_input: &str) -> usize {
let mut elves_calories = food_input
.split("\n\n")
.collect::<Vec<&str>>()
.into_iter()
.map(|elf| {
elf.split_whitespace()
.map(|food| food.parse::<usize>().unwrap())
.sum()
})
.collect::<Vec<usize>>();

elves_calories.sort_by(|l, r| r.cmp(l));

elves_calories[..3].iter().sum::<usize>()
}
```

2.12.2022 00:27Dec 02, 2022, 00:27
https://qoto.org/@anson/10944124...

Nov 30, 2022, 03:55

https://qoto.org/@anson/10943073...

The amount of work it takes to maintain header files in is honestly absurd

30.11.2022 03:55Nov 30, 2022, 03:55
https://qoto.org/@anson/10943073...

Nov 29, 2022, 20:30

https://qoto.org/@anson/10942898...

Any users out there notice service has been steadily degrading?

29.11.2022 20:30Nov 29, 2022, 20:30
https://qoto.org/@anson/10942898...

Nov 21, 2022, 00:01

https://qoto.org/@anson/10937885...

Sure is a drag writing going back C at work after writing all weekend

21.11.2022 00:01Nov 21, 2022, 00:01
https://qoto.org/@anson/10937885...

Nov 16, 2022, 06:51

https://qoto.org/@anson/10935215...

And to think I almost gave up

16.11.2022 06:51Nov 16, 2022, 06:51
https://qoto.org/@anson/10935215...
Subscribe
To add news/posts to your profile here, you must add a link to a RSS-Feed to your webfinger. One example how you can do this is to join Fediverse City.
         
Webfan Website Badge
Nutzungsbedingungen   Datenschutzerklärung  Impressum
Webfan | @Web pages | Fediverse Members