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
<h1>Responsive</h1> | |
<div>Typography</div> |
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
// ---- | |
// libsass (v3.3.6) | |
// ---- | |
/** | |
* Responsive Typography Example | |
* | |
* Read the full post here: | |
* http://www.liquidlight.co.uk/blog/article/responsive-typography-in-scss/ | |
*/ |
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
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 |
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
<?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'); |
OlderNewer