Skip to content

Instantly share code, notes, and snippets.

@nomatteus
nomatteus / pgAdmin Keyboard Shortcuts.md
Last active December 17, 2015 09:08
pgAdmin Useful Keyboard Shortcuts (on Mac) (work in progress...)

commmand-e:

  • Opens Query Editor (Only works when in main view)

function-f5:

  • In query editor, executes query.
  • In table view, refreshes table.
  • In main view, executes whatever is highlighted (tables, columns, etc)
@nomatteus
nomatteus / psql.md
Created July 22, 2013 14:28
Learning how to use psql instead of pgAdmin (mostly), and these are the command I want to remember.

Useful psql commands:

How to start/quit the program

  • $ psql database_name: Start psql with database name.
  • \q: Quit psql

General

  • \l: List all databases
@nomatteus
nomatteus / fullcalendar.1.6.4.js
Last active May 19, 2018 12:05
FullCalendar Vertical Week View
/*!
* FullCalendar v1.6.4
* Docs & License: http://arshaw.com/fullcalendar/
* (c) 2013 Adam Shaw
*/
/*
* Use fullcalendar.css for basic styling.
* For event drag & drop, requires jQuery UI draggable.
* For event resizing, requires jQuery UI resizable.
@nomatteus
nomatteus / fullcalendar.js
Last active December 25, 2015 02:19
FullCalendar with vertical week view (better version)
/*!
* <%= meta.title %> v<%= meta.version %>
* Docs & License: <%= meta.homepage %>
* (c) <%= meta.copyright %>
*/
/*
* Use fullcalendar.css for basic styling.
* For event drag & drop, requires jQuery UI draggable.
* For event resizing, requires jQuery UI resizable.
@nomatteus
nomatteus / postgres-centos-6.sh
Last active August 29, 2015 14:05
CentOS 6 Postgres Install
sudo vi /etc/yum.repos.d/CentOS-Base.repo
# At the bottom of the [base] section, add a line that excludes the postgres packages:
exclude=postgresql*
# Add the same line to the bottom of the [updates]
exclude=postgresql*
# Use URL for your version of CentOS: http://yum.postgresql.org/repopackages.php
cd ~
curl -O http://yum.postgresql.org/9.3/redhat/rhel-7-x86_64/pgdg-centos93-9.3-1.noarch.rpm
sudo rpm -ivh pgdg*
@nomatteus
nomatteus / TWG Breakfast Mix.md
Last active September 13, 2018 14:26
TWG Breakfast Mix

Ingredients

~3 parts each:

  • Hemp Hearts
  • Buckwheat (toasted)
  • Chia Seeds

~1 part each:

/*----------------------------------------------------*/
#pragma mark - XCTAsserts
/*----------------------------------------------------*/
XCTAssert(expression, format...);
XCTAssertTrue(expression, format...);
XCTAssertFalse(expression, format...);
XCTAssertEqual(expression1, expression2, format...);
XCTAssertNotEqual(expression1, expression2, format...);
XCTAssertNil(expression, format...);
@nomatteus
nomatteus / .slate
Created January 28, 2019 20:44
Slate window manager config. https://github.com/jigish/slate
# Slate is a flexible window management system.
# See docs: https://github.com/jigish/slate
# Also see: http://thume.ca/howto/2012/11/19/using-slate/#configuration
config defaultToCurrentScreen true
# Abstract positions
alias full move screenOriginX;screenOriginY screenSizeX;screenSizeY
alias lefthalf move screenOriginX;screenOriginY screenSizeX/2;screenSizeY
alias righthalf move screenOriginX+screenSizeX/2;screenOriginY screenSizeX/2;screenSizeY
@nomatteus
nomatteus / environment.yml
Created September 15, 2019 14:12
Her Code Camp Notebooks
name: example-environment
channels:
- conda-forge
dependencies:
- python
- numpy
- graphviz
- pip:
- nbgitpuller
- sphinx-gallery