Website Github GPG keys

I write code, that’s about all I’m rn

  • 5 Posts
  • 50 Comments
Joined 1 year ago
cake
Cake day: July 3rd, 2023

help-circle
rss




















  • I have ideas of things to do, but since I am starting from 0

    Perfect! You’ve taken the hardest step. I can give you advice from here.

    Computers only really do 3 types of work, there can be more but most can be summarized like this:

    • Displaying things on screen: this only ever happens on the end user’s device. React and React native are the best options for that.
    • Copying data from one spot to the next: simple operations to get data from one location, reencode it and send it somewhere else, wether to the end user’s device or another database its all the same work. Typescript is best suited for that.
    • Hard work: processing large blobs of data like reencoding pictures and videos, consuming megabytes of data at a time and running a calculation. Go is best suited for that.