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:04Vulcan and BE-4 Inaugural Flight https://notes.ansonbiggs.com/vulcan-and-be-4-inaugural-flight/
8.1.2024 09:41Jan 08, 2024, 09:41Space hasn’t looked this good in a loooong time
8.1.2024 07:59Jan 08, 2024, 07:59I 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:11Please pray for Ellie she has the thrips 🤒
10.7.2023 19:19Jul 10, 2023, 19:19It's interesting that @brave AI rarely cites the top few search results in its answer
9.4.2023 16:03Apr 09, 2023, 16:03Coming up on 10 years of writing #Python 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:28My 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:58Bird 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:53Really disappointed to see the SEC shut down crypto #staking
10.2.2023 16:47Feb 10, 2023, 16:47It’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:50I 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:45Fusion 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:36Frontier 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:33Content warning: Advent of Code Day 2 in Rust
https://gitlab.com/MisterBiggs/aoc_2022-rust/-/blob/master/src/day2.rs
```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()
}
```
Content warning: Advent of code day 1 in rust
https://gitlab.com/MisterBiggs/aoc_2022-rust/-/blob/master/src/day1.rs
```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>()
}
```
The amount of work it takes to maintain header files in #cpp is honestly absurd
30.11.2022 03:55Nov 30, 2022, 03:55Any #googlefi users out there notice service has been steadily degrading?
29.11.2022 20:30Nov 29, 2022, 20:30Sure is a drag writing going back C at work after writing #rustlang all weekend
21.11.2022 00:01Nov 21, 2022, 00:01And to think I almost gave up #moonBound
16.11.2022 06:51Nov 16, 2022, 06:51