This guide is intended for people who'd like to experiment with TypeORM in a hands-on fashion. I find this especially helpful when attempting to construct complex queries.
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
#! /usr/bin/env zsh | |
# Call this script as ./dir-switch.zsh /desired/directory | |
set -e | |
trap 'echo ERROR at $0 $LINENO; return' ERR | |
active_window=$(tmux list-windows | rg '\(active\)' | sed 's/:.\+//g') | |
panes=("${(@f)$(tmux list-panes -F '#{pane_index}')}") | |
active_pane=$(tmux list-panes -F '#{pane_active} #{pane_index}' | rg '^1' | sed 's/^1 //g') |
- Install Karabiner Elements
- Open your karabiner.json file (it will be in
~/.config/karabiner/karabiner.json
). - Find
complex_modifications
. It will have a keyrules
that takes a list ("rules": [...]
). - Inside the square brackets, paste this:
{
"description": "Change Caps Lock + I/J/K/L to Arrow Keys",
I hereby claim:
- I am henrebotha on github.
- I am henrebotha (https://keybase.io/henrebotha) on keybase.
- I have a public key ASBtSJbXiNfXbqei3-OxyWEGxupaV6xII3zohs5citb4Ago
To claim this, I am signing this object:
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
body, article, header | |
{ | |
background-color:white; | |
/*background-image:url("FFTA2-Logo.jpg");*/ | |
background-repeat:no-repeat; | |
background-attachment:fixed; | |
color:black; | |
font-family:Arial,Helvetica,sans-serif; | |
} |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Builds - FFTA2 Clan guide</title> | |
<link rel="stylesheet" type="text/css" href="mystyle.css"> | |
</head> | |
<header><!--#include "/includes/navigation.ssi"--></header> | |
<body> |
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
<!-- Oceanic Next, modified to remove alpha and color space references --> | |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Blue Component</key> | |
<real>0.16862745583057404</real> |
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
# x does not exist yet | |
if false == true: # obviously this should never execute | |
x = 5 | |
end | |
x | |
# x now exists. wtf |
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
➜ gramscout git:(staging) guard -P livereload | |
WARN: Unresolved specs during Gem::Specification.reset: | |
celluloid (>= 0.15.2) | |
WARN: Clearing out unresolved specs. | |
Please report a bug if this causes problems. | |
12:25:04 - INFO - Guard here! It looks like your project has a Gemfile, yet you are running | |
> [#] `guard` outside of Bundler. If this is your intent, feel free to ignore this | |
> [#] message. Otherwise, consider using `bundle exec guard` to ensure your | |
> [#] dependencies are loaded correctly. | |
> [#] (You can run `guard` with --no-bundler-warning to get rid of this message.) |
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
➜ gramscout git:(staging) ✗ guard -P livereload | |
WARN: Unresolved specs during Gem::Specification.reset: | |
listen (~> 2.7) | |
WARN: Clearing out unresolved specs. | |
Please report a bug if this causes problems. | |
10:31:07 - INFO - Guard here! It looks like your project has a Gemfile, yet you are running | |
> [#] `guard` outside of Bundler. If this is your intent, feel free to ignore this | |
> [#] message. Otherwise, consider using `bundle exec guard` to ensure your | |
> [#] dependencies are loaded correctly. | |
> [#] (You can run `guard` with --no-bundler-warning to get rid of this message.) |
NewerOlder