Skip to content

Instantly share code, notes, and snippets.

@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
//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 / 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
@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 / 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
#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-sublime3-for-angular2.md
Created May 5, 2016 07:53 — forked from dwmkerr/setup-sublime3-for-angular2.md
Quickly setup Sublime Text 3 for Angular 2

Quick Setup for Sublime Text 3 for Angular 2

Easy to remember, easy to forget.

Step 1: Download Sublime Text 3

Sublime Text 3 Download

Step 2: Create a bash shortcut

It's nice to be able to run subl in a terminal.

Create sudo user with bash and homedir:
useradd -m -d /home/testuser/ -s /bin/bash -G sudo testuser
######################################################### FILES
Truncate file
truncate -s 0 /var/log/syslog
Find folders and set access for them:
@Gamblt
Gamblt / gist:55d62b6aca3bfcb4a1725ff44b533efd
Created November 28, 2016 10:33 — forked from imkarthikk/gist:772f86858f90efa55687
Graphite, UWSGI and nginx setup on Ubuntu 14.04
# update packages
sudo apt-get update
# install python and graphite dependencies
sudo apt-get install -y python python-dev python-virtualenv libevent-dev python-pip python-cairo python-django-tagging python-twisted python-memcache python-pysqlite2
# install web server
sudo apt-get install -y nginx uwsgi uwsgi-plugin-python
# install postgresql and dependencies
@Gamblt
Gamblt / seo.service.ts
Created November 16, 2017 08:43 — forked from kaaboeld/seo.service.ts
Example working service for adding meta tags to <head/> for angular2-universal. Based on http://blog.devcross.net/2016/04/17/angular-2-universal-seo-friendly-website/
import {Injectable,Inject,ElementRef, Renderer} from '@angular/core';
//import { DOCUMENT } from '@angular/platform/common_dom';
import {DOCUMENT} from '@angular/platform-browser';
@Injectable()
export class SeoService {
private _r: Renderer;
private _el: ElementRef;
private _document: any;
/**