Vim is a powerful and versatile text editor with numerous commands that can make editing more efficient. Here are some of the most useful commands for Vim: Basic movement: h, j, k, l: Move the cursor left, down, up, and … Continue reading
Uses This Product Listing
We were curious what products were recommended the most in interviews at “Uses This”. Below you will find a listing of all the product mentions we could find and the number of times it was mentioned as of this date. … Continue reading
Postgresql Commands to Import / Export (pg_restore, pg_dump) databases
Here are a couple commands for dealing with importing and exporting (or restoring and dumping) Postgres databases. This assumes Postgres is running on localhost. These commands should seem similar to mysqldump / mysql mydb < mydump.sql import / exporting / … Continue reading
mkdir(1) – Linux manual page
man7.org > Linux > man-pages Linux/UNIX system programming training NAME | SYNOPSIS | DESCRIPTION | AUTHOR | REPORTING BUGS | COPYRIGHT | SEE ALSO | COLOPHON MKDIR(1) User Commands MKDIR(1) NAME top mkdir – make directories SYNOPSIS … Continue reading
Ruby on Rails Infinite Scroll Patterns
Here’s a variety of methods for accomplishing infinite scroll with Ruby on Rails. This functionality is sometimes referred to by a variety of names including Infinite pagination, ajax pagination, endless page. These methods utilize will_paginate or kaminari gems and some … Continue reading
Stop ksfetch / Keystone Fetch / Google Software Updater Network Requests on Mac
If you notice this process which seems to make network requests quite often you may wonder what the heck it is. Apparently it is a Google software updater process. To me it seems to run much too frequently. I prefer … Continue reading
Daily Backup Sqlite3 Database Shell Script
Here’s a basic script to generate database backups for an Sqlite3 database. Simply copying the .sqlite3 database file may work but there may be issues and data corruption if the database is locked or actively being used. The better option … Continue reading
Bash One-liner to Make All File Names Lowercase
for f in *; do mv $f `echo $f | tr ‘[:upper:]’ ‘[:lower:]’`; done Source: bradchoate.com: Lowercase Filenames.
Services for Firefox
Services for Firefox.
Create a bootable installer for OS X Mavericks or Yosemite – Apple Support
Create a bootable installer for OS X Mavericks or Yosemite – Apple Support.