\O/ Yay
O/ Hi
\O Hi Back
O> Haw?
_O> Archer
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
def pivnet_products(product_pattern=""): | |
""" | |
gets all pivnet products that match exactly with the product pattern, or partial matches | |
when there are no exact matches. | |
""" | |
url = 'https://network.pivotal.io/api/v2/products' | |
all_products = json.load(pivnet_get(url)) | |
products = [p for p in all_products["products"] if product_pattern == p["name"]] | |
if len(products) == 0: | |
products = [p for p in all_products["products"] if product_pattern in p["name"]] |
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
def execute_build(): | |
os.chdir("./dashboard2") | |
subprocess.call(["npm", "run", "build"]) | |
os.chdir("../") | |
def save_srcs_md5(md5, path): | |
file = open(path, "w") | |
file.write(md5) | |
file.close() |
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
<Router authorized={true}> | |
<Match fn={(props) => (props.authorized)}> | |
<Environments/> | |
</Match> | |
<Match fn={(props) => (!props.authorized)}> | |
<SlackPage/> | |
</Match> | |
</Router> |
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
https://play.golang.org/p/TNQIYTP_GA |
The I2S_LRCLK and I2S_SCLK can be programmed as master (driven to an external target) or slave (driven from an external source). When the clocks are in slave mode, they must be synchronous to SYS_MCLK. For this reason the SGTL5000 can only operate in synchronous mode (see Clocking) while in I2S slave mode. In master mode, the clocks are synchronous to SYS_MCLK or the output of the PLL when the part is running in asynchronous mode
http://cache.nxp.com/files/training/Serial-Audio-Interface-Training.pdf
http://www.nxp.com/files/microcontrollers/doc/app_note/AN4520.pdf
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
olor " | |
diff --git a/plugins/available/cloud_foundry.plugin.bash b/plugins/available/cloud_foundry.plugin.bash | |
new file mode 100644 | |
index 0000000..b650696 | |
--- /dev/null | |
+++ b/plugins/available/cloud_foundry.plugin.bash | |
@@ -0,0 +1,12 @@ | |
+cite about-plugin | |
+about-plugin 'Adds Cloud Foundry to PS1' | |
+ |
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
olor " | |
diff --git a/plugins/available/cloud_foundry.plugin.bash b/plugins/available/cloud_foundry.plugin.bash | |
new file mode 100644 | |
index 0000000..b650696 | |
--- /dev/null | |
+++ b/plugins/available/cloud_foundry.plugin.bash | |
@@ -0,0 +1,12 @@ | |
+cite about-plugin | |
+about-plugin 'Adds Cloud Foundry to PS1' | |
+ |
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
groups: | |
- name: vintage-jobs | |
jobs: | |
- pivnet-base-image | |
- pivnet-bundle-image | |
- db-restore-acceptance | |
- pivnet-acceptance-tests | |
- pivnet-deploy | |
- pivnet-backup-database | |
- browser-regression-test |