Skip to content

Instantly share code, notes, and snippets.

View flyingfisch's full-sized avatar
🇺🇦

Mark Fischer, Jr. flyingfisch

🇺🇦
View GitHub Profile
@flyingfisch
flyingfisch / flash-cards.md
Last active February 1, 2017 22:20
Why I studied full-time for 8 months for a Car Talk interview
  • What is a standard wrench? A standard wrench is used turn nuts and bolts of a certain size.
  • What is the difference between a nut and a bolt? A bolt is called a male element that connects two objects. To ensure the connection to be permanent and doesn't dismantle, a nut, a female element is used. Together a nut and bolt can be used to make temporary assembly of two or more similar or dissimilar objects.

More coming soon!

Keybase proof

I hereby claim:

  • I am flyingfisch on github.
  • I am flyingfisch (https://keybase.io/flyingfisch) on keybase.
  • I have a public key whose fingerprint is C00A 02E3 2CC0 00D6 6BA8 E607 9DFB 781A EF57 953E

To claim this, I am signing this object:

@flyingfisch
flyingfisch / easy-reading.user.js
Last active December 30, 2015 21:40
fixed disqus problem
// ==UserScript==
// @name easy-reading
// @namespace flyingfisch@toppagedesign.com
// @include *
// @version 1.22
// @grant none
// ==/UserScript==
// to install, click the raw button in the upper right
// == 1 instead of == 0 because document.styleSheets includes the user agent stylesheets
if (document.styleSheets.length == 1) {
var el = document.getElementsByTagName("body")[0].style;
el.maxWidth = '40em';
el.margin = '1em auto';
// optional, I may be getting carried away now...
el.fontFamily = '"Palatino Linotype","Book Antiqua",Palatino,serif';
el.lineHeight = '1.7em';
@flyingfisch
flyingfisch / .vimrc
Created October 31, 2015 00:07
My .vimrc
" infect
execute pathogen#infect()
filetype off
syntax on
filetype plugin indent on
set autoindent
set smartindent
set mouse=a
set nocursorline
;; -*- mode: dotspacemacs -*-
;; This file is loaded by Spacemacs at startup.
;; It must be stored in your home directory.
(defun dotspacemacs/layers ()
"Configuration Layers declaration."
(setq-default
;; List of additional paths where to look for configuration layers.
;; Paths must have a trailing slash (ie. `~/.mycontribs/')
@flyingfisch
flyingfisch / sass-styleguide
Created March 20, 2015 20:18
Sass Styleguide
# CSS/Sass Style Guide
[TOC]
## Coding Style
### Whitespace
* Indent using four spaces, no tabs. Reason: Ensures that indentation is consistent across editors, Visual Studio default.
@flyingfisch
flyingfisch / Asp.net Razor Cheatsheet
Created March 19, 2015 17:42
asp-net-razor-cheatsheet.md
#ASP.net Razor Cheatsheet
## Basics
### Including code in a view
```
<!-- Single-statement blocks -->
@{ int myInt = 1; }
@flyingfisch
flyingfisch / index.php
Last active August 29, 2015 13:58
An index for directories
<!DOCTYPE HTML>
<html>
<head>
<title>Index</title>
</head>
<body>
<style>
html {
background: #CDE5E5;