This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
# Taken from http://frst.in/~8r | |
# Configuration | |
set :application, "your.domain.com" | |
set :deploy_to, "/var/www/app" | |
set :repository, "[email protected]:username/project.git" | |
set :branch, "master" | |
set :user, "username" | |
# Additional SCM settings |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
class MY_Session extends CI_Session{ | |
private $sess_use_redis = TRUE; | |
private $redis = ''; | |
public function __construct($params = array()) { | |
//parent::__construct(); | |
$this->CI =& get_instance(); |
-- SELECT polygon centroid as latitude/longitude in PostGIS | |
SELECT | |
st_x(st_transform(ST_Centroid(the_geom),4326)) as lat, | |
st_y(st_transform(ST_Centroid(the_geom),4326)) as long | |
FROM table; |
# Minimal Luigi Example - Gouthaman Balaraman | |
# http://gouthamanbalaraman.com/blog/building-luigi-task-pipeline.html | |
import luigi | |
class SimpleTask(luigi.Task): | |
""" | |
This simple task prints Hello World! | |
""" |
#! /usr/bin/env python3 | |
"""Fixing bluetooth stereo headphone/headset problem in debian distros. | |
Workaround for bug: https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/1577197 | |
Run it with python3.5 or higher after pairing/connecting the bluetooth stereo headphone. | |
This will be only fixes the bluez5 problem mentioned above . | |
Licence: Freeware |
SELECT | |
PROFILES.ID AS profile_id, | |
USUARIO.ID AS ID_USER, | |
USUARIO.NICKNAME, | |
USUARIO.BIRTHDAY, | |
USUARIO.GENDER, | |
DATE(USUARIO.CREATED_AT) AS CREATED_AT, | |
USUARIO.EMAIL, | |
USUARIO.NAME AS NOME_USR, | |
PLANO.DURATION, |
#!/bin/sh | |
# e.g. CONTAINER_REGISTRY=asia.gcr.io/your-project-name/gcf/asia-northeast1 | |
CONTAINER_REGISTRY=`WRITE YOUR REGISTRY NAME` | |
IMAGE_LIST=`gcloud container images list --repository=$CONTAINER_REGISTRY | awk 'NR!=1'` | |
for line in $IMAGE_LIST; do | |
gcloud container images delete "$line/worker" --quiet & gcloud container images delete "$line/cache" --quiet & | |
done |