#[derive(Debug)]
pub struct Aejkatappaja {
pub roles: &'static [&'static str],
pub editor: &'static str,
pub terminal: &'static str,
pub os: &'static [&'static str],
pub wm: &'static [&'static str],
pub hardware: &'static [&'static str],
pub kbd: &'static str,
}
impl Aejkatappaja {
fn specs() -> Self {
Self {
roles: &[
"Software Engineer",
"Open Source Contributor"
],
editor: "Neovim",
terminal: "Ghostty",
os: &[
"macOS",
"Arch Linux"
],
wm: &[
"Yabai",
"Hyprland"
],
hardware: &[
"Mac Studio M4 Max",
"Apple Studio Display 5k 27",
"MacBook Pro 14 M1 Pro",
"Thinkpad T14 Gen 1"
],
kbd: "HHKB Pro Hybrid Type-S",
}
}
}
fn main() {
println!("{:#?}", Aejkatappaja::specs());
} QwikDev/devtools
feat(extension): browser extension for Chrome MV3 & Firefox MV2
Component tree · State inspection · Element picker · Live renders
I built a Web Component that generates skeleton loaders from your real DOM
Automating skeleton screens by deep-cloning and styling the actual DOM tree into a loading state.






