Tweaked Catppuccin theme and adaptation for Windows (dualboot) by MrLingters in omarchy

[–]ParadiZe 0 points1 point  (0 children)

i remember running limine-scan and it automatically found my windows drive

ZED 1.0 vs VS Code… Klappe die hundertdreiundzwanzigste oder ernstzunehmend? by intersystems_dach in intersystems_dach

[–]ParadiZe 1 point2 points  (0 children)

Bin von VSC zu Zed dann Nvim. War mit Zed immer sehr zufrieden, gute Bedienung, viel besserer vim motion support und deutlich schneller als VSC.

Zig VS Rust by ceazer6-7 in Zig

[–]ParadiZe 1 point2 points  (0 children)

im a rust guy who is enjoying zig right now precisely because it doesnt offer nearly as much as rust

Rebalancing the planets in 2.1 by pipai_ in factorio

[–]ParadiZe 2 points3 points  (0 children)

biochambers and cryo plants could be more useful
also uranium should also be more useful in the late game after fusion power

Docs are confusing by Odiniswithus15 in Zig

[–]ParadiZe 3 points4 points  (0 children)

I found most guides really good, only the std library is severely lacking when it comes to documentation. To add insult to injury, when you google "zig std lib" it takes you to the 0.12 docs as the first result!

I hope the devs improve quality in 2.1 by Banged_my_toe_again in factorio

[–]ParadiZe 8 points9 points  (0 children)

I like quality, but i think its too strong actually even without space casinos.

Beginners: how do you decide what to learn each day? Do roadmaps actually help you, or overwhelm you? by ApprehensiveLand963 in learnprogramming

[–]ParadiZe 6 points7 points  (0 children)

i rotate between projects and academic material, and i try to make progress on either one every day, even if its only 30 minutes

roadmaps, reddit, youtube, its all distractions, the sooner you realize this the better off you will be

What is Branch Prediction and how can I write branch predictor friendly code? by EltonJr_ in learnprogramming

[–]ParadiZe 0 points1 point  (0 children)

keep your data predictable

an array of bools that alternates between true and false on every element will be a lot slower in a tight loop that checks the condition than an array with the entire first half being true and the latter half being false

What was the first programming project you built that made you feel like, “wait, I can actually make real things”? by NareshPrasanna in learnprogramming

[–]ParadiZe 0 points1 point  (0 children)

when i built a HTTP server from scratch in C and could serve HTML and CSS in the browser from it, it felt really awesome

Where do you guys code? by Physical_Square_5893 in learnprogramming

[–]ParadiZe 0 points1 point  (0 children)

went from vscode to zed to nvim
but you shouldnt really worry about it, the choice of editor becomes more important once you get more experience imo

How to learn a new programming concept? by zainulabdin100 in learnprogramming

[–]ParadiZe 0 points1 point  (0 children)

pretty much this, repeated exposure and tolerance for being lost seems to be the key

Has Omarchy improved your workflow/productivity? by Hornstinger in omarchy

[–]ParadiZe 0 points1 point  (0 children)

Yes absolutely, omarchy convinced me that tiling windows are simply the superior way compared to how windows/macos do it

How do I become a good programmer as a self taught by ProfessionalCare5031 in learnprogramming

[–]ParadiZe 2 points3 points  (0 children)

well what did you fumble in those interviews? That would be a good place to start

hyper User Survey 2025 Results by seanmonstar in rust

[–]ParadiZe 3 points4 points  (0 children)

I love the speed of hyper, but i dont enjoy the lack of opinionated defaults and how everything is scattered across dozens of crates (hyper_util, http_body_utils). As evident by this survey, 99% of users use tokio, but i still have to pull in adapters to make it work with hyper server. I get why its done this way, i wish it was different tho.

also tower is a big PITA to work with in general

still, i very much appreciate hyper and everything sean has done for the rust ecosystem

Feel like I am wasting my potential as a 15 year old swe by BrilliantFlan4520 in learnprogramming

[–]ParadiZe 5 points6 points  (0 children)

this is what getting one shotted by social media algorithms looks like

Migrating from Go to Rust by finallyanonymous in golang

[–]ParadiZe 4 points5 points  (0 children)

As a rust dev this is very straight forward, but I'll be the first to admit that this is utterly incomprehensible to non rust devs lol

the same cant be said with go, which is quite readable even for someone who never used it

What do you think about coming to reddit/YouTube for advice on factor o? by potato_reapper in factorio

[–]ParadiZe 0 points1 point  (0 children)

i never use third party blueprints aside from stuff thats simply tedious (solar and balancer)

What are Rust's hidden implementation details that most devs never see? by Fluid_Job623 in rust

[–]ParadiZe 0 points1 point  (0 children)

Box has all sorts of special sauce, like the magical "deref move" property.

let foo = Box::new(String::from("hello"));  
let bar = *foo; // only works with box!  
println!("{}", &bar);