HackerTrans
TopNewTrendsCommentsPastAskShowJobs

dineshkumar_cs

no profile record

Submissions

Pay Transparency Laws in BC

www2.gov.bc.ca
3 points·by dineshkumar_cs·3 lata temu·0 comments

Show HN: Dolores – Config management on your cloud (AWS/GCP)

github.com
9 points·by dineshkumar_cs·3 lata temu·1 comments

How reddit built r/Place

redditinc.com
1 points·by dineshkumar_cs·3 lata temu·0 comments

comments

dineshkumar_cs
·2 lata temu·discuss
Congrats on the release. Running actions on AWS is nice. It's complex to deal with tools in the AWS ecosystem.
dineshkumar_cs
·2 lata temu·discuss
I've been using it to generate Docx/PDF from my markdown. Just started to explore means to customize (with tex template). Recent updated obsidian plugin requires explicitly configuring pandoc with latex which started the rabbithole customizing experiment :)
dineshkumar_cs
·3 lata temu·discuss
I use different browser with multiple profiles, so i've a clean history and separation of work. Though i love some basic features like searching tabs, it was very limiting wrt privacy/blocking.

I've tried my best to adopt, the major issue was default color management and couldn't disable it. It keeps changing my display (brightens). I wish a browser releases a feature to consume less memory!
dineshkumar_cs
·3 lata temu·discuss
Nice, was able to get a summary for my recording https://www.videogist.co/videos/scaling-beyond-microservices...

How are you defining chapters though?
dineshkumar_cs
·3 lata temu·discuss
Versioning, feature toggle and rollback - automated and implemented at different level based on the system. It could be an env configuration, or db field or down migration scripts or deploying last working version.
dineshkumar_cs
·3 lata temu·discuss
Hey Folks,

Apart from building one myself, I've noticed many organizations building config-management systems internally since they need to manage secrets/config with features like versioning, rollbacks, etc, on their cloud.

Thought AWS and GCP has KMS, it doesn't fit the orgs with multiple service and environments requirement. I will be adding multi cloud support and critical features of secrets management workflow. I would love to hear your thoughts.
dineshkumar_cs
·3 lata temu·discuss
I have a similar setup of Nginx proxy, Backends are Go binaries (without Docker) and Postgres. If it's for a pet project the free tier on GCP suffices.
dineshkumar_cs
·3 lata temu·discuss
TXT files -> Sticky Notes -> OneNote -> Evernote -> Sublime -> Obsidian -> MD Files

Git and local markdown beats time and all note-taking apps.
dineshkumar_cs
·3 lata temu·discuss
If you've a small team, it doesn't make sense to have docker/established stack, and managing k8s needs experience and still is a pain.

You could get away with copying artifacts over ssh for a while.

Deployments could still be via Github actions or any other CI/CD tool or even scp.
dineshkumar_cs
·3 lata temu·discuss
Use Prometheus or Influx for storing metrics, ELK or Opensearch or loki for logs, Grafana for visualization, and Jaeger for tracing.

You would need a team to configure this setup and make it right over time. It's worth the investment instead of paying a cloud market leader.
dineshkumar_cs
·3 lata temu·discuss
Go service with Postgres (without external cache), deployed (SCP) in GCP VM

Reducing touchpoint definitely helps at MVP stage. You've to trade performance with features (depending on the tool dev tools vs CRUD business)
dineshkumar_cs
·4 lata temu·discuss
If it's for a side project, i would think about resiliency and lasting for long time once there's a need for it. This's also contributed by the stack or how you setup infra. So don't bother initially.

You can pick a framework if you're comfortable with mix of frontend and backend (rails, django etc)

If you are more on backend, pick say react in frontend and your choice of language in backend and write monolith. Have a database if needed. Avoid cache completely (You don't need to scale or make it performant). Infact you can use file based db (eg: bolt) and add Pg/Mongo/Sql later.

My usual setup is,

  1. Go for backend, react frontend
  2. Deployed backend in free-tier GCP VM
  3. Deployed frontend in Netlify/Heroku
  4. Use free pg database in Heroku
Avoid self provisioning as much as possible if you don't need the control.

If it's for Indiehacker project, would suggest to not build it right away, use nocode platform or template to setup landing page, validate and do things.
dineshkumar_cs
·4 lata temu·discuss
Have done few OSS, Go wrapper on top of gcloud client to do the tedious job of searching across whole infra for set of Vms (DBs, Kafka clusters, or any components etc) and login with tmux. Useful for my workflow.

Have done other dev projects for improving my productivity (eg. Infra setup, Automation etc) which all aligns with fact that i'm the first user and not worried about its success.

Even-though not focusing on marketing for the same, i wish more people use it and can extend it for value add then complex featurewise.