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 / config.fish
Created November 26, 2017 19:38
Edit command line in Fish
# thanks to github.com/oh-my-fish/theme-budspencer
# Set the tmp file
set -g tmpcmdline '/tmp/'(echo %self)'_cmdline.fish'
function edit_commandline -d 'Open current command line with your editor'
commandline > $tmpcmdline
eval $EDITOR $tmpcmdline
set -l IFS ''
if [ -s $tmpcmdline ]
def self.color_test
ANSI.clear
ANSI.home
w, h = ANSI.size
str = ""
(0..w - 1).each do |x|
(0..h - 1).each do |y|
r = y
g = x
b = 75 + (y/2)
@srcrip
srcrip / windows_is_so_much_fun.txt
Created October 6, 2017 23:12
Getting bcrypt gem working on Windows
> stop the rails server.
gem uninstall bcrypt
> select option 3.
gem uninstall bcrypt-ruby
> select option 3.
gem install bcrypt --platform=ruby
> in gemfile add:
gem 'bcrypt', platforms: :ruby
> then run:
bundle install
@srcrip
srcrip / __init__.py
Created March 2, 2017 03:59
PyQt Starter
import sys
from PyQt5 import QtCore, QtGui, QtWidgets
from design import Ui_MainWindow
class App(Ui_MainWindow):
def __init__(self, MainWindow):
Ui_MainWindow.__init__(self)
self.setupUi(MainWindow)
# Connect a widget
@srcrip
srcrip / flask_starter.py
Created September 28, 2016 01:38
Boilerplate for new flask apps
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
if __name__ == "__main__":
app.run()