This lets me write some text.
Side-by-side mode is the best!
Hedgedoc is a self-hostable tool...
<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> |
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; |
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 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
#!/bin/bash | |
# Colors | |
INVALID='\033[0;31m' | |
WP='\033[0;34m' | |
NOWP='\033[0;33m' | |
NC='\033[0m' | |
for URL in "$@" | |
do |
{ | |
"require": { | |
"pressbooks/pressbooks": "*", | |
"pressbooks/pressbooks-aldine": "*", | |
"pressbooks/pressbooks-book": "*", | |
"pressbooks/pressbooks-clarke": "*", | |
"pressbooks/pressbooks-donham": "*", | |
"pressbooks/pressbooks-jacobs": "*" | |
}, | |
"config": { |
set appname to "OBS" | |
if application appName is running then | |
log appName & " is already running" | |
do shell script "killall OBS" | |
else | |
do shell script "open -a /Applications/OBS.app --args --startvirtualcam" | |
delay 3 | |
tell application "System Events" | |
repeat until visible of process appname is false | |
set visible of process appname to false |
<div class="checkbox-list"> | |
<p> | |
<input type="checkbox" class="save-cb-state" name="unique-name-1" value="no"> | |
</p> | |
</div> | |
<script src="https://code.jquery.com/jquery.js"></script> | |
<script> | |
// Avoid scoping issues by encapsulating code inside anonymous function |
<?php | |
/** | |
* Plugin Name: My neato plugin | |
* Plugin URI: https://github.com/TaylorJadin/tiny-wordpress-plugins | |
* Description: This plugin does things, probably. | |
* Version: 1.0 | |
* Author: Taylor Jadin | |
* Author URI: https://jadin.me/ | |
**/ |
#!/bin/bash | |
# Config | |
GTMETRIX_API_KEY= | |
SLEEP_TIME=5 | |
# Functions | |
function submit_test { | |
curl -s -u $GTMETRIX_API_KEY: \ | |
-X POST -H Content-Type:application/vnd.api+json \ |