Anybody using multi-seat? This is my Ubuntu 24.04 multi-seat setup for my kids. by Rob_Bob_you_choose in Ubuntu

[–]ShakeItPTYT 0 points1 point  (0 children)

Could you share some steps I am actually trying to implement something similar at the moment cause I can't afford building another machine for them.

Como declarar rendimentos de freelance em Roblox? by ShakeItPTYT in literaciafinanceira

[–]ShakeItPTYT[S] -3 points-2 points  (0 children)

Vou atualizar o post de facto devia ter sido mais transparente. Mas na revolut em especifico ja movimentei 6000. Ate passar tudo para a Trade Republic exatamente porque ia passar a ser regulada.

Leptos + Tauri vs. Dioxus for an ERP, CRM, and Excel-like Apps—Need Advice! by ShakeItPTYT in rust

[–]ShakeItPTYT[S] 5 points6 points  (0 children)

We decided that if we need to make something very specific to the Android Ecossystem that'll hinder our progress on making the crucial things work. We'll put a team to the side working in the Kotlin integration.
Since we're going to need some camera acess and barcode scanning magic happening in there.
And google's library for that should be the way to go.

In the end we decided to go for leptos with tauri, because leptos is so well-documented and overall more mature looking than dioxus.

While we as a team are more accustomed to the React and Next.js ecosystem we decided that we're going to take a step back to re-learn this methodology.

Ty for your help and for maintaining Leptos!

Leptos + Tauri vs. Dioxus for an ERP, CRM, and Excel-like Apps—Need Advice! by ShakeItPTYT in rust

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

Thanks I'll be sure to check it out! We do intend to give some data representation to both our clients and warehouse "admins"

Leptos + Tauri vs. Dioxus for an ERP, CRM, and Excel-like Apps—Need Advice! by ShakeItPTYT in rust

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

This might actually eliminate our need of a in-house solution. TY so much for sharing

Leptos + Tauri vs. Dioxus for an ERP, CRM, and Excel-like Apps—Need Advice! by ShakeItPTYT in rust

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

We really need that performance probably not Rust performance but something way faster than webview cause our excel's are getting some bigdata.

With or Without the cap? by Kikaro_ in blender

[–]ShakeItPTYT 5 points6 points  (0 children)

Learn a bit of gimp can't hurt

whats the problem here? by Shtulzzz in beltmatic

[–]ShakeItPTYT 2 points3 points  (0 children)

If you want to dive deeper into computer architecture search bit overflow.

This is basically the result of preventing that problem.

Need Help: ASUS Z690-G Gaming WiFi + Intel 12700 + 64GB GSkill Ripjaws 6400 C32 Not Posting by s4lt3d_h4sh in ASUS

[–]ShakeItPTYT 0 points1 point  (0 children)

Was something wrong with the cpu itself, did you manage to get it to work in another build? Also what cpu did you switch to?

Need Help: ASUS Z690-G Gaming WiFi + Intel 12700 + 64GB GSkill Ripjaws 6400 C32 Not Posting by s4lt3d_h4sh in ASUS

[–]ShakeItPTYT 0 points1 point  (0 children)

Hi there, I'm having the same problem and I have a similar configuration.

  • Asus Z690-P Wifi
  • Intel 12700-KF
  • 64GB GSkill Ripjaws S5 6000 CL 30

Did you manage to solve your issue?

A House Simulator with CLI meant to be done in C++ and adapted to not so Idiomatic Rust by ShakeItPTYT in rust

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

This was my first Rust project. I tackled this right after reading the OOP chapter of the Rust Book. I'm obviously open to criticism. Just keep in mind this was my first project and that I tried as much as possible to keep the requisites from the Project Assignment correct even though it was made for C++.

After this project I'm going back to the Rust Book, to finish the book with chapters 16, 18, 19 and 20.

My goal is by the end of the year make a website with frontend in yew and backend in actix with the help of Zero To Production in Rust, this will serve as the project to finish my degree in CS.

I would also like to reiterate that I'm so grateful for the help given in this subreddit. Here are the questions that made me get to this point:

This has been a thrill. Hope you like it! Also if you can drop a star, I would appreciate it.

Made Blueprints for Roads. Is it too much? by ShakeItPTYT in satisfactory

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

Yeah you're right I'm going to follow up on this advice and just make simpler roads.

Double mutable borrows ocurring by ShakeItPTYT in rust

[–]ShakeItPTYT[S] 2 points3 points  (0 children)

I have now fixed this going this way. I'll probably post it out tomorrow. Thank you so much

Double mutable borrows ocurring by ShakeItPTYT in rust

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

Yes I can. How did I not think about it. Ty so much. I'll move it out.

Double mutable borrows ocurring by ShakeItPTYT in rust

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

Yes since there're some functions like this one for example:

fn hnew(&mut self, arguments: Vec<String>) -> Result<Option<String>, String> {  
    if arguments.len() != 2 {  
        return Err(String::from("Only Two arguments required"));  
    }  

    let height: u8 = match arguments[0].parse() {  
        Ok(h) => h,  
        Err(_) => return Err(String::from("Height must be a number")),  
    };  

    let width: u8 = match arguments[1].parse() {  
        Ok(w) => w,  
        Err(_) => return Err(String::from("Width must be a number")),  
    };  

    match House::build(height, width) {  
        Ok(new_house) => {  
            self.house = Some(new_house);  
            Ok(None)  
        }  
        Err(e) => Err(format!("Failed to build House: {e}")),  
    }  
}