I hereby claim:
- I am geoder101 on github.
- I am geoder101 (https://keybase.io/geoder101) on keybase.
- I have a public key ASDMaOheBhpeBFFQbkEbEm_ONYxBCHDEVNLSP6xJLeTpowo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| private static int Main(string[] args) | |
| { | |
| #if DEBUG | |
| if (args.Any(a => a == "--debug")) | |
| { | |
| args = args.Where(a => a != "--debug").ToArray(); | |
| Console.WriteLine($"Ready for debugger to attach. Process ID: {Process.GetCurrentProcess().Id}."); | |
| Console.WriteLine("Press ENTER to continue."); | |
| Console.ReadLine(); | |
| } |
| #!/usr/bin/env bash | |
| # Download this gist | |
| # curl -Ls https://gist.github.com/andkirby/54204328823febad9d34422427b1937b/raw/semversort.sh | bash | |
| # And run: | |
| # $ semversort 1.0 1.0-rc 1.0-patch 1.0-alpha | |
| # or in GIT | |
| # $ semversort $(git tag) | |
| # Using pipeline: | |
| # $ echo 1.0 1.0-rc 1.0-patch 1.0-alpha | semversort | |
| # |
| https://www.youtube.com/watch?v=IzfT5m0nKUI | |
| --- | |
| *Μιχάλης* | |
| Πάνο, Πάνο. | |
| *Πάνος* | |
| Παρουσιάζεται απάνω έτσι; Και μου λέει πάμε. | |
| Εμένα η ζωή μου αρχίζει απ' την αρχή. |
| [<JavaScript>] | |
| module BootstrapUI = | |
| open WebSharper.UI.Next | |
| open WebSharper.UI.Next.Html | |
| open WebSharper.UI.Next.Client | |
| module Button = | |
| type private ButtonColor = | |
| | Default | |
| | Primary |
| #!/bin/bash | |
| # This script will help you setup Docker for TLS authentication. | |
| # Run it passing in the arguement for the FQDN of your docker server | |
| # | |
| # For example: | |
| # ./create-docker-tls.sh myhost.docker.com | |
| # | |
| # The script will also create a profile.d (if it exists) entry | |
| # which configures your docker client to use TLS | |
| # |
| #!/bin/bash | |
| #### Default Configuration | |
| CONCURRENCY=4 | |
| REQUESTS=100 | |
| ADDRESS="http://localhost:8080/" | |
| show_help() { | |
| cat << EOF |