Skip to content

Instantly share code, notes, and snippets.

View srcrip's full-sized avatar
🔮
typescript is best script

Andrew Stewart srcrip

🔮
typescript is best script
View GitHub Profile
@srcrip
srcrip / PKGBUILD
Created September 12, 2020 02:19
Insomnia 2020.4.0 PKGBUILD
pkgname=insomnia-designer
pkgver=2020.4.0
pkgrel=1
pkgdesc="The Collaborative API Design Tool for designing and managing OpenAPI specs."
url="https://github.com/Kong/insomnia"
arch=('x86_64')
license=('MIT')
depends=()
makedepends=()
provides=($pkgname)
@srcrip
srcrip / bindings.el
Created July 31, 2020 19:50
Here is my (somewhat) simple Doom Emacs config
;;; ~/.doom.d/bindings.el -*- lexical-binding: t; -*-
(map! (:map override
(:after evil-snipe
[remap evil-snipe-s] #'evil-replace-with-register
[remap evil-snipe-S] #'replace-to-end-of-line)
:m "<C-;>" #'goto-last-change
:m "<C-'>" #'goto-last-change-reverse
:nv "C-]" #'xref-find-definitions
;; dired
@srcrip
srcrip / init.vim
Last active July 31, 2020 19:25
My (pretty) simple Neovim config
" Remappings and Commands {{{
nnoremap <silent> <esc> :noh<cr><esc>
nnoremap <space>s :w<CR>
nnoremap gp `[v`]
nnoremap Q @q
nnoremap gj J
nnoremap <c-g> :let @+ = expand("%:p") . ":" . line(".") \| echo 'copied ' . @+ . ' to the clipboard.'<CR>
nnoremap == =ap
nmap <silent> } :<C-u>execute "keepjumps norm! " . v:count1 . "}"<CR>
nmap <silent> { :<C-u>execute "keepjumps norm! " . v:count1 . "{"<CR>
@srcrip
srcrip / README.md
Last active November 19, 2018 22:29
Scripts for getting random wallpapers from unsplash.it, saving them, cycling them every hour, etc

Setup

This configuration assumes you put these scripts in ~/scripts/, and that this directory is in your $PATH variable. You can change this to your desired scripts directory instead. Just be sure to change cycle-random-wallpaper, because it assumes you use ~/scripts/.

This also assumes there's a directory created called ~/Wallpaper/. Make this directory or change the scripts to reference your personal wallpaper directory.

set-random-wallpaper

Adjust the wget line with your resolution. (hint, you can do this to get it):

xrandr | grep '*'
@srcrip
srcrip / init.el
Created November 6, 2018 23:03
Lightweight Helm Config for Emacs
(defun helm-or-evil-escape ()
"Escape from anything."
(interactive)
(cond ((minibuffer-window-active-p (minibuffer-window))
;; quit the minibuffer if open.
(abort-recursive-edit))
;; Run all escape hooks. If any returns non-nil, then stop there.
;; ((cl-find-if #'funcall doom-escape-hook))
;; don't abort macros
((or defining-kbd-macro executing-kbd-macro) nil)
@srcrip
srcrip / modeline.el
Last active November 6, 2018 23:05
Simple Emacs modeline that isn't quite so ugly as the default, but not too bloated like many modeline-specific packages.
;; modeline
(setq modeline/show-minor-modes t)
(defun modeline/toggle-minor-modes ()
"Toggle modeline/show-minor-modes between t and nil."
(interactive)
(setq modeline/show-minor-modes (not modeline/show-minor-modes)))
(defun shorten-directory (dir max-length)
"Show up to `MAX-LENGTH' characters of a directory name `DIR'."
(let ((path (reverse (split-string (abbreviate-file-name dir) "/")))

Keybase proof

I hereby claim:

To claim this, I am signing this object:

Mirth Server Setup

First create ec2 Ubuntu instance. This can be 14.04 now on MirthConnect 3.2 and above. Hurray!

Great thanks for the original guide: https://gist.github.com/jgautsch/9157402

# Update Ubuntu
sudo aptitude update

# Safe upgrade of Ubuntu
sudo aptitude safe-upgrade
@srcrip
srcrip / SingletonScriptableObject.cs
Created June 2, 2018 00:43 — forked from dvddarias/SingletonScriptableObject.cs
Better Unity Singleton Class
/************************************************************
* Better Singleton by David Darias
* Use as you like - credit where due would be appreciated :D
* Licence: WTFPL V2, Dec 2014
* Tested on Unity v5.6.0 (should work on earlier versions)
* 03/02/2017 - v1.1
* **********************************************************/
using System;
using UnityEngine;
#!/bin/bash
wget https://raw.githubusercontent.com/thestinger/termite/master/termite.terminfo
tic -x termite.terminfo
sudo apt-get install vim
curl http://j.mp/spf13-vim3 -L -o - | sh