The idea is based on a gist by @jimbojsb.
You can use Pygments or Highlight.
brew install python
| sql = <<~SQL | |
| SELECT n.nspname || '.' || c.relname as "name" | |
| FROM pg_catalog.pg_class c | |
| LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace | |
| WHERE c.relkind IN ('r','') | |
| AND n.nspname <> 'pg_catalog' | |
| AND n.nspname <> 'information_schema' | |
| AND n.nspname !~ '^pg_toast' | |
| AND pg_catalog.pg_table_is_visible(c.oid) | |
| SQL |
| -- The array_position function was added in Postgres 9.5. | |
| -- For older versions, you can get the same behavior with this function. | |
| create function array_position(arr ANYARRAY, elem ANYELEMENT, pos INTEGER default 1) returns INTEGER | |
| language sql | |
| as $BODY$ | |
| select row_number::INTEGER | |
| from ( | |
| select unnest, row_number() over () | |
| from ( select unnest(arr) ) t0 | |
| ) t1 |
The idea is based on a gist by @jimbojsb.
You can use Pygments or Highlight.
brew install python
| 301 https://github.com/zxdrive/imouto.host |
| FROM ubuntu | |
| MAINTAINER Eric Mill "[email protected]" | |
| # turn on universe packages | |
| RUN echo "deb http://archive.ubuntu.com/ubuntu raring main universe" > /etc/apt/sources.list | |
| RUN apt-get update | |
| # basics | |
| RUN apt-get install -y nginx openssh-server git-core openssh-client curl | |
| RUN apt-get install -y nano |
| /* | |
| <a href="posts/2" data-method="delete"> <---- We want to send an HTTP DELETE request | |
| - Or, request confirmation in the process - | |
| <a href="posts/2" data-method="delete" data-confirm="Are you sure?"> | |
| */ | |
| (function() { |
Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
| #! /bin/sh | |
| # ================================================================== | |
| # ______ __ _____ | |
| # /_ __/___ ____ ___ _________ _/ /_ /__ / | |
| # / / / __ \/ __ `__ \/ ___/ __ `/ __/ / / | |
| # / / / /_/ / / / / / / /__/ /_/ / /_ / / | |
| #/_/ \____/_/ /_/ /_/\___/\__,_/\__/ /_/ | |
| # Multi-instance Apache Tomcat installation with a focus | |
| # on best-practices as defined by Apache, SpringSource, and MuleSoft |