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
| apiVersion: rbac.authorization.k8s.io/v1beta1 | |
| kind: ClusterRoleBinding | |
| metadata: | |
| name: kubernetes-dashboard | |
| labels: | |
| k8s-app: kubernetes-dashboard | |
| roleRef: | |
| apiGroup: rbac.authorization.k8s.io | |
| kind: ClusterRole | |
| name: cluster-admin |
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
| var table = document.getElementsByClassName('advanced_dns')[0]; | |
| var rows = table.getElementsByTagName('tr'); | |
| var i, len, row; | |
| var hostname, type, priority, ttl, destination; | |
| var output = ''; | |
| output += '$TTL 600\n'; // start with default TTL | |
| // skip header and last two rows (add new entry, delete all entries) | |
| for (i = 1, len = rows.length - 2; i < len; i++) { |
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
| See what you’ve been working on today: | |
| $ git log --since="00:00:00" --no-merges --oneline --author=<[email protected]> https://t.co/CMcVb2EMyo |
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
| Needs Ruby 1.9 as a minimum | |
| curl -s https://api.github.com/orgs/<insert org>/repos | ruby -rjson -e 'JSON.load(STDIN.read).each {|repo| %x[git clone #{repo["ssh_url"]} ]}' |
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
| unsigned char i; | |
| unsigned char j; | |
| /*Port Definitions*/ | |
| int Max7219_pinCLK = 10; | |
| int Max7219_pinCS = 9; | |
| int Max7219_pinDIN = 8; | |
| unsigned char disp1[38][8]={ | |
| {0x8,0x14,0x22,0x3E,0x22,0x22,0x22,0x22},//A | |
| {0x3C,0x22,0x22,0x3E,0x22,0x22,0x3C,0x0},//B |
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
| $('#tbl tr').each(function () | |
| { | |
| var $row = $(this); | |
| $row.children().each(function () | |
| { | |
| var $cell = $(this); | |
| // do something with the current <tr> and <td> | |
| }); | |
| }); |
NewerOlder