Update as of 8.08.2021:
- Hid the bookmarks bar and fine-tuned some header styles.
If you want to add your own style to Slack, here's how.
I dunno what happened. I just wanted to try something sporty/future-y, I guess. Code for this is directly below.
Update as of 8.08.2021:
If you want to add your own style to Slack, here's how.
I dunno what happened. I just wanted to try something sporty/future-y, I guess. Code for this is directly below.
| -- show running queries (pre 9.2) | |
| SELECT procpid, age(query_start, clock_timestamp()), usename, current_query | |
| FROM pg_stat_activity | |
| WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' | |
| ORDER BY query_start desc; | |
| -- show running queries (9.2) | |
| SELECT pid, age(query_start, clock_timestamp()), usename, query | |
| FROM pg_stat_activity | |
| WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |
| require 'dalton/strategies/skroutz' | |
| require 'dalton/strategies/facebook' | |
| require 'dalton/strategies/openid' # yahoo, #google | |
| require 'dalton/strategies/twitter' | |
| # Setup OpenId file storage, don't change the storage engine! | |
| require 'openid/store/filesystem' | |
| Rails.configuration.middleware.use(Rack::OpenID, | |
| OpenID::Store::Filesystem.new(Rails.root + 'tmp/openid')) |
| #!/bin/bash | |
| # | |
| # Carbon (part of Graphite) | |
| # | |
| # chkconfig: 3 50 50 | |
| # description: Carbon init.d | |
| . /etc/rc.d/init.d/functions | |
| prog=carbon | |
| RETVAL=0 |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |