Skip to content

Instantly share code, notes, and snippets.

View skinnylatte's full-sized avatar

Adrianna Tan skinnylatte

View GitHub Profile
sudo /Applications/Install\ OS\ X\ El\ Capitan.app/Contents/Resources/createinstallmedia --volume /Volumes/Boot --applicationpath /Applications/Install\ OS\ X\ El\ Capitan.app --nointeraction
@skinnylatte
skinnylatte / markdown.md
Created August 30, 2016 05:49 — forked from jonschlinkert/markdown-cheatsheet.md
A better markdown cheatsheet. I used Bootstrap's Base CSS documentation as a reference.

Typography

Headings

Headings from h1 through h6 are constructed with a # for each level:

# h1 Heading
## h2 Heading
### h3 Heading
@skinnylatte
skinnylatte / sap-copy-locally.md
Last active October 17, 2016 10:05
Copy files from webfation using scp

This assumes you use Mac OS X and Webfaction.com shared hosting.

To avoid using an ftp or sftp client to download a folder to your computer locally, this is what I did.

Here, I am copying a wordpress folder into my local folder.

In Terminal,

scp -r yourwebfactionusername@yourwebfactionusername.webfactional.com:/home/yourwebfactionusername/webapps/yourwebappname /Users/yourmacusername/folder

@skinnylatte
skinnylatte / vim-delete-tips.md
Created October 17, 2016 11:44
VIM - delete all lines in file

gg goes to top of file.

dG deletes all lines in file.

@skinnylatte
skinnylatte / jekyll-template-paginate-nicedates.html
Last active October 17, 2016 12:14
Jekyll index file template with pagination and nice dates
---
layout: default
---
<!-- This loops through the paginated posts -->
{% for post in paginator.posts %}
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<p class="author">
<span class="date">Written on {{ post.date | date: "%B %e, %Y" }}</span>
</p>
@skinnylatte
skinnylatte / fix-homebrew-npm.md
Created March 16, 2017 08:27 — forked from DanHerbert/fix-homebrew-npm.md
Instructions on how to fix npm if you've installed Node through Homebrew on Mac OS X or Linuxbrew

Fixing npm On Mac OS X for Homebrew Users

Installing node through Homebrew can cause problems with npm for globally installed packages. To fix it quickly, use the solution below. An explanation is also included at the end of this document.

Solution

This solution fixes the error caused by trying to run npm update npm -g. Once you're finished, you also won't need to use sudo to install npm modules globally.

Before you start, make a note of any globally installed npm packages. These instructions will have you remove all of those packages. After you're finished you'll need to re-install them.

@skinnylatte
skinnylatte / homebrew.md
Created March 24, 2017 04:43 — forked from indiesquidge/homebrew.md
How to and Best of Homebrew

Homebrew

How To

Homebrew is a package management system for OS X. You can read more about it here, or simply run

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

to install it.

Install Ubuntu
Install Chrome
Install docker
sudo apt-get install npm
sudo npm install -g @angular/cli
sudo npm install -g @angular-devkit/build-angular
@skinnylatte
skinnylatte / US State List
Created April 10, 2020 02:57 — forked from tvpmb/US State List
JSON Array with List of US States with 2-char ISO codes.
[
{"name":"Alabama","alpha-2":"AL"},
{"name":"Alaska","alpha-2":"AK"},
{"name":"Arizona","alpha-2":"AZ"},
{"name":"Arkansas","alpha-2":"AR"},
{"name":"California","alpha-2":"CA"},
{"name":"Colorado","alpha-2":"CO"},
{"name":"Connecticut","alpha-2":"CT"},
{"name":"Delaware","alpha-2":"DE"},
{"name":"District of Columbia","alpha-2":"DC"},
@skinnylatte
skinnylatte / jellyfin.md
Created July 12, 2020 22:05
Manage Jellyfin
sudo systemctl {action} jellyfin.service

sudo service jellyfin {action}