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
92464* seq 1 10 | |
92465* seq 1 10 | parallel echo | |
92467* seq 1 10 | parallel echo | ag '[135]' | |
92468* seq -w 001 010 | |
92469* seq -w 001 010 | parallel --dryrun ssh bid{}.smq.mgnt.cc 'yum info kernel' | |
92470* seq -w 001 010 | parallel --dryrun ssh bid{}.smq.mgnt.cc "'yum info kernel'" | |
92471* seq -w 001 010 | parallel ssh bid{}.smq.mgnt.cc "'yum info kernel'" | |
92473* seq -w 001 010 | parallel ssh bid{}.smq.mgnt.cc "'yum info kernel'" | |
92474* seq -w 001 010 | parallel ssh bid{}.smq.mgnt.cc date | |
92475* seq -w 001 010 | parallel --tag ssh bid{}.smq.mgnt.cc date |
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
#!/bin/bash | |
# | |
# this script will attempt to detect any ephemeral drives on an EC2 node and create a RAID-0 stripe | |
# mounted at /mnt. It should be run early on the first boot of the system. | |
# | |
# Beware, This script is NOT fully idempotent. | |
# | |
METADATA_URL_BASE="http://169.254.169.254/2012-01-12" |
https://developer.github.com/v3/oauth/#create-a-new-authorization
I'm using Github API to ge the list of public repos , just change type=private or all . The results are paginated ,by 30 by default, you can specify further pages with the ?page parameter : curl -u "$USER:$PASSWORD" -H 'X-GitHub-OTP: $TWOFACTORCODE' https://api.github.com/orgs/magnetic/repos\?type\=public\&page\=1 | jq '.[] | .full_name '
Clone all curl -s https://api.github.com/orgs/twitter/repos?per_page=200 | ruby -rubygems -e 'require "json"; JSON.load(STDIN.read).each { |repo| %x[git clone #{repo["ssh_url"]} ]}'
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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# | |
# This is how I used it: | |
# $ cat ~/.bash_history | python bash-to-zsh-hist.py >> ~/.zsh_history | |
import sys | |
import time |