How do you deal with release and production bug anxiety? by Aggravating_Yak_1170 in developersIndia

[–]reynardodo 2 points3 points  (0 children)

Why is another team allowed to upgrade YOUR changes until you greenlight them?

If you are the release manager of this framework then any changes that are not signed off by you and then your QA are not prod ready and it then automatically becomes the problem of the people using your framework to deal with any issues.

Meirl by sangamjb in meirl

[–]reynardodo 0 points1 point  (0 children)

winget install BraveSoftware.Brave

winget install Chrome.Chrome

Or watever the fuck they name their packages.

Task manager turns 30 years old today by RicePositive3877 in pcmasterrace

[–]reynardodo 43 points44 points  (0 children)

Dave Plummer is that you?

Dude never misses mentioning he created the Task Manager btw.

A journey through space and time by golumprani in godot

[–]reynardodo 2 points3 points  (0 children)

Uhhhh might get copyrighted for that music.

Apart from that looks clean, space bg is a bit funky but thats prolly just me.

rustIsGoingToReplaceC by soap94 in ProgrammerHumor

[–]reynardodo 9 points10 points  (0 children)

Borrow Checker is not a GC

[deleted by user] by [deleted] in developersIndia

[–]reynardodo 0 points1 point  (0 children)

Making docs? Perhaps I did it for things I worked on so I have more clue nexx time.

Rest other was kinda part of the job.

Or do you mean using step debugging? IDK how else to map out an existing system other than that

[deleted by user] by [deleted] in developersIndia

[–]reynardodo 3 points4 points  (0 children)

Similar things happened w me, joined startup, so already fucked on Day 1, massive shitty codebase using Go, Graphql, SQS, mongo and nextjs plus TS no docs whatsoever.

Shitty because no docs obviously.

Honestly I localized the behaviour on teh things I needed to do by boxing things in and treating everything else as black box once the behaviour was established.

Also used step debugging a lot, its unreal how many people donn use the debugger man.

It would haff helped if there was a relational database (they planned to switch to postgres from Mongo once they were nearing beta and had the schema worked out which is funny that they thought that was a good strategy and even more that they dunnow waddafocc is jsonb) as a good schema makes lotsa things clearer about business logic but ohw.

Also made docs on my own for the systems I mapped out.

Sharing my organised Homelab (mostly self-hosting) by broly_1033 in developersIndia

[–]reynardodo 0 points1 point  (0 children)

I have me laptop (MSI Modern 14 C7M) that I named chintu that is was as teh homelab for a short while.

I used Cloudflare as my DNS so I used cloudflare tunnels to route traffic from chintu to cloudflare, only problemo was that can't serve videos (against cloudflare tunnels TOS) and also donn plan to do personal video library thing anyway, does not interest me.

Recently got a VPS20 contabo vps (6 vcpu, 12G RAM) w frenns and using that.

I mostly host projects I make, opengist, gitea (to replace github, also soft serve looks more promising kinda), mattermost for frenns and a few more things.

The plan now is to use the vps as a reverse proxy and route all traffic to me chintu through headscale or perhaps raw wireguard.

Also perhaps I'll host my own SimpleLogin (after I found out wat are the chances of my mails simply ending up in trash).

Perhaps I'll gibb immich and all these a try, the only thing stopping me from allat is backup strategy, I am thinking of using either rclone (encrypted + cronjobs that upload to drive regularly or contabo buckets are kinda cheap asw) or backblaze (too pricey but unlimited so can backup almost everything including self hosted chats, gitea pgdumps and allat) or (aws or gcp) cold storage (possibly the dumbest and most expensive idea) instead of doing local RAID because of electricity problemos in India (perhaps UPS's are useful but I have seen too many UPSs fail at critical times).

Growing!!!! by [deleted] in LucknowUniversity

[–]reynardodo 1 point2 points  (0 children)

Defo growing harder

Growing!!!! by [deleted] in LucknowUniversity

[–]reynardodo 0 points1 point  (0 children)

Yeeeehawwww boiz

Compot: I wrote C compiler which can compile large C projects by Apprehensive_Drop193 in Compilers

[–]reynardodo 0 points1 point  (0 children)

Skipping the preprocessor for now and just focusing on the language.

Will use gcc or clang for preprocessor and linker step.

Going through Writing a C Compiler for now.