-
introduction
-
social media in the workplace
-
whats bad
-
stress increase
-
feeling of not accomplishing anything
-
-
whats good
-
wider network of people to learn from
-
more visibility into what you do
-
-
what tools are available
-
how they can succeed and fail
-
-
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
Guest Episode Question | |
Aaron Abrams An Intergalactic Performing Arts School Why would you never talk to your cousin again if you needed a reason? | |
Adam Sachs Pediatrician’s Office What about baseball? | |
Aimee Mann The Underwear Department at Macy's What is the thing you desire that you are most ashamed of desiring? | |
Aimee Mann Splash Mountain at Disneyland How many times have you googled yourself this week? | |
Alice Wetterlund Kay Jewelers In A Mall Does everyone deserve to be heard? | |
Alice Wetterlund Casting Auditions for the New Haunted Hayride Describe the moment you were at your very hottest and the moment you were at your very not hottest. | |
Alison Brie Backstage at the Grand Ole Opry What is the best or worst travel injury you've sustained? | |
Allen Maldonado The Price Is Right What would you have your evil twin do, if you had an evil twin? | |
Amanda Lund A River Boat on the Mississippi What is your favourite font? |
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
Guest Episode Question | |
Aaron Abrams An Intergalactic Performing Arts School Why would you never talk to your cousin again if you needed a reason? | |
Adam Sachs Pediatrician’s Office What about baseball? | |
Aimee Mann The Underwear Department at Macy's What is the thing you desire that you are most ashamed of desiring? | |
Aimee Mann Splash Mountain at Disneyland How many times have you googled yourself this week? | |
Alice Wetterlund Kay Jewelers In A Mall Does everyone deserve to be heard? | |
Alice Wetterlund Casting Auditions for the New Haunted Hayride Describe the moment you were at your very hottest and the moment you were at your very not hottest. | |
Alison Brie Backstage at the Grand Ole Opry What is the best or worst travel injury you've sustained? | |
Allen Maldonado The Price Is Right What would you have your evil twin do, if you had an evil twin? | |
Amanda Lund A River Boat on the Mississippi What is your favourite font? |
> help 1
[07:31:41] [Server thread/INFO]: --- Showing help page 1 of 11 (/help <page>) ---
[07:31:41] [Server thread/INFO]: /achievement <give|take> <name|*> [player]
[07:31:41] [Server thread/INFO]: /ban <name> [reason ...]
[07:31:41] [Server thread/INFO]: /ban-ip <address|name> [reason ...]
[07:31:41] [Server thread/INFO]: /banlist [ips|players]
[07:31:41] [Server thread/INFO]: /biomesoplenty <tpbiome|biomename|stripchunk> [args]
[07:31:41] [Server thread/INFO]: /blockdata <x> <y> <z> <dataTag>
[07:31:41] [Server thread/INFO]: /clear [player] [item] [data] [maxCount] [dataTag]
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
start a listener and then 'suspend it' so that the connections will be accepted by the kernel but not the process: | |
bsmith1pts/8bsmith-y900~ nc -vvvlp 8080 | |
Listening on any address 8080 (http-alt) | |
^Z | |
[1] + 7303 suspended nc -vvvlp 8080 | |
verify its listening: | |
bsmith148pts/8bsmith-y900~ netstat -an | grep 8080 |
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
[nix-shell:~/src/extole/tech]$ dig +trace -t ANY www.dailykos.com | |
; <<>> DiG 9.10.4 <<>> +trace -t ANY www.dailykos.com | |
;; global options: +cmd | |
. 486925 IN NS f.root-servers.net. | |
. 486925 IN NS e.root-servers.net. | |
. 486925 IN NS h.root-servers.net. | |
. 486925 IN NS l.root-servers.net. |
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
while true ~ | |
do | |
bytes2=$(ifconfig | grep bytes | tail -1 | awk '{print $5}') | |
sent=$(($bytes2 - $bytes)) | |
bps=$(($sent * 8 / 1024 / 1024)) | |
echo "$bps and $sent" | |
sleep 1;bytes="$bytes2" | |
done |
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
{ pkgs | |
, consulHttpPort ? 8500 | |
, consulDnsPort ? 8600 | |
, consulServerPort ? 8300 | |
, consulSerfLanPort ? 8301 | |
, consulSerfWanPort ? 8302 | |
, consulRpcPort ? 8400 | |
, consulServer ? true | |
, consulBootstrapExpect ? 1 | |
, consulDomain ? "consul" |
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 bash | |
# Purpose: Provide HTTP server that displays the current server date to | |
# validate the artifact structure and play with. | |
declare -a _http_responses=( | |
[200]="OK" | |
[201]="Created" | |
[202]="Accepted" | |
[204]="No Content" | |
[301]="Moved Permanently" |