some content, now some edited content.
- 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!
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:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // == 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'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " infect | |
| execute pathogen#infect() | |
| filetype off | |
| syntax on | |
| filetype plugin indent on | |
| set autoindent | |
| set smartindent | |
| set mouse=a | |
| set nocursorline |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; -*- 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/') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ASP.net Razor Cheatsheet | |
| ## Basics | |
| ### Including code in a view | |
| ``` | |
| <!-- Single-statement blocks --> | |
| @{ int myInt = 1; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <title>Index</title> | |
| </head> | |
| <body> | |
| <style> | |
| html { | |
| background: #CDE5E5; |