(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. |
(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.
| 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) |
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.
| 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; |
| Africa/Abidjan | |
| Africa/Accra | |
| Africa/Addis_Ababa | |
| Africa/Algiers | |
| Africa/Asmara | |
| Africa/Asmera | |
| Africa/Bamako | |
| Africa/Bangui | |
| Africa/Banjul | |
| Africa/Bissau |
| #!/bin/bash | |
| # How i workable this package | |
| # | |
| # wget <from gist raw file> | |
| # chmod +x install-package-for-ubuntu-20-04.sh && ./install-package-for-ubuntu-20-04.sh | |
| # Issue: | |
| # Getting Error while executing a .sh file: /bin/bash^M: bad interpreter | |
| # sed -i -e 's/\r$//' ./ubuntu-20-04.sh |
| import React, { FC } from 'react'; | |
| import { useSocket } from '@myapp/hooks'; | |
| import {Order} from '@myapp/models'; | |
| export const OrdersComponent: FC = () => { | |
| const [orders,setOrders] = useState<Order[]>(); | |
| function addNewOrder(neworder:Order) { |
This document specifies the form of documentation comments recognized by the standard doclet for the javadoc tool, used to generate HTML API documentation.