(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.
| param( | |
| [parameter(Mandatory=$true, ValueFromPipeline=$true)] | |
| [string] | |
| $data, | |
| [parameter(Mandatory=$false, ValueFromPipeline=$true)] | |
| [string] | |
| $ip="127.0.0.1", | |
| [parameter(Mandatory=$false, ValueFromPipeline=$true)] |
(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.
| // Assembly BouncyCastle.Crypto, Version=1.8.1.0 | |
| using Org.BouncyCastle.Bcpg; | |
| using Org.BouncyCastle.Bcpg.OpenPgp; | |
| using Org.BouncyCastle.Security; | |
| using System; | |
| using System.IO; | |
| using System.Text; | |
| namespace EncryptionSample | |
| { |
| location /assets/ { | |
| gzip_static on; | |
| expires max; | |
| add_header Cache-Control public; | |
| add_header Access-Control-Allow-Origin *; | |
| } |
| $ git branch -r --merged | | |
| grep origin | | |
| grep -v '>' | | |
| grep -v master | | |
| xargs -L1 | | |
| awk '{split($0,a,"/"); print a[2]}' | | |
| xargs git push origin --delete |