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
# 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 ] |
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
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) |
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
> 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 |
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 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 |
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
from flask import Flask, render_template | |
app = Flask(__name__) | |
@app.route('/') | |
def index(): | |
return render_template('index.html') | |
if __name__ == "__main__": | |
app.run() |
NewerOlder