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
#!/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 | |
# |
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
https://www.youtube.com/watch?v=IzfT5m0nKUI | |
--- | |
*Μιχάλης* | |
Πάνο, Πάνο. | |
*Πάνος* | |
Παρουσιάζεται απάνω έτσι; Και μου λέει πάμε. | |
Εμένα η ζωή μου αρχίζει απ' την αρχή. |
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
[<JavaScript>] | |
module BootstrapUI = | |
open WebSharper.UI.Next | |
open WebSharper.UI.Next.Html | |
open WebSharper.UI.Next.Client | |
module Button = | |
type private ButtonColor = | |
| Default | |
| Primary |

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
#!/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 | |
# |
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
#!/bin/bash | |
#### Default Configuration | |
CONCURRENCY=4 | |
REQUESTS=100 | |
ADDRESS="http://localhost:8080/" | |
show_help() { | |
cat << EOF |
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
https://www.youtube.com/watch?v=LelpAUwVxMk | |
Α, Α, OK, λού | |
εκεί που είναι η ζωή μη το σκεφτείς οι αγγαλίοι | |
πίνουμε αργιλέ εδώ στο σπίτι και τρώμε καλαμπόκι σαν το σκουρίκι | |
τα πεταλούδα είναι ωραία και μη το σκεφτείς ία παρέα | |
87 εκεί που είναι για τρελά ε είναι το όλοι μαζί εδώ παιδεία | |
εδώ είναι ο Σον αφήστε τα όπλα γιατί εγκώ θα πι-άσω την παντόφλα | |
εκεί που μάθαμε στα σχολεία θέλω να κάνω απεργία | |
και βγαίνω με παπούτσα ντόλτσε καμπάνα |
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
DOCKER_MACHINE_ID=default | |
if [ ! -f /tmp/docker.env ]; then | |
docker-machine start $DOCKER_MACHINE_ID &> /dev/null | |
docker-machine env $DOCKER_MACHINE_ID 1> /tmp/docker.env | |
fi | |
if [ -f /tmp/docker.env ]; then | |
source /tmp/docker.env | |
fi |
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
#!/usr/bin/env bash | |
system_profiler SPUSBDataType |
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
(* | |
The MIT License (MIT) | |
Copyright (c) 2016 George Dernikos | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |