Skip to content

Instantly share code, notes, and snippets.

View TaylorJadin's full-sized avatar

Taylor Jadin TaylorJadin

View GitHub Profile

Demo document

This lets me write some text.

Side-by-side mode is the best!

Hedgedoc is a markdown editor

Hedgedoc is a self-hostable tool...

All about markdown

Domains Camp - Building a site with WordPress

Now that you've installed WordPress and logged in, we can get started building your site!

After logging in to WordPress, you will be greeted with your site's Dashboard. We'll be checking out the several parts of the Dashboard, but the first thing to pay attention to is the Home icon at the top left. Clicking on this will exit the Dashboard and bring you to the public home page of your site. To return to the Dashboard, click the Speedometer icon .

Posts

Posts in WordPress are the core of what make up a blog, they of course can let you write and put other content on a webpage, but they also display metadata about themselves, like when they were written, who the author was, and what category they belong to. We'll get started building our website by makin

@TaylorJadin
TaylorJadin / backup.sh
Last active December 18, 2023 04:52
backup script
#!/bin/bash
TARGET="/root/foundry"
DESTINATION="/root/backups"
BACKUPS_TO_KEEP=20
NOW=`date -u +"%Y-%m-%dT%H:%M:%SZ"`
slow() {
start=`date +%s`
tar -cvJf "$DESTINATION/$NOW.tar.xz" $TARGET
@TaylorJadin
TaylorJadin / nginx.conf
Created December 18, 2023 05:06
rollforcheese.com nginx.conf
user nginx;
worker_processes auto;
worker_rlimit_nofile 2048;
load_module modules/ngx_stream_module.so;
#load_module modules/ngx_http_modsecurity_module.so;
error_log /var/log/nginx/error_log info;
events {
worker_connections 2048;
@TaylorJadin
TaylorJadin / accordion.html
Created May 2, 2024 20:32
Zendesk Guide Accordion
<div class="accordion accordion--default">
<div class="accordion__item">
<div class="accordion__item-title">
<strong>Accordion item</strong>
</div>
<div class="accordion__item-content">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua.
</p>