Verifying my Blockstack ID is secured with the address 1NqydyF18bkc4E1fqp8toRHa1GUujuFt1J https://explorer.blockstack.org/address/1NqydyF18bkc4E1fqp8toRHa1GUujuFt1J
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/local/bin/bash | |
#title :selch | |
#desc :Summarizes k8s selector chains from ingress to service to pod | |
#author :Nathaniel Wroblewski (nathanielwroblewski) | |
#created :2022-05-21 | |
#version :0.0.1 | |
#usage :bash ./selch | |
#environment :GNU bash, version 5.1.16(1)-release | |
#dependencies :kubectl (v1.22.5), jq-1.6, sed, xargs, column | |
#=============================================================================== |
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
[ | |
"Bellarmine Knights", | |
"Central Arkansas Bears", | |
"Eastern Kentucky Colonels", | |
"Florida Gulf Coast Eagles", | |
"Jacksonville Dolphins", | |
"Jacksonville State Gamecocks", | |
"Kennesaw State Owls", | |
"Liberty Flames", | |
"Lipscomb Bisons", |
Warning #1 about enabling developer mode Warning #2 about enabling developer mode
Enabling developer mode
I hereby claim:
- I am nathanielwroblewski on github.
- I am natew (https://keybase.io/natew) on keybase.
- I have a public key whose fingerprint is 7BCB 7A4B FEB8 865E C168 64D9 FA0A 3949 7D28 2083
To claim this, I am signing this object:
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": "La Taqueria", | |
"round": 4, | |
"children": [ | |
{ | |
"name": "La Taqueria", | |
"round": 3, | |
"children": [ | |
{ | |
"name": "La Taqueria", |
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
Restaurant Name | VORB | Round 1 | Round 2 | Finals | Quadrant | |
---|---|---|---|---|---|---|
El Farolito | 20.7 | 86 | Habanero | |||
Chando’s Tacos | 9.1 | 91 | Habanero | |||
HRD Coffee Shop | 15.4 | 84 | Habanero | |||
Taqueria Cancún | 14.0 | 94 | 92 | Habanero | ||
Garbo’s Grill | 13.1 | 77 | Habanero | |||
Mr. Taco Mexican Food | 1.3 | 60 | Habanero | |||
Little Donkey | 3.5 | 80 | 86 | Habanero | ||
Pedro & Vinny’s | 12.0 | 60 | Habanero | |||
Delicious Mexican Eatery | 2.7 | 92 | 94 | 95 | Habanero |
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
// execute code once the page has loaded | |
$(document).ready(function() { | |
// listen for the form being submitted | |
$('form').on('submit', function(e) { | |
// prevent the actual form submission | |
e.preventDefault() | |
// redirect the form data ($(this).serialize) through AJAX to some api endpoint (/some-api-endpoint) | |
$.post('/some-api-endpoint', $(this).serialize(), function(response) { | |
// log the JSON response to your console after you drop a BOOM |
NewerOlder