Some good doco from Digital Ocean over here: How To Use SSHFS to Mount Remote File Systems Over SSH.
Category Archives: Sys Admin
Enabling XDebug for PHP under Apache2
Putting these settings in /etc/php/7.2/apache/php.ini did the job:
[XDebug]
xdebug.profiler_enable = 1
xdebug.profiler_output_dir = /tmp/xdebug
xdebug.profiler_output_name = cachegrind.out.%p.%u.%H.%R.xt
The cachegrind files are now written to /tmp/xdebug.
security.txt
This security.txt looks like a good idea.
The documentation system
Today I discovered The documentation system (over here). The four quadrants on two axes are:
- Tutorials
- How-to guides
- Reference
- Explanation
VSCode explorer tree indent size
So I was poking about in my VSCode settings, File -> Preferences -> Settings. And I found the Workbench > Tree: Indent options which controls the tree indentation in pixels. The default settings was 8 pixels, which is too small for my liking, so I cranked it up a notch to 37 pixels! Yay woo!
Wrap setting for Vim mode for VSCode
Over on the VSCodeVim chatroom a bloke called Chris pointed me to the ‘Whichwrap’ setting for Vim mode in VSCode. In VSCode click File -> Preferences -> Settings; then in the Extensions / Vim settings search for ‘Whichwrap’ and enter: l,h
Understanding Kerberos
Today on r/programming: Understanding how Kerberos works, but also WHY it works the way it does. (PDF)
Jonah Edwards – Internet Archive Infrastructure
An awesome video on the Internet Archive Infrastructure. 200 petabytes!
How to set up a basic jump host with SSH in Linux
Found an article: How to set up a basic jump host with SSH in Linux.
Free for developers
Check out https://free-for.dev/ for a list of services which are free for developers.