#List of countries
It's time someone compiled a list of countries to use within a web application. This gist attempts to make a first move at that.
I've also compiled a list of nationalities
| // Ansi colors in Groovy | |
| // Author: Ted Vinke | |
| import static Ansi.* | |
| println color("BOLD", Ansi.BOLD) | |
| println color("ITALIC", Ansi.ITALIC) | |
| println color("UNDERLINE", Ansi.UNDERLINE) | |
| println color("BLINK", Ansi.BLINK) | |
| println color("RAPID_BLINK", Ansi.RAPID_BLINK) | |
| println color("REVERSE_VIDEO", Ansi.REVERSE_VIDEO) |
| <!-- Global site tag (gtag.js) - Google Analytics --> | |
| <script async src="https://www.googletagmanager.com/gtag/js?id=UA-XXXXX-Y"></script> | |
| <script> | |
| window.dataLayer = window.dataLayer || []; | |
| function gtag(){dataLayer.push(arguments);} | |
| gtag('js', new Date()); | |
| gtag('config', 'UA-XXXXX-Y', { | |
| 'page_path': location.pathname + location.search + location.hash | |
| }); |
| import org.vertx.groovy.core.Vertx | |
| class BootStrap { | |
| def init = { servletContext -> | |
| def vertx = Vertx.newVertx() | |
| def httpServer = vertx.createHttpServer() | |
| vertx.createSockJSServer(httpServer).installApp(prefix: '/events') { sock -> | |
| sock.dataHandler { buff -> | |
| sock << buff |
| SELECT id,state,command,time,left(replace(info,'\n','<lf>'),120) | |
| FROM information_schema.processlist | |
| WHERE command <> 'Sleep' | |
| AND info NOT LIKE '%PROCESSLIST%' | |
| ORDER BY time DESC LIMIT 50; |
| #!/bin/bash | |
| # | |
| # video conversion script for publishing as HTML 5 video, via videojs (with hd button extension) | |
| # 2011 by zpea | |
| # feel free to use as public domain / Creative Commons CC0 1.0 (http://creativecommons.org/publicdomain/zero/1.0/) | |
| # | |
| FFMPEG=/usr/bin/ffmpeg | |
| HD_SUFFIX='_hd' |
| #!/bin/bash | |
| # | |
| # PostgreSQL Backup Script Ver 1.0 | |
| # http://autopgsqlbackup.frozenpc.net | |
| # Copyright (c) 2005 Aaron Axelsen <[email protected]> | |
| # | |
| # This script is based of the AutoMySQLBackup Script Ver 2.2 | |
| # It can be found at http://sourceforge.net/projects/automysqlbackup/ | |
| # | |
| # The PostgreSQL changes are based on a patch agaisnt AutoMySQLBackup 1.9 |
| #!/bin/bash | |
| set -exo pipefail | |
| BUILD_ENV=$1 | |
| if [ `uname` == 'Darwin' ]; then | |
| OSX=1 | |
| JSCOMPRESSOR="yuicompressor --type js" | |
| else | |
| OSX= |
#List of countries
It's time someone compiled a list of countries to use within a web application. This gist attempts to make a first move at that.
I've also compiled a list of nationalities
It's time someone compiled a list of nationalities to use within a web application. This gist attempts to make a first move at that.
##List of countries
I've also compiled a list of countries
| If tomorrow all the things were gone, | |
| I’d worked for all my life. | |
| And I had to start again, | |
| with just my children and my wife. | |
| I’d thank my lucky stars, | |
| to be livin here today. | |
| ‘ Cause the flag still stands for freedom, | |
| and they can’t take that away. |