• 1 Post
  • 34 Comments
Joined 11 months ago
cake
Cake day: August 14th, 2024

help-circle





  • Just a reminder that as long as you don’t need any kind of platform hosting or complex multi-user setup, git itself works fine on a remote machine as your server, even just on LAN. (As always, just setup an ssh key on the two machines so ssh commands are secure and don’t require passwords all the time)

    > cd /my/repos
    > ssh user@10.x.y.z ‘mkdir /home/user/repos/new_repo.git && cd $_ && git init --bare’
    > git clone user@10.x.y.z:/home/user/repos/new_repo.git
    


  • I will always recommend Ben Eater’s breadboard computer 6502 project for anyone who wants to know how it works. The 8-bit breadboard computer project as the next step too, to really dive into all the pieces. But the 6502 project is a nice entry point into hardware itself as well as the basic components of processor and memory. How and what the 1s and 0s are doing and how to make them do what you want them to do. Getting up to a working character display and serial input for a keyboard to type is such a satisfying process that takes only a few hours if you kinda know what you’re doing and a few days if you know nothing.






  • There will always be a need for talented systems engineers with emphasis on security. Programming in general is a good thing to learn anyways but understanding systems, how they work, and how they communicate is equally as important. There’s a lot of manpower needed for information security right now.