Trish's Avatar

Trish

@ttrish

πŸ§‘β€πŸ’» backend dev πŸ¦€ rustacean ✍️ post a lot about rust and gamedev

176
Followers
117
Following
85
Posts
20.10.2024
Joined
Posts Following

Latest posts by Trish @ttrish

if the code is broken, the tests will catch it.
if the architecture is wrong, production will catch it.
if you never ship, nobody catches anything.

remember that.

08.03.2026 19:20 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

most junior backend devs think performance = faster code

it’s not.

performance is architecture

caching, async I/O, efficient DB queries, rate limits, batching, pagination, logging

you don’t optimize a function
you optimize a flow

17.02.2026 17:58 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Post image

after expiring cursor subscription, students be like…

08.05.2025 21:52 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

react’s biggest competitor isn’t svelte or solid. it’s common sense.

05.03.2025 18:23 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Post image

Building a JavaScript Runtime from Scratch using C programming: The Jade Runtime

medium.com/@trish07/bui...

28.01.2025 21:31 πŸ‘ 3 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

wish there were a framework where I could leave it for ten years and it still runs. I’m not sure if it’s possible now. I am doomed

06.01.2025 13:09 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Lol πŸ˜‚

05.01.2025 19:05 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Post image

programming is so crazy. like, how does this actually mean anything

05.01.2025 18:42 πŸ‘ 1 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

Thanks for the opinion

05.01.2025 18:42 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Thanks a lot
It's so helpful

05.01.2025 16:37 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

I want to build some 2D platformers and top down games like stardew valley

05.01.2025 15:36 πŸ‘ 1 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0


Seriously, it's been a while since I planned to start game dev as a hobby and make some fun games. I'm thinking of starting with Godot and GDScript. What's your opinion?

#gamedev

05.01.2025 14:49 πŸ‘ 6 πŸ” 0 πŸ’¬ 3 πŸ“Œ 0
Post image

I loved having pencil and paper coding exams! I still code (at least pseudocode) on paper all the time

04.01.2025 07:00 πŸ‘ 2 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Post image

Real πŸ˜†

03.01.2025 11:33 πŸ‘ 1 πŸ” 1 πŸ’¬ 0 πŸ“Œ 0

Good evening

03.01.2025 11:32 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Working on something....kind of a big project, let's see where it goes!!! #sidehustle

01.01.2025 03:51 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

I’m praying 2025 is a life-changing year with finances flowing like never before, change to the mindset and abundance of love, transformation, joy and wealth transfer πŸ’˜

31.12.2024 18:46 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Post image

Rust container cheat sheet πŸ¦€

31.12.2024 07:03 πŸ‘ 5 πŸ” 1 πŸ’¬ 0 πŸ“Œ 0

People say they build app with AI in 30 mins.

I tried it all, it's never less than 3 hours for a basic webapp.

Are they lying?

Am I a noob?

29.12.2024 03:27 πŸ‘ 0 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

Need some cool project ideas for this weekend. What do you recommend?

13.12.2024 19:14 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Post image

The Reason Why I Hate Frontend 😩

05.12.2024 17:56 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Preview
GitHub - hashicorp/next-mdx-remote: Load MDX content from anywhere Load MDX content from anywhere. Contribute to hashicorp/next-mdx-remote development by creating an account on GitHub.

How many of you are using Next.js for your blogs and relying on next-mdx-remote to render markdown?

Did you know it uses eval in the client, requiring unsafe-eval in your CSP headers?

If not done correctly, this can impose serious security risks. πŸ”
github.com/hashicorp/ne...

27.11.2024 09:08 πŸ‘ 0 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

That's great πŸ˜ƒ

26.11.2024 07:14 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Post image

Crafting Interpreters

- It contains everything you need to implement a full-featured, efficient scripting language. You’ll learn both high-level concepts around parsing and semantics and gritty details like bytecode representation and garbage collection.

www.craftinginterpreters.com

26.11.2024 07:08 πŸ‘ 3 πŸ” 1 πŸ’¬ 1 πŸ“Œ 0
Post image

Implementing a Key-Value Store
Follow this project series to build a lightweight, persistent key-value store using:
- Hash table as the underlying data structure
- Disk persistence to minimize memory footprint
- Network interface for remote access

codecapsule.com/2012/11/07/i...

24.11.2024 19:15 πŸ‘ 2 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Post image

Kernels 101 – Let’s write a Kernel

Write a simple kernel which could be loaded with the GRUB bootloader on an x86 system. This kernel will display a message on the screen and then hang.

arjunsreedharan.org/post/8271071...

24.11.2024 12:57 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Post image

Memory Allocators 101 - Write a simple memory allocator

This article is about writing a simple memory allocator in C.
You will implement malloc(), calloc(), realloc() and free().

arjunsreedharan.org/post/1486758...

23.11.2024 09:04 πŸ‘ 2 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Preview
GitHub - ImplFerris/rust-in-production: Rust In Production Rust In Production. Contribute to ImplFerris/rust-in-production development by creating an account on GitHub.

✨ Curious which one companies use Rust?

πŸ¦€ Rust in Production:

- list of companies use Rust

- based on public information

- not an exhaustive list

github.com/ImplFerris/r...

If you know anything missed(non-crypto), reply/pull request

#rustlang

23.11.2024 03:10 πŸ‘ 42 πŸ” 5 πŸ’¬ 5 πŸ“Œ 0

What is clean code?

I call code clean when I can understand it while just reading! Now what does this mean you could ask?
Well if you need high cognitive power to understand it, then it is not clean.

22.11.2024 10:41 πŸ‘ 4 πŸ” 2 πŸ’¬ 1 πŸ“Œ 0
Post image

Want to build a domain-specific language (DSL) for text-based user interfaces (TUI)? Break it down step by step with this tutorial!
πŸ”— Blog Link: developerlife.com/2022/08/04/r...
πŸ’‘ Learn:
- Parsing CSS-like syntax
- Designing intuitive DSLs in Rust
- Building tools for TUIs
#RustLang #DSL #TUI

22.11.2024 13:31 πŸ‘ 2 πŸ” 1 πŸ’¬ 0 πŸ“Œ 0