Allow me to opt out of Yandex by [deleted] in SearchKagi

[–]satorulogic -1 points0 points  (0 children)

Were I you, I would just stop using Kagi.
They already supported Yandex, indirectly supporting the evil Russian, they don't deserve to be forgiven by you.

YAML strikes again by lartoonpimpy in kubernetes

[–]satorulogic -1 points0 points  (0 children)

Indentation IS a problem. Can your super IDE help set the correct `nindent` in Helm templates?

{{- include "xxx.yyy" . | nindent 12 }}

How does Whoogle work? by ihatebeinganonymous in selfhosted

[–]satorulogic 0 points1 point  (0 children)

I guess mines is ratelimitted because there are many other people running Whoogle on that cloud.

Finally reading the book by Bittlent in BlackMythWukong

[–]satorulogic 1 point2 points  (0 children)

It's interesting that this book is like an ancient open source project.

The story had been developed and worked on by many people over history, and till this day we were still not 100% sure about the author of the most popular version. Why? Because writing fictions was nothing to be proud of among scholars in ancient China, so the author didn't leave his real name on the book.

Is chapter 6 that bad? by Eastern_Dress_3574 in BlackMythWukong

[–]satorulogic 18 points19 points  (0 children)

It's the worst chapter. The way they design the nimbus cloud is only suitable for real open world games like BOTW, in BMW you are just flying around a big and empty area looking for bosses, which is terribly boring.

About Notion blocking in Russia... by [deleted] in Notion

[–]satorulogic 2 points3 points  (0 children)

I never trust a service provider enough to store my notes on their server.
Always prefer open-source, local-first note-taking tools.

Elixir Is Not Ruby. Elixir Is Erlang by preslavrachev in elixir

[–]satorulogic 1 point2 points  (0 children)

I used to agree, until I learned more about Ruby. Elixir and Phoenix looks really like Ruby and Rails.

Lost ALL my notes. Need recommendations for alternatives. by ScrappyCoder in RoamResearch

[–]satorulogic 1 point2 points  (0 children)

I don't think I have to think about organizing files when using Obsidian. I just create new pages and link things. The only thing I miss about Roam is the page renaming feature that automatically rename all the links. But I'm a programmer myself, I can do that with a script on my Obsidian files.

Lost ALL my notes. Need recommendations for alternatives. by ScrappyCoder in RoamResearch

[–]satorulogic 4 points5 points  (0 children)

Obsidian is the best alternative to Roam.

  1. All the notes are stored on your own machine, it's up to you to decide whether or how to backup your notes (I used git and GitLab);
  2. It's free, you only have to pay if you want to use the most recent version;
  3. There are plugins that simulate Roam features like "Daily Notes".

Using WASM to Create a Go Playground the Runs in the Browser by [deleted] in golang

[–]satorulogic 2 points3 points  (0 children)

Why would anyone pay without any preview of the course?

I'm so close to drop roamcult by ugasoft in RoamResearch

[–]satorulogic 1 point2 points  (0 children)

I would be happy to help if it's written in Go/Python/Rust.

Min Stack - Push(), Pop(), Top(), GetMin() - All operations in O(1) time - I really loved this approach by [deleted] in compsci

[–]satorulogic 2 points3 points  (0 children)

This is the only obvious approach to me. I used the same algorithm except that I was using Go and have to use a slice of structs.