This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ***************************************************************** */ | |
/* Compiled: 09.16.2020 by Ben Owen for 1torial.com | |
/* Tested in InDesign 2020 (15.1.1) | |
/* [email protected] | |
/* Most of the code came from the InDesign script FindChangeByList.jsx | |
/* and the function setCustomTextVariable() by Jon S. Winters. | |
/* | |
/* DESCRIPTION | |
/* This script allows you to import a simple text file containing a | |
/* text variable list and registers them as "Custom Text Variables," |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"School Spirit" by LWGMS 6th Grade coding | |
Section 1 - Setup | |
Release along with an interpreter. | |
Release along with a website. | |
Use American dialect and full-length room descriptions. | |
Use scoring. | |
Use American dialect, the serial comma, and full-length room descriptions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Delivered-To: [email protected] | |
Received: by 2002:ac9:2b2a:0:0:0:0:0 with SMTP id q42csp5186363oca; | |
Mon, 4 Feb 2019 15:12:50 -0800 (PST) | |
X-Received: by 2002:a37:57c5:: with SMTP id l188mr1344206qkb.54.1549321940131; | |
Mon, 04 Feb 2019 15:12:20 -0800 (PST) | |
X-Received: by 2002:a37:57c5:: with SMTP id l188mr1344135qkb.54.1549321938262; | |
Mon, 04 Feb 2019 15:12:18 -0800 (PST) | |
ARC-Seal: i=3; a=rsa-sha256; t=1549321938; cv=pass; | |
d=google.com; s=arc-20160816; | |
b=eJpK9y2wyk3VWL3PV2CSmV6smslLV4vq196qy2GDF+Zmid1dKCKfho3IuFM9Wg25fE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# ---------------------------------------------------------------------- | |
# reference | |
# ---------------------------------------------------------------------- | |
# compose key in this setup is shift+ralt, release, then hit dead key and live key | |
# e.g. shift+ralt, ', e = é | |
# both shifts simultaneously switches between first and second group (en and gr) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#---------------------------------------------------------------------- | |
# Arch Linux Installation Script | |
# | |
# This installs, with no intervention (other than initial edit to change | |
# RAID array drive values), Arch Linux on an encrypted btrfs raid1 array. | |
#---------------------------------------------------------------------- | |
set -eu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# return to original window (true) or stay in browser after opening url | |
RETURN_TO_ORIGIN=true | |
# for google chrome beta | |
#PROCESS_NAME=chrome | |
#CLASS_NAME=Google-chrome-beta | |
#BROWSERCMD=google-chrome-beta | |
#SUFFIX=" - Google Chrome" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import XMonad | |
import XMonad.Layout.NoFrillsDecoration | |
main = xmonad defaultConfig | |
{ terminal = "urxvt" | |
, modMask = mod4Mask | |
-- removing decoration eliminates screenlocker issue | |
, layoutHook = noFrillsDeco shrinkText defaultTheme $ Tall 1 (1/20) (2/3) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE AllowAmbiguousTypes, DeriveDataTypeable, TypeSynonymInstances, MultiParamTypeClasses #-} | |
-- a little messy, I know, but it's WIP | |
--------------------------------------------------------------------------- | |
-- Ethan Schoonover <[email protected]> @ethanschoonover -- | |
-- https://github.com/altercation -- | |
--------------------------------------------------------------------------- | |
-- current as of XMonad 0.12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--------------------------------------------------------------------------- | |
-- -- | |
-- _| _| _| _| _| -- | |
-- _| _| _|_| _|_| _|_| _|_|_| _|_|_| _|_|_| -- | |
-- _| _| _| _| _| _| _| _| _| _| _| _| -- | |
-- _| _| _| _| _| _| _| _| _| _| _| _| -- | |
-- _| _| _| _| _|_| _| _| _|_|_| _|_|_| -- | |
-- -- | |
--------------------------------------------------------------------------- | |
-- Ethan Schoonover <[email protected]> @ethanschoonover -- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------ | |
IMPORTANT NOTE: | |
Please see @craSH's update to this. He has updated and reformatted these working notes and his version is what I recommend you start with (as of 2021 or later). | |
-Ethan | |
@craSH fork & update (also listed in the forks on this gist above): |