Skip to content

Instantly share code, notes, and snippets.

View thathollywood's full-sized avatar
🎯
Focusing

Martin Hollywood thathollywood

🎯
Focusing
View GitHub Profile
@thathollywood
thathollywood / octave.md
Created March 26, 2019 17:09 — forked from obstschale/octave.md
An Octave introduction cheat sheet.

Octave CheatSheet

GNU Octave is a high-level interpreted language, primarily intended for numerical computations.
(via GNU Octave)

Basics

  • not equal ~=
  • logical AND &&
@thathollywood
thathollywood / README-Template.md
Created May 9, 2018 04:32 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@thathollywood
thathollywood / gist:09a75cfdd128408505e6
Created January 21, 2015 11:31
OSX – Show / Hide Hidden Files in Finder
Show:
defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder
Hide:
defaults write com.apple.finder AppleShowAllFiles FALSE
killall Finder
@thathollywood
thathollywood / chat-frontend.js
Created September 13, 2012 14:09 — forked from martinsik/chat-frontend.js
Node.js chat frontend and server
$(function () {
"use strict";
// for better performance - to avoid searching in DOM
var content = $('#content');
var input = $('#input');
var status = $('#status');
// my color assigned by the server
var myColor = false;