New photo site!
6/29/20
I’ve decided to create a standalone website for some of the pictures that I take with my film cameras. The site is pretty barebones right now, but that’s because I’m doing all the html, css, server stuff, hosting, domain, etc. This should be a nice way to build something from the ground up.
A quick aside
I’ve been using ssh in order to connect to my server and have had to find an easy way to copy and paste text from the local machine to the remote one.
For example, I wanted to embed an image through flickr but it’s this gigantic jumble of characters that I would absolutely mess up if I were to manually type the entire link. Here’s my solution:
- Create a file called
toUpload
on the local machine containing the link. - Use
scp
in order to transfertoUpload
to the remote machine. - While inside vim on the remote machine, use
!!cat toUpload
to paste the file’s contents into vim.
Not the most elegant solution but it works!