Cory L. Rahman
banner
corylr.bsky.social
Cory L. Rahman
@corylr.bsky.social
Same interests? Let’s follow each other!
• Lead Software Engineer @BoozAllen
• Mentor @ResilientCoders, #100Devs
• MS CS @ GMU by night

💙 Science & tech, TypeScript, Angular, GIS, Python, Rust, Go/Baduk, gaming, birds, photography

Views are mine
Not sure how this cute Field Sparrow ended up in the Coachella feed but I’m not complaining lol
#birdsky #birds #birding

(Nice photo by the way, @dreamcatcher01.bsky.social !)
April 13, 2025 at 4:48 PM
CAT
March 8, 2025 at 3:24 AM
Look I know functional state machine diagrams can be useful, but in what world is this easier than just reading the code lol
February 9, 2025 at 4:22 PM
Important note on Ollama LLM memory usage: you can view the GB required for each model at ollama.com/search. This is the memory loaded during response generation.

Models are quantized to use less, e.g. 7b (7 billion param) models use ~5GB and 14b use ~9GB. For R1 I've found 14b to be superior.
February 1, 2025 at 11:52 AM
Once Ollama is set up, get Open WebUI, an open-source LLM chat UI with features like document input. It works locally with Ollama!

To install, visit github.com/open-webui/o... and follow the “If Ollama is on your computer” instructions.

Run the container, open localhost:3000, and that’s it!
February 1, 2025 at 11:52 AM
Guide to run DeepSeek-R1 100% locally & privately (or any #foss LLM):
- Install Ollama ollama.com
- Run `ollama run deepseek-r1`

Now you can chat in your CLI!

Browse models at ollama.com/search. Use in code: `npm i ollama` JavaScript / TypeScript, `pip install ollama` Python.

🧵

#webdev #100devs
February 1, 2025 at 11:52 AM
Lol. Tried the same search with DuckDuckGo, seems decent
January 31, 2025 at 1:03 AM
I love that Bluesky lets you bookmark searches!

Open Bluesky in a browser (web or mobile), search something, then add a bookmark to save it.

One particularly handy search I have bookmarked is “from:me 📌 ToDo” so I can see all my replies I have pinned to do.

#BlueskyTips
January 26, 2025 at 4:12 PM
Shoutout to the board game Most Wanted!

It's one of those rare games that scales extraordinarily well from 2 up to 8 players. It's poker-based, so you can get in on the action even when it's not your turn.

I discovered it at #MAGFest last year and we've been having a blast with it ever since!!
January 25, 2025 at 11:54 AM
I recently had a >100,000,000 hand and I was hyped!
January 20, 2025 at 5:10 PM
I wish the sky was blue in Dhaka today! The haze was intense.
#bangladesh
January 8, 2025 at 7:00 PM
Virginia's state motto is legendary:

“Sic Semper Tyrannis” —
“Thus Always to Tyrants”

On the Virginia seal and flag, this motto is paired with an image depicting the Roman goddess Virtus literally standing on a fallen tyrant!

#virginia #flag #history #usa #flags #vexillology
January 8, 2025 at 2:54 PM
Here are bonus photos of the Allen’s Hummingbird. So fierce!

Do you think it’s drinking the water? Or just taking a bird-bath?
December 29, 2024 at 7:14 PM
Best hummingbird photo I think I’ve EVER gotten!

Allen’s Hummingbird sitting on the edge of a waterfall.

San Diego Botanic Garden, Dec 26.

#birds #birding #birdsky #wildlife #nature
December 29, 2024 at 7:14 PM
Trending is all South Korea right now 🔥 …but for very different reasons!
December 27, 2024 at 3:48 PM
Merry Christmas all! 🎄

Started my morning with some birding. Really happy with this photo I got of an Acorn Woodpecker!

#birds #birding #birdsky #wildlife #nature
December 25, 2024 at 8:52 PM
I visited the San Francisco Go Club last night!! Oldest Go Club in the nation.

Win: 1. Loss: 2.

I had a blast!

#baduk #gogame #igo
December 23, 2024 at 4:59 PM
Just saw one of these in SF today! I’m from out of town so it was a bit of a shock.
December 23, 2024 at 6:19 AM
I like this! Appreciate the dark theme too.

One small thing I caught on mobile iOS Safari is that the nav bar doesn’t stick to the top when I scroll
December 22, 2024 at 4:52 PM
December 21, 2024 at 2:45 AM
December 11, 2024 at 2:29 AM
This was such a cool project to build. Users could monitor local trends and share Status Reports for the current day, like this historical report from Nov 4, 2020
December 7, 2024 at 2:08 PM
Throwback to when I made COVID-19-Watch in 2020!

I had so many users reach out, thankful for how easy it was to track trends and point to data. 💙

This video shows the first year of the pandemic.

More: covid-19-watch.com#/about

#foss #opensource #buildinpublic
December 7, 2024 at 2:08 PM
Interpolating HSL and RGB is very different. For example, let's take interpolating from red to blue.

For HSL, you're going to pass through all the other hues as you go from red to blue. For RGB, it's going to result in a more "direct path". Depends what you need!

🧵(4/4)
December 6, 2024 at 1:36 PM
I love HSL for color. It's so intuitive.

Example: What's the HSL for "slate" (bluish gray)?

- Hue: 210, between cyan and blue (0-360)
- Saturation: More gray than blue, 30% (0 = gray)
- Lightness: Dim, 40% (50% = neutral)

hsl(210, 30%, 40%)

Yep, that's what I was picturing!

🧵(1/4)

#css #webdev
December 6, 2024 at 1:36 PM