#devtip
Devtip for game polish: play your game at 1 fps, you’ll catch every tiny visual inconsistency you’ve been missing
March 19, 2026 at 3:45 PM
Have a problem? Just pretend it wasn't there! #devtip #gamedev #indiedev #indiegamedev #indiegame
January 16, 2025 at 6:31 PM
Devtip for game polish: calculate exactly how many fps a beat or bar takes in your game's soundtrack, now EVERY single timing in your game (tween length, fade length, gui buildup,...) should be a multiple of this
April 28, 2026 at 12:29 PM
How to get happy animals in BioEden 🤗 #devtip #gameplaytip #bioeden #managementgame #animalgame
July 9, 2026 at 7:06 PM
A great #devtip for being respectful and mindful about your colleagues time is to first create WIP/Draft PR and ensure CI succeds before you say it's ready/published for review.
Just takes a few extra seconds to you, saves minutes and unnecessary context switching for peers.
February 20, 2025 at 11:31 AM
Pro tip: 💁📊

❌ Understanding plain charts can take time
✅ Make charts easier by mapping related values

24 different values → 5 semantic groups
= way more readable charts each time you look at them!

Learn more: 👇
telemetrydeck.com/blog/mapping...

#DataDriven #iOSDev #SwiftUI #DevTip #AppAnalytics
November 3, 2025 at 1:58 PM
I recently learned about this concept
*Idempotency*
​Idempotency = 1 call or 100 calls, same result. 🔄
​It's what stops a failed payment retry from becoming a double charge. 💳🚫
​Vital for robust APIs. Build for retries, not just the happy path. 🛠️✅
​#programming #devtip #api
November 15, 2025 at 9:09 PM
I am convinced we are living in the exact same space time! I have been giving this same feedback for years.

Another #devtip

Before asking for help, create a failing test that reproduces the problem. It shows you understand the problem, it's reproducible, and helps iterate to a solution faster.
February 20, 2025 at 2:04 PM
CLI-over-API varies by Cisco platform:

• IOS-XE: CLI RPC (config commands, works over NETCONF/RESTCONF/gRPC)
• NX-OS: NX-API CLI (show + config, JSON output)
• IOS-XR: gNMI with ASCII encoding

Different transports, same idea.

#CiscoDevNet #DevTip #NetworkAutomation
December 11, 2025 at 3:00 PM
Dein Kalender muss dir heilig sein.

Überprüfe regelmäßig regelmäßige Termine – und werd sie im Zweifel los.
Sprich mit deinem Manager und Product Owner darüber.

#TimeManagement #FocusTime #FromJuniorToSenior #DevTip #Leadership
May 6, 2025 at 6:39 AM
Launching a new weekly #DevTip series! 💡

Instead of `data['key']` which raises a `KeyError`, use `data.get('key', 'default_value')`. This makes parsing varied JSON/YAML from network devices much more robust.

What topics should we cover in this series?

#CiscoDevNet #DevTip #NetworkAutomation
November 20, 2025 at 3:00 PM
Python environment management solved: uv

One tool replaces pip, venv, pyenv, poetry. 10-100x faster.

uvx runs tools without installing - from PyPI or GitHub.

⚠️ Verify sources, it's code from the internet.

uv docs: cs.co/633297hxUd

#CiscoDevNet #DevTip #Python
January 15, 2026 at 3:00 PM
💡💻 You can run `go version -m | head -1` to see which version of Go was used to build that binary.

#DevTip #golang
February 19, 2025 at 4:38 AM
💡#DevTip When writing shell scripts, use long flag names instead of short ones for CLIs. You're only writing it once anyway, and it will serve as documentation for others (and future you).
January 28, 2025 at 10:31 PM
Pro #devTip

In your #build files, where you manage your #imports, comment the date you did so plus the URL of how you know the latest #version numbers

You’ll thank me years from now…
December 8, 2024 at 12:57 PM
Sharing two practice how to optimize Server-Side Rendering:

1)Request-Level Caching (usually implemented along with serverless redis or some serverless key-value storages)

2)Parallel Data Fetching

#Nextjs #WebDev #FrontendInfra #DX #Frontend #DevTip #Vercel #React
May 2, 2025 at 3:45 PM
💡 TypeScript Trick: Extract keys of a type based on value type

Want to get all keys of a type where values are a specific type? Use this 👇

Perfect for creating utilities based on value types! 🔧

#TypeScript #devtip
July 29, 2025 at 9:08 AM
Stop hard-coding your browser automation selectors. If you’re using Playwright or Puppeteer, switch to `data-testid` attributes. It decouples your tests from CSS/DOM structure, so your flows don’t break every time you tweak the UI. #Automation #DevTip
July 27, 2026 at 7:33 PM
Did you know you can create App Store product page previews right in iMovie? 🎬

Just go to File → New App Preview, edit your clips and export directly in the right format requested by Apple. Super handy for showcasing your app and improving #ASO.

#iOSDev #BuildInPublic #IndieDev #MobileDev #DevTip
March 10, 2025 at 9:07 AM
Super-Simple code for replacing with for large images boosted browser performance (from freezing to OK), handling massive files smoothly in our admin UI.

#webdev #programming #javascript #frontend #coding #weboptimization #html #devtip #performance

tomj.pro/handling-lar...
Handling Large Images in the Browser: How Canvas Saved the Day :: Tom J.
A client uploaded 28 images, each around 5800 x 9500 pixels and 28 MB in size. When attempting to display these images in the browser, the entire tab froze - even refusing to close - for a solid 10 mi...
tomj.pro
November 28, 2024 at 5:32 PM
Makefiles: underrated for non-build workflows.

make install → uv sync
make test → pytest + lint
make deploy → ansible

Same commands locally + CI/CD. Simple, printable, debuggable (1976 Unix ethos). Boring tech that works. 💪

P.S. Image style = Lions book homage 📘

#CiscoDevNet #DevTip
January 22, 2026 at 3:00 PM
Your container only needs what your app needs.

General purpose base images include hundreds of packages you'll never use each one a potential vulnerability and something to maintain.

Purpose built images: Smaller footprint. Faster deploys. Fewer vulnerabilities.

#CiscoDevNet #DevTip #Containers
January 8, 2026 at 3:00 PM
Holiday terminal tip

`fortune | cowsay`

Random wisdom in ASCII art. Been hiding in Unix since 1979 (fortune) and 1999 (cowsay).

Add it to `.bashrc` for daily login cheer, or set it as your team's MOTD.

Happy holidays—may your packets find their way home 🏠

#CiscoDevNet #DevTip #Linux
December 25, 2025 at 3:00 PM