Time-stamp: <2012-03-30 Fri 16:56 README.md>
Author....: 'Mash (Thomas Herbert)
Bacula concurrent jobs multiple storage devices client labeled pools Debian installation and configuration.
Please see http://toshine.org/etc for full article.
| Africa/Abidjan | |
| Africa/Accra | |
| Africa/Addis_Ababa | |
| Africa/Algiers | |
| Africa/Asmara | |
| Africa/Asmera | |
| Africa/Bamako | |
| Africa/Bangui | |
| Africa/Banjul | |
| Africa/Bissau |
| const CrossOriginLocalStorage = function(currentWindow, iframe, allowedOrigins, onMessage) { | |
| this.allowedOrigins = allowedOrigins; | |
| let childWindow; | |
| // some browser (don't remember which one) throw exception when you try to access | |
| // contentWindow for the first time, it works when you do that second time | |
| try { | |
| childWindow = iframe.contentWindow; | |
| } catch(e) { | |
| childWindow = iframe.contentWindow; |
Time-stamp: <2012-03-30 Fri 16:56 README.md>
Author....: 'Mash (Thomas Herbert)
Bacula concurrent jobs multiple storage devices client labeled pools Debian installation and configuration.
Please see http://toshine.org/etc for full article.
| 1. sudo sh -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)" | |
| 2. sudo ln -s $HOME/.zshrc /root/.zshrc | |
| If you have .zshrc file first remove these, and then do the system link command required to create it again | |
| sudo ln -s $HOME/.zshrc /root/.zshrc | |
| 3. sudo ln -s $HOME/.oh-my-zsh /root/.oh-my-zsh | |
| 4. sudo chmod 744 /root/.zshrc | |
| 5. chsh -s $(which zsh) $(whoami) |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| # !/bin/bash | |
| # Remove all files in these directories. | |
| rm -rf ~/.helm/cache/archive/* | |
| rm -rf ~/.helm/repository/cache/* | |
| # Refreash repository configurations | |
| helm repo update | |
| #That's all. | |
| #If you "helm search" next time, you can find newest stable charts in repository. |
| --- | |
| apiVersion: v1 | |
| kind: ConfigMap | |
| metadata: | |
| name: filebeat-config | |
| namespace: kube-system | |
| labels: | |
| k8s-app: filebeat | |
| kubernetes.io/cluster-service: "true" | |
| data: |
| var elastic = require('elasticsearch'); | |
| var client = new elastic.Client({ host: 'localhost:9200' }); | |
| var index = 'myindex'; | |
| var type = 'document'; | |
| (function init() { | |
| Promise.resolve() | |
| .then(deleteIndex, handleError) |
| #!/bin/bash | |
| # Each 'run' generates 10 unique URLs, so if RUNS=10 you'll get 100 lines out. | |
| # Requires `gpw` to be installed, as a source for nice, random strings. | |
| FILE=large-test.csv | |
| RUNS=10000 | |
| if test -f "$FILE"; then | |
| truncate -s 0 $FILE |
Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts and experience preferred (super rare at this point).