HackerTrans
TopNewTrendsCommentsPastAskShowJobs

markyg

no profile record

Submissions

[untitled]

1 points·by markyg·قبل شهرين·0 comments

[untitled]

1 points·by markyg·قبل 6 أشهر·0 comments

Where I find free game assets (compiled my go-to sources)

assethoard.com
21 points·by markyg·قبل 6 أشهر·3 comments

Asset Hoard – Local-first asset manager for indie game devs (beta)

assethoard.com
1 points·by markyg·قبل 6 أشهر·1 comments

Pin file in Neovim and quickly switch to them via telescope with dartboard.nvim

github.com
1 points·by markyg·السنة الماضية·1 comments

Space secrets leak disclosure

huggingface.co
197 points·by markyg·قبل سنتين·83 comments

comments

markyg
·قبل 6 أشهر·discuss
I'm building a desktop app in Tauri (Rust + SvelteKit) and ran into a brutal performance wall when a beta tester tried to import 120,000 files. The app froze for 47 seconds.

The problem was straightforward in hindsight: I was sending all scanned files across Tauri's IPC bridge. ~70MB of JSON each way, UI thread blocked, user assumes crash.

Streaming in chunks helped responsiveness but killed throughput (8s scan → 45s with IPC overhead). The real fix was asking: does the frontend actually need this data?

It didn't. The frontend needed a summary—file counts, type breakdown, detected packages. The actual file list could stay in Rust, referenced by UUID, and never cross the bridge at all.

Result: 8 seconds with live progress, 70MB less memory, and a "send to background" feature so users can keep working during long scans.

The write-up covers the naive approach, the failed streaming attempt, the cache pattern that worked, and a subtle race condition I introduced when implementing background scanning.
markyg
·قبل 6 أشهر·discuss
I see this question pop up a lot, so I figured I'd just write down where I actually get my assets from.

Been collecting stuff for years.. 3D models, sprites, audio, textures, and these are the places I keep going back to. Tried to include the pros and cons of each since not all "free" is created equal.

https://assethoard.com/blog/where-to-find-free-game-assets-2...

Covers itch.io, OpenGameArt, Kenney, Poly Pizza, Freesound, and a bunch of others. Also got into the different Creative Commons licences because that trips people up (myself included).

Happy to add any I've missed if you've got favourites.
markyg
·قبل 6 أشهر·discuss
Hey HN,

I've been building games on the side for a few years and got fed up with the asset chaos. Unity packages I bought and forgot about, Blender models scattered across folders, sprite sheets from bundles I never unpacked. I'd spend ages hunting for something I knew I had, or worse, buy it twice.

So I built Asset Hoard. It's a desktop app that gives you one searchable library for all your game dev assets. Runs locally, no account required, your files stay on your machine.

Built with Tauri, Svelte, and SQLite. Supports 40+ file types with visual previews: 3D models (.fbx, .obj, .gltf, .blend), sprites with animations (.aseprite, .krita), audio with waveforms, textures. You can inspect Unity .unitypackage and Godot assets without importing them.

It's free during beta. Looking for feedback from anyone who's got a mess of assets they'd like to organise.

Site: https://assethoard.com

Happy to answer questions about the tech stack or the product.
markyg
·السنة الماضية·discuss
A Neovim plugin to mark files and quickly access them, inspired by Harpoon and Lasso.

You can navigate in normal mode:

<leader>da - Add current file to marks <leader>dr - Remove current file from marks <leader>dl - List marked files in Telescope <leader>dc - Clear all marks <leader>1 through <leader>5 - Go to mark by index

And while in telescope

Press Ctrl-v to open in vertical split Press Ctrl-x to open in horizontal split Press Ctrl-d to remove the selected file from the list Press Ctrl-k to move the selected file up in the list Press Ctrl-j to move the selected file down in the list