View readcsv.php
<?php | |
// Auto detect line endings so more CSV's are compatible. | |
ini_set("auto_detect_line_endings", true); | |
// Read a CSV and make a 2 dimensional array from the data | |
// Pass the name of the CSV as an argument when calling the funciton. | |
function readCSV($filename) { | |
$data = array(); | |
if (file_exists($filename)) { |
View markdown2html
#!/usr/bin/env ruby | |
require "fileutils" | |
require "redcarpet" | |
OUTPUT_FOLDER = "html" | |
HTML_TEMPLATE = <<-HTML | |
<!DOCTYPE html> | |
<html> |
View gist:4088949
<!-- Add to the package layout (via local.xml or however you prefer) --> | |
<!-- Also, best to remove before deployment, as some users report --> | |
<!-- it makes IE 7 crash --> | |
<default> | |
<reference name="content"> | |
<block type="core/text" name="fix.console" as="fix.console"> | |
<action method="setText"> | |
<text><![CDATA[<script type="text/javascript"> | |
iframe = document.createElement('iframe'); | |
iframe.style.display = 'none'; |
View Preferences.sublime-settings
{ | |
"Line_padding_bottom": 1, | |
"Line_padding_top": 1, | |
"color_scheme": "Packages/Theme - Spacegray/base16-ocean.dark.tmTheme", | |
"font_face": "Source Code Pro", | |
"font_size": 15, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"Markdown", |