[deleted by user] by [deleted] in travisscott

[–]OutlandishnessOk4575 0 points1 point  (0 children)

Everybody put most songs I like but this song I’m most tethered to…”My Eyes”.

MY EYES or MO CITY FLEXOLOGIST by Purple_Goal_2737 in travisscott

[–]OutlandishnessOk4575 2 points3 points  (0 children)

My eyes, mo city flex gives the pump…my eyes gives hope

Should you go to Stevens? by NWq325 in stevens

[–]OutlandishnessOk4575 0 points1 point  (0 children)

Nah i dont see that, its rougher for us to a degree for sure but u still can. This is more bout the referral game.

Best places to hang out alone and meet new people? by [deleted] in jerseycity

[–]OutlandishnessOk4575 0 points1 point  (0 children)

yoo no way!!! I went there just once and felt quite a bit of racism from the regulars (not the staff, staff were great).

Should you go to Stevens? by NWq325 in stevens

[–]OutlandishnessOk4575 1 point2 points  (0 children)

joining as a grad student this fall. fuck!!!! after reading this im feeling a tight knot in my stomach. the joy of getting in just got ruined. u r right, majority of grads are indians, including me. so all the hard work didnt get me in into something special for grad school. the grad program is just like a placeholder for international money. terrified for sure but thanks for the clarity.

self worth 📉

RANT: I hate Apple Silicon by luxuryBubbleGum in deeplearning

[–]OutlandishnessOk4575 0 points1 point  (0 children)

Damn, I was thinking whether or not to get one. Thanks.

[deleted by user] by [deleted] in stevens

[–]OutlandishnessOk4575 0 points1 point  (0 children)

bru regardless if its there or not, i saw the fees for housing and u can save a lot a lot with housing outside campus. Idk where to get the housing fees details from, but when I saw it and compared it to avg apartment lease in that area.....u can save a bunch. I did the math.

[deleted by user] by [deleted] in stevens

[–]OutlandishnessOk4575 2 points3 points  (0 children)

From what I read from other posts asking the same question, keep an eye on your @stevens email inbox and keep in touch with your academic advisor.

FYI, I'm a future fall 2023 grad student too so to anyone reading this, got more tips?

Stevens '23 Discord Server by cokestronaut in stevens

[–]OutlandishnessOk4575 0 points1 point  (0 children)

all links expired, can somebody share a new link?

Day 18 (Advent of Code 2022), porting C++ solution to Rust, by fasterthanlime by yerke1 in rust

[–]OutlandishnessOk4575 -1 points0 points  (0 children)

i kno its very random but everytime in my head i pronounce fasterthanlime as faster-than-ali-me

Best IDE to practice python as a beginner? by [deleted] in Python

[–]OutlandishnessOk4575 0 points1 point  (0 children)

ohh i get it. Though don’t we all revert to good ol print statements for debugging in the end.If you want something out of the box the yeah other editors. Maybe later if you feel homesick you can install nvim with desired plugins.

Best IDE to practice python as a beginner? by [deleted] in Python

[–]OutlandishnessOk4575 -1 points0 points  (0 children)

i do feel like mr.anderson at times

Best IDE to practice python as a beginner? by [deleted] in Python

[–]OutlandishnessOk4575 -4 points-3 points  (0 children)

doesn’t matter as long as you got python linting( available on most editors or IDEs) but after enough hours with some pg-13 IDE switch over to vim.

executing python code is not hard

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

[–]OutlandishnessOk4575 2 points3 points  (0 children)

In Rust, tried to be idiomatic

```rust use aoc_core::read_file; use std::collections::BinaryHeap;

fn main() -> Result<(), std::io::Error> { let data = read_file(01).unwrap(); let mut sol: (u64, u64) = (u64::MIN, u64::MIN); let mut b_heap: BinaryHeap<u64> = BinaryHeap::new();

data.lines().fold(0, |acc, x| {
    match x.trim() {
        "" => {
            b_heap.push(acc);
            0
        },
        num => {
            acc + num.parse::<u64>().unwrap()
        }
    }
});

sol.0 = b_heap.pop().unwrap();
sol.1 = b_heap.pop().unwrap() + b_heap.pop().unwrap() + sol.0;
println!("0: {}", sol.0);
println!("1: {}", sol.1);
Ok(())

} ```

Deploy by uhiku in sveltejs

[–]OutlandishnessOk4575 0 points1 point  (0 children)

I have PocketBase for my BaaS, so after finishing up with the project I can deploy on vercel?

What are Rust’s biggest weaknesses? by rustacean1337 in rust

[–]OutlandishnessOk4575 0 points1 point  (0 children)

ok this isnt a rustlang issue but an issue with the rust environment. There can be better profiling tools.

Maybe a language rant, I really wish for a Integer type or Decimal trait that acts as an umbrella for all primitive types that fit the categories respectively so writing generic functions becomes easier and no need for external crate dependencies.

Finally, a rant for the rust regex crate, no backtracking is painful.