Skip to content

Instantly share code, notes, and snippets.

View mikestreety's full-sized avatar

Mike Street mikestreety

View GitHub Profile
@mikestreety
mikestreety / SassMeister-input-HTML.html
Last active September 9, 2015 15:21
Generated by SassMeister.com.
<h1>Responsive</h1>
<div>Typography</div>
@mikestreety
mikestreety / SassMeister-input.scss
Last active November 23, 2016 15:41
Generated by SassMeister.com.
// ----
// libsass (v3.3.6)
// ----
/**
* Responsive Typography Example
*
* Read the full post here:
* http://www.liquidlight.co.uk/blog/article/responsive-typography-in-scss/
*/
@mikestreety
mikestreety / .vimrc
Created April 27, 2016 09:19
Vim settings file
filetype indent plugin on
" Turn on suntax highlighting
syntax on
" Set dark background
set background=dark
" Set utf8 as standard encoding and en_US as the standard language
set encoding=utf8
<?php
// The name of the folder where the logins are
$folder = './passwords';
// The file name you want to save as
$title = 'Logins';
// A csv function - from http://webtricksandtreats.com/export-to-csv-php/
function convert_to_csv($input_array, $output_file_name, $delimiter) {
$temp_memory = fopen('php://memory', 'w');