$ cd /path/to/Dockerfile
$ sudo docker build .
View running processes
| Twitter ID | Screen name | Followers | Removal observed | Before | After | |
|---|---|---|---|---|---|---|
| 17461978 | SHAQ | 15612791 | 2022-02-26T22:24:52Z | SHAQ.ETH | SHAQ.SOL | |
| 21910850 | jakeowen | 2119904 | 2022-02-26T15:45:18Z | jakeowen.eth | Jake Owen | |
| 7846 | ijustine | 1811449 | 2022-03-09T14:43:37Z | iJustine.eth | iJustineUltra | |
| 1666038950 | BoredElonMusk | 1752290 | 2022-02-17T08:05:47Z | bored.eth | Bored | |
| 381051960 | ethRuby | 1267133 | 2022-03-19T08:08:11Z | CryptoSolis.eth | Ruby | |
| 1282418324228337665 | wsbmod | 832406 | 2022-02-24T06:52:07Z | wsbmod.eth | wsbmod | |
| 20882981 | EclecticMethod | 495235 | 2022-02-18T04:39:30Z | eclecticm.eth | Eclectic Method | |
| 811350 | alexisohanian | 479340 | 2022-02-08T06:31:55Z | AlexisOhanian.eth 7️⃣7️⃣6️⃣ | Alexis Ohanian 7️⃣7️⃣6️⃣ | |
| 22784458 | Fwiz | 410813 | 2022-03-22T08:54:42Z | Ryan Wyatt - fwiz.eth 💜 | Ryan Wyatt - @ GDC |
| # ___ ___ __ __ | |
| # / | __ ______/ (_) /_____/ / | |
| # / /| |/ / / / __ / / __/ __ / | |
| # / ___ / /_/ / /_/ / / /_/ /_/ / | |
| # /_/ |_\__,_/\__,_/_/\__/\__,_/ | |
| # | |
| # Linux Audit Daemon - Best Practice Configuration | |
| # /etc/audit/audit.rules | |
| # | |
| # Compiled by Florian Roth |
| #!/usr/bin/env bash | |
| # Check if a value exists in an array | |
| # @param $1 mixed Needle | |
| # @param $2 array Haystack | |
| # @return Success (0) if value exists, Failure (1) otherwise | |
| # Usage: in_array "$needle" "${haystack[@]}" | |
| # See: http://fvue.nl/wiki/Bash:_Check_if_array_element_exists | |
| in_array() { | |
| local hay needle=$1 |
| const colors = { | |
| gray: '#555555', | |
| light: '#AAAAAA', | |
| road: '#666', // >:D | |
| energy: '#FFE87B', | |
| power: '#F53547', | |
| dark: '#181818', | |
| outline: '#8FBB93', | |
| speechText: '#000000', | |
| speechBackground: '#2ccf3b' |
| # Configuring basic RADIUS on OS X 10.8 Server | |
| # Jedda Wignall | |
| # http://jedda.me | |
| # | |
| # Updated to 10.10 by Robert Hafner | |
| # http://blog.tedivm.com | |
| # Full writeup at: http://jedda.me/2012/11/configuring-basic-radius-os-108-server/ | |
| # create the SACL for access to RADIUS |
| #!/bin/sh | |
| # Some things taken from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # Set the colours you can use | |
| black='\033[0;30m' | |
| white='\033[0;37m' | |
| red='\033[0;31m' | |
| green='\033[0;32m' |