https://github.com/whoisdreamer/whoisdreamer
https://github.com/whoisdreamer/whoisdreamer
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/whoisdreamer/whoisdreamer
- Owner: wHoIsDReAmer
- Created: 2022-05-09T07:30:02.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-02T11:12:31.000Z (9 months ago)
- Last Synced: 2025-02-01T18:22:11.335Z (4 months ago)
- Size: 34.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 👋 Hello, I'm DevLCW
Curious about Hacking or Security and Developer, DevOps
so, it's more information of me
```rust#[derive(Debug)]
struct Me<'a> {
name: String,
tech: Vec<&'a str>,
favorite_lang: Vec<&'a str>,
}impl<'a> Default for Me<'a> {
fn default() -> Self {
Me {
name: "LCW".to_string(),
tech: vec![
"Node.js",
"Bun (not main)",
"Rust (still studying)",
"Go",
"C++",
],
favorite_lang: vec![
"C++", "Rust", "Go", "Javascript", "Typescript", "Java",
],
}
}
}fn main() {
// "I want to study security or hacking more deeply
// and love low-level languages or system engineering."
println!("Btw, it's me! {:?}", Me::default());
}```