Blog: 2023-09-19: Difference between revisions

From razwiki
Jump to navigation Jump to search
(Created page with "Software projects I use all the time source control * git text editing * vim * emacs code navigation * ripgrep administration * fish * ssh * apt application development *...")
 
No edit summary
 
Line 44: Line 44:
* jekyll
* jekyll
* asdf
* asdf

----

Small expect script

<pre>
log_user 0
spawn cat /etc/ssh/ssh_host_ed25519_key.pub
expect EOF
set out [open output.txt w]
puts -nonewline $out $expect_out(buffer)
close $out
</pre>

Latest revision as of 23:43, 19 September 2023

Software projects I use all the time

source control

  • git

text editing

  • vim
  • emacs

code navigation

  • ripgrep

administration

  • fish
  • ssh
  • apt

application development

  • postgres
  • python
  • javascript
  • node

interactive computing

  • ipython

other utilities

  • neofetch
  • onefetch
  • pass

virtualization

  • podman
  • qemu

proprietary

  • wsl

other programming languages

  • java
  • ruby

tools I'd like to move away from

  • jekyll
  • asdf

Small expect script

log_user 0
spawn cat /etc/ssh/ssh_host_ed25519_key.pub
expect EOF
set out [open output.txt w]
puts -nonewline $out $expect_out(buffer)
close $out