Saw this great @humblebundle.com deal for up to 18 books from @nostarchpress.bsky.social and supports @eff.org that includes essential reading for offensive and defensive techniques.
www.humblebundle.com/books/hackin...
Saw this great @humblebundle.com deal for up to 18 books from @nostarchpress.bsky.social and supports @eff.org that includes essential reading for offensive and defensive techniques.
www.humblebundle.com/books/hackin...
Today's Rust compiler is self-hosting (written in Rust, compiles itself using an existing compiler). But this raises a question: How was the very first Rust compiler created when there was no Rust compiler to build it?
#RustLang
Today's Rust compiler is self-hosting (written in Rust, compiles itself using an existing compiler). But this raises a question: How was the very first Rust compiler created when there was no Rust compiler to build it?
#RustLang
#GitHubActions #DevOps
#GitHubActions #DevOps
All experience levels welcome - from beginners to experts, even future Rustaceans.
Takes 10-25 mins, anonymous responses.
Deadline: Dec 17
🔗 blog.rust-lang.org/2025/11/17/l...
All experience levels welcome - from beginners to experts, even future Rustaceans.
Takes 10-25 mins, anonymous responses.
Deadline: Dec 17
🔗 blog.rust-lang.org/2025/11/17/l...
This is huge news from pre:Invent 2025, bringing Rust's performance, memory efficiency, and safety to serverless functions.
What AWS re:Invent (Dec 1-5, Las Vegas) announcements are you most excited about?
#AWS #Rust #Serverless
This is huge news from pre:Invent 2025, bringing Rust's performance, memory efficiency, and safety to serverless functions.
What AWS re:Invent (Dec 1-5, Las Vegas) announcements are you most excited about?
#AWS #Rust #Serverless
Key lesson: "This can never happen" usually means "hasn't happened yet." Always implement proper error handling in prod!
Kudos to Cloudflare for the transparent postmortem 🦀
Key lesson: "This can never happen" usually means "hasn't happened yet." Always implement proper error handling in prod!
Kudos to Cloudflare for the transparent postmortem 🦀
If you’re in MoCo and looking for a friendly group to code, chat, and caffeinate with, check out the meetup link: www.meetup.com/mocode-coffee/
If you’re in MoCo and looking for a friendly group to code, chat, and caffeinate with, check out the meetup link: www.meetup.com/mocode-coffee/
🎟️ here: www.districtcon.org/tickets
🎟️ here: www.districtcon.org/tickets
From O'Reilly's Programming Rust, 2nd Edition
#RustLang #Rust #RustProgramming #OReilly #Learning
From O'Reilly's Programming Rust, 2nd Edition
#RustLang #Rust #RustProgramming #OReilly #Learning
When using self-hosted runners, GitHub Actions resets the system PATH when executing jobs. This can break your workflow if you've pre-installed dependencies on your runner.
1/4
When using self-hosted runners, GitHub Actions resets the system PATH when executing jobs. This can break your workflow if you've pre-installed dependencies on your runner.
1/4
1. 📚 Official Resources (all free!):
- "The Rust Programming Language" (aka "The Book") - essential starting point
- Rustlings - hands-on exercises in your terminal
- Rust By Example - learn by doing!
1. 📚 Official Resources (all free!):
- "The Rust Programming Language" (aka "The Book") - essential starting point
- Rustlings - hands-on exercises in your terminal
- Rust By Example - learn by doing!
GitHub-Hosted Runners power your CI/CD workflows across:
🐧 Linux
🪟 Windows
🍎 macOS
All run on robust Azure VMs, with dedicated data centers for macOS.
#GitHubActions #DevOps
GitHub-Hosted Runners power your CI/CD workflows across:
🐧 Linux
🪟 Windows
🍎 macOS
All run on robust Azure VMs, with dedicated data centers for macOS.
#GitHubActions #DevOps
GitHub Actions is GitHub's built-in tool for automating builds, tests, and deployments.
GitHub Actions is GitHub's built-in tool for automating builds, tests, and deployments.
I recently heard someone describe AI as "spicy autocomplete," and after chuckling, I realized it's a perfect description of how I benefit from AI daily.
I recently heard someone describe AI as "spicy autocomplete," and after chuckling, I realized it's a perfect description of how I benefit from AI daily.
Goal: Match alphanumeric tokens with dots, hyphens, and underscores. Examples:
abc123.test-token_example
my-awesome.token_123
user_token-2.0
First attempt:
$token =~ [A-Za-z0-9.\-_]+
(answers in thread...)
Goal: Match alphanumeric tokens with dots, hyphens, and underscores. Examples:
abc123.test-token_example
my-awesome.token_123
user_token-2.0
First attempt:
$token =~ [A-Za-z0-9.\-_]+
(answers in thread...)