Showing posts with label gotcha. Show all posts
Showing posts with label gotcha. Show all posts

Sunday, December 17, 2023

so easy to break a hugo site

I forgot to put my tags in doublequotes.

gh pages actions freaks out at you saying the TOML is wrong.

multiple git commits later realized last few blogposts werent posted :(

even though it was in one file. all the other posts that were correctly formatted wouldnt be added because hugo builds the entire site at once from the markdown files.

Friday, December 8, 2023

how to fix syncthing "folder marker missing"

syncthing creates an invisible file called .stfolder if it cant find it you get this error and sync thing wont start!!! its really easy to accidentally not copy it if you delete a folder and start from scratch so just make a new folder and name it that and you should be all good!

gotcha: keyboard shortcut for vim

Setting a keyboard shortcut for launching apps on linux mint 2 ways.

- vim .xbindkeyrc

- start>settings>keyboard>application shortcuts

was wondering why just having path to vim wasn't working

it needs to be run as a terminal command.

THE FIX: >>

xfce4-terminal -e 'vim'

whats the -e flag?

 it specifies that its to be run as a terminal command.