I hereby claim:
- I am vedarthk on github.
- I am vedarthk (https://keybase.io/vedarthk) on keybase.
- I have a public key whose fingerprint is 7CE1 00C6 1BB8 397D 99A3 D4BC 8A85 C474 0015 ECD5
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| set +e | |
| aws iam list-users --query "Users[].[UserName]" --output text | \ | |
| while read User; do | |
| UserName="$User" | |
| # sanitize username from IAM | |
| UserName=${UserName//+([@.])/""} | |
| echo "username => $UserName" | |
| if id -u "$UserName" >/dev/null 2>&1; then |
I hereby claim:
To claim this, I am signing this object:
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: myservice | |
| # Required-Start: $remote_fs $syslog | |
| # Required-Stop: $remote_fs $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Put a short description of the service here | |
| # Description: Put a long description of the service here |
| # create stub, then run flask app in tornado on port 5000 (perhaps with supervisord config below http://supervisord.org/index.html) | |
| #!/usr/bin/env python | |
| from tornado.wsgi import WSGIContainer | |
| from tornado.httpserver import HTTPServer | |
| from tornado.ioloop import IOLoop | |
| from myflaskapp import app | |
| http_server = HTTPServer(WSGIContainer(app)) |
| #!/usr/bin/python | |
| # rtorrent_xmlrpc | |
| # (c) 2011 Roger Que <[email protected]> | |
| # | |
| # Python module for interacting with rtorrent's XML-RPC interface | |
| # directly over SCGI, instead of through an HTTP server intermediary. | |
| # Inspired by Glenn Washburn's xmlrpc2scgi.py [1], but subclasses the | |
| # built-in xmlrpclib classes so that it is compatible with features | |
| # such as MultiCall objects. |
| sudo rmmod iwldvm | |
| sudo rmmod iwlwifi | |
| sudo modprobe iwlwifi 11n_disable=1 | |
| sudo modprobe iwldvm |