18-Jan, 2025 - morning links, etc.
links, etc Oh Shit, Git!?! for future me.
links, etc Oh Shit, Git!?! for future me.
TIL: cloud-init will make life easier in multipass world to start a VM and inject my ssh keys into the mix launch the vm with a cloud-init profile that creates your user and injects the right ssh key into the mix. cloud-init.yaml users: - default - name: sulrich sudo: ALL=(ALL) NOPASSWD:ALL ssh_authorized_keys: - ssh-ed25519 AAAA .... invoke with appropriate injection. multipass launch -n sweet-jammy-vm jammy --cloud-init ~/.dotfiles/templates/cloud-init.yaml
links, etc Harder Drive: Hard drives we didn’t want or need a delicious waste of network bandwidth and linux network drivers. quite amusing. Have we stopped to think about what LLMs actually model? • The Register no. tags: linux, ai, hacks
because i have to google these sysctl settings every … time.. /etc/sysctl.conf # disable IPv6 on the wlan0 interface net.ipv6.conf.wlan0.disable_ipv6=1 # insufficient on its lonesome net.ipv6.conf.wlan0.autoconf=0 # don't forget this .. it’s important to disable autoconf because it will still pick up the RAs for learning the default and this may not deterministically let you do what you want. replace wlan0 with the interface you want to starve.
i’m not at all a ruby user so this is being stored away for future reference. of particular note, pay attention to the “checking your code into version control” section … specifically regarding the gemfile.lock and what to do … This is important: the Gemfile.lock makes your application a single package of both your own code and the third-party code it ran the last time you know for sure that everything worked....