create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| # taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/ | |
| # generate server.xml with the following command: | |
| # openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes | |
| # run as follows: | |
| # python simple-https-server.py | |
| # then in your browser, visit: | |
| # https://localhost:4443 | |
| import BaseHTTPServer, SimpleHTTPServer | |
| import ssl |
| # delete local tag '12345' | |
| git tag -d 12345 | |
| # delete remote tag '12345' (eg, GitHub version too) | |
| git push origin :refs/tags/12345 | |
| # alternative approach | |
| git push --delete origin tagName | |
| git tag -d tagName |
| #!/usr/bin/env bash | |
| # obtains all data tables from database | |
| TS=`sqlite3 $1 "SELECT tbl_name FROM sqlite_master WHERE type='table' and tbl_name not like 'sqlite_%';"` | |
| # exports each table to csv | |
| for T in $TS; do | |
| sqlite3 $1 <<! | |
| .headers on |
| #!/bin/bash | |
| FILENAME="private.img"; | |
| FILESIZE="100M"; | |
| # Create encrypted volume if it doesn't exist | |
| if [ ! -f $FILENAME ]; then | |
| echo "Creating image file..."; | |
| dd if=/dev/zero of=$FILENAME bs=$FILESIZE count=0 seek=1 |
| #!/usr/bin/env bash | |
| # Script to check Spanish Christmas Lottery | |
| # more info: https://servicios.elpais.com/sorteos/loteria-navidad/api/ | |
| AUTO_RELOAD="120" # seconds | |
| declare -A mainPrizes | |
| mainPrizes['numero1']='1er Premio' | |
| mainPrizes['numero2']='2º Premio' |
| .PHONY: clean-pyc clean-build docs clean | |
| define BROWSER_PYSCRIPT | |
| import os, webbrowser, sys | |
| try: | |
| from urllib import pathname2url | |
| except: | |
| from urllib.request import pathname2url | |
| webbrowser.open("file://" + pathname2url(os.path.abspath(sys.argv[1]))) | |
| endef |