Code | Title | Duration | Link |
---|---|---|---|
Keynote | Andy Jassy Keynote Announcement Recap | 0:01 | https://www.youtube.com/watch?v=TZCxKAM2GtQ |
Keynote | AWS re:Invent 2016 Keynote: Andy Jassy | 2:22 | https://www.youtube.com/watch?v=8RrbUyw9uSg |
Keynote | AWS re:Invent 2016 Keynote: Werner Vogels | 2:16 | https://www.youtube.com/watch?v=ZDScBNahsL4 |
Keynote | [Tuesday Night Live with James Hamilton](h |
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
https://www.linkedin.com/jobs/ | |
https://www.vawizard.org/wiz-pdf/STAR_Method_Interviews.pdf | |
space-jobs | |
https://www.planet.com/company/careers/ | |
https://kepler.space/jobs/ | |
https://jobs.lever.co/hadrian | |
https://www.tomorrow.io/careers/ | |
https://ablspacesystems.com/company/ | |
https://www.leolabs.space/jobs/ | |
https://www.ghgsat.com/join-our-team/ |
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 -x | |
port='123:567' | |
port_regex="([0-9]+):([0-9]+)" | |
echo what to change ports $port | |
if [[ $port =~ $port_regex ]] | |
then | |
from=${BASH_REMATCH[1]} |
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 | |
docker run -it --rm --name my-maven-project \ | |
-p 80:8091 \ | |
-v "$(pwd)":/usr/src/mymaven \ | |
-w /usr/src/mymaven maven:3-jdk-10 \ | |
mvn spring-boot:run -Drun.arguments="spring.profiles.active=test" |
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
body common control | |
{ | |
bundlesequence => { | |
"main", | |
}; | |
} | |
bundle agent main | |
{ | |
methods: |
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/sh | |
variables='Do not show' | |
x=' | |
Do not expand \\ type escapes and | |
all $variables | |
' | |
echo "$x" |
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
printf '{"hive.security.authorization.sqlstd.confwhitelist.append" : "|mapred\\.job\\.name|hive\\.execution\\.engine"}' | jq | |
parse error: Invalid escape at line 1, column 105 |
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
- name: Create VM from template | |
vmware_guest: | |
validate_certs: False | |
hostname: "{{ vcenter_hostname }}" | |
username: "{{ vcenter_user }}" | |
password: "{{ vcenter_pass }}" | |
#esxi_hostname: "{{ esxhost }}" | |
#datacenter: BOX |
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
neil@luna:~/.cfagent/inputs$ cat quotetest.cf | |
body common control | |
{ | |
bundlesequence => { "main", }; | |
} | |
bundle agent main { | |
vars: | |
'var1' string => 'with single quotes'; |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
NewerOlder