Skip to content

Instantly share code, notes, and snippets.

#Open
/etc/apt/sources.list
#Add repos
deb http://ppa.launchpad.net/mozillateam/thunderbird-next/ubuntu trusty main
deb-src http://ppa.launchpad.net/mozillateam/thunderbird-next/ubuntu trusty main
#Add repos key
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 9D1A0061
@Gamblt
Gamblt / setup_selenium.sh
Created April 6, 2016 08:09 — forked from curtismcmullan/setup_selenium.sh
Setup Selenium Server on Ubuntu 14.04
#!/bin/bash
# Following the guide found at this page
# http://programmingarehard.com/2014/03/17/behat-and-selenium-in-vagrant.html
echo "\r\nUpdating system ...\r\n"
sudo apt-get update
# Create folder to place selenium in
@Gamblt
Gamblt / gist:09b8eec6442cc49979e3
Created March 10, 2016 09:55 — forked from cpjolicoeur/gist:3590737
Ordering a query result set by an arbitrary list in PostgreSQL

I'm hunting for the best solution on how to handle keeping large sets of DB records "sorted" in a performant manner.

Problem Description

Most of us have work on projects at some point where we have needed to have ordered lists of objects. Whether it be a to-do list sorted by priority, or a list of documents that a user can sort in whatever order they want.

A traditional approach for this on a Rails project is to use something like the acts_as_list gem, or something similar. These systems typically add some sort of "postion" or "sort order" column to each record, which is then used when querying out the records in a traditional order by position SQL query.

This approach seems to work fine for smaller datasets, but can be hard to manage on large data sets with hundreds (or thousands) of records needing to be sorted. Changing the sort position of even a single object will require updating every single record in the database that is in the same sort group. This requires potentially thousands of wri

@Gamblt
Gamblt / nginx.conf
Created February 5, 2016 16:55 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
//Use timeout to ignore changes events while object initialization.
setTimeout(function() {
var keys = Object.keys($scope.news);
console.log('Keys [%o]', keys);
for(var key in keys){
console.log('Watch property [%s]', keys[key]);
var f = function(property) {
console.log('Property [%o]', property);
$scope.$watch("news."+property,
function (value) {
@Gamblt
Gamblt / Database
Last active December 4, 2015 09:45
Clients
http://www.sqltabs.com/ - cool postgresql client with chats drawing and sharing
http://dbeaver.jkiss.org/ - universal client
Backup DB
#!/bin/bash
#MySQL Dump
mysqldump DBNAME > dump-$( date '+%Y-%m-%d_%H-%M-%S' ).sql --single-transaction -u USERNAME -pPASSWORD
#PostgreSQL Dump