- 23.21.150.121:3478
- iphone-stun.strato-iphone.de:3478
- numb.viagenie.ca:3478
- s1.taraba.net:3478
- s2.taraba.net:3478
- stun.12connect.com:3478
- stun.12voip.com:3478
- stun.1und1.de:3478
- stun.2talk.co.nz:3478
This file contains hidden or 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
| git branch -m master old-master | |
| git branch -m seotweaks master | |
| git push -f origin master |
Note: Git Bash comes with OpenSSL
$ openssl req -x509 -new -newkey rsa:4096 -sha256 -days 730 -nodes -out freenode.pem -keyout freenode.pem
Generating a 4096 bit RSA private key
.....................................................++
............................................................................++
writing new private key to 'freenode.pem'
This file contains hidden or 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
| function idev() { | |
| local nodes="1" | |
| if [[ "$(sinfo -h -o "%P")" =~ .*^$1$.* ]]; then | |
| local partition="$1" | |
| shift | |
| fi | |
| if [[ "$1" =~ [0-9]+ ]]; then | |
| nodes="$1" | |
| shift | |
| fi |
This file contains hidden or 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
| #!/bin/bash | |
| # Intel 15 | |
| source /usr/local/packages/compilers/Intel/parallel_studio_xe_2015/composer_xe_2015.0.090/bin/compilervars.sh intel64 | |
| source /usr/local/packages/compilers/Intel/parallel_studio_xe_2015/composer_xe_2015.0.090/bin/debuggervars.sh intel64 | |
| set -x | |
| BUILD_PATH=$PWD/build |
This file contains hidden or 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 python | |
| # -*- coding: utf-8 -*- | |
| import sys | |
| def printProgressBar( | |
| iteration, | |
| total, | |
| prefix = '', | |
| suffix = '', |
This file contains hidden or 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 python | |
| """This script takes a key ID, fingerprint, email address, publicly exported | |
| key, or a keyring, and prints the random ASCII art visualization of the key | |
| as per the Drunken Bishop algorithm as applied to OpenSSH keys by Dirk Loss.""" | |
| import argparse | |
| import os | |
| import re | |
| import subprocess | |
| import sys |
This file contains hidden or 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
| class Atrium(object): | |
| def __init__(self, bishop, key_type, hashtype): | |
| self.bishop = bishop | |
| self.counts = [0] * 153 | |
| self.counts[76] = 15 | |
| self.key_type = key_type | |
| self.hashtype = hashtype |
You can display the full search paths with
g++ -print-search-dirsor you can find a specific header without writing a source file with something along the lines of