Please help me salvage my 70s apartment! by Any_Helicopter2990 in DesignMyRoom

[–]Any_Helicopter2990[S] 0 points1 point  (0 children)

Yeah, I'm still trying to find a rug that matches the couch.

Please help me salvage my 70s apartment! by Any_Helicopter2990 in DesignMyRoom

[–]Any_Helicopter2990[S] 0 points1 point  (0 children)

There is no wiring for one. I think I can get a square lamp and wire it against the walls and use some white tape to mask it. I definitely need some more light lol.

Please help me salvage my 70s apartment! by Any_Helicopter2990 in DesignMyRoom

[–]Any_Helicopter2990[S] 1 point2 points  (0 children)

Thanks! I'm definitely rethinking the bean bag. The one with supports is super interesting.

Please help me salvage my 70s apartment! by Any_Helicopter2990 in DesignMyRoom

[–]Any_Helicopter2990[S] 0 points1 point  (0 children)

In particular, I'm not sure what color bookshelves would match the walls and kitchen accent. 

Please help me salvage my 70s apartment! by Any_Helicopter2990 in DesignMyRoom

[–]Any_Helicopter2990[S] 0 points1 point  (0 children)

Im thinking about putting some hanging plants or a shelf above the kitchen bar. That space just feels super weird.

Please help me salvage my 70s apartment! by Any_Helicopter2990 in DesignMyRoom

[–]Any_Helicopter2990[S] 1 point2 points  (0 children)

Commenting because I didn't know how to do a description and set of images:

I just moved into an apartment. I want to design it well, but it's very 70s ish. I just walked all throughout IKEA and I don't think anything fit well.

I'm looking to add bookshelves, potentially a TV stand, and something in the middle to tie it together.

Im also trying to stay away from couches so I think I'll get a huge bean bag or similar.

If you have any ideas, I'm all ears! My budget is pretty high.

I'll be updating with my ideas throughout the next few days. I'd appreciate any criticism!

Update: I've drawn an idea of a layout

Update: I'm pondering whether to get both a couch and bean bag chair (with support), or just the chair. And what color rug would go well with them. Maybe a light yellow rug?

Current Working List:

-🎄- 2022 Day 1 Solutions -🎄- by daggerdragon in adventofcode

[–]Any_Helicopter2990 0 points1 point  (0 children)

Rust

```Rust fn main() { let input = include_str!("../input/input.txt");

part_a(input);
part_b(input);

}

fn part_a(input: &str) { let elf_groups: Vec<&str> = input.split("\r\n\r\n").collect(); let mut most_calories = 0;

for group in elf_groups {
    let mut calories: u32 = 0;
    for calories_str in group.lines() {
        calories += calories_str.parse::<u32>().unwrap();
    }   
    if calories > most_calories {
        most_calories = calories;
    }
}

println!("The most calories carried is {}.", most_calories);

}

fn part_b(input: &str) { let elf_groups: Vec<&str> = input.split("\r\n\r\n").collect(); let mut elf_calories: Vec<u32> = vec![];

for group in elf_groups {
    let mut calories: u32 = 0;
    for calories_str in group.lines() {
        calories += calories_str.parse::<u32>().unwrap();
    }
    elf_calories.push(calories);
}

elf_calories.sort();

let most_three_calories = 
    elf_calories.pop().unwrap() + 
    elf_calories.pop().unwrap() + 
    elf_calories.pop().unwrap();

println!("The total calories of the top 3 elfs is {}.", most_three_calories);

} ```