- Email :- lordofwizard@protonmail.com
- Phone no :- +91 825799XXXX
- Discord
LordOfWizard#6774 - Github Profile :- here
Rust Dust & Guts
| macro_rules! input { | |
| ($($var:ident)*) => { | |
| let mut buf = String::new(); | |
| std::io::stdin().read_line(&mut buf).unwrap(); | |
| let mut words = buf.split_whitespace(); | |
| $( | |
| $var = words.next().unwrap().parse().unwrap(); | |
| )* | |
| } | |
| } |
| #[allow(unused_imports)] | |
| use std::io; | |
| use std::str::FromStr; | |
| fn main() { | |
| let mut scanner = Scanner::default(); | |
| let t = scanner.next::<u64>(); | |
| for _ in 0..t{ | |
| solve(); | |
| } | |
| } |
LordOfWizard#6774Rust Dust & Guts
note there are certain things you should know before starting
CPP=g++
CPPFLAGS=-g -Wall $(shell sdl2-config --cflags)
LDFLAGS=$(shell sdl2-config --libs)| #!/bin/sh | |
| #Just a simple brightness changing script | |
| # Requires the program brightnessctl program to be installed | |
| current_btr=$(brightnessctl g) | |
| command=$1 |
Entire process of installing bringup manually using a systemd service.
rosrun robot_upstart uninstall robot_uppstart_serviceNote : robot_upstart_service replace this with your service name without .service extension.
| type | Zettel | |||
|---|---|---|---|---|
| title | Installing QEMU on Arch Linux | |||
| description | Tried this on Anton | |||
| tags |
|
|||
| coverImage |
Tried this on April 4, 2024
Hi I am Advait Pandharpurkar, aka LordOfWizard. I am a Junior Year Student from Pune University, India.
I am currently Working as a Systems Engineering Intern, at a Robotics Startup called RigBetel Labs.
I like to develop awesome software with my specific niche being working closely with GNU/Linux Systems.
I love to write cli-tools, compilers, game engines. I also like to play chess.
I have developed many projects most of them being written in Rust Programming Language.
| [dependencies] | |
| reqwest = { version = "0.11", features = ["blocking", "json"] } | |
| serde = { version = "1.0", features = ["derive"] } | |
| serde_json = "1.0" |
| name: Auto Commit on Weekdays | |
| on: | |
| schedule: | |
| - cron: '30 12 * * 1-5' # Runs at 12:30 PM UTC (Monday-Friday) | |
| workflow_dispatch: # Allows manual trigger | |
| jobs: | |
| commit: | |
| runs-on: ubuntu-latest |