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
#!/usr/local/bin/php | |
<?php | |
print "Convert Paypal export to Knab readable import\n"; | |
$account = '000000001'; // Can't be an email address | |
$dataIn = file_get_contents('Downloaden.csv'); | |
$data = array(); | |
$dataOut = ""; | |
foreach (explode("\n", $dataIn) as $row) { |
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
<div class="step slide" data-x="1000" data-y="-1500"> | |
<q>Would you like to <strong>impress your audience</strong> with <strong>stunning visualization</strong> of your talk?</q> | |
</div> | |
<div id="title" class="step" data-x="0" data-y="0" data-scale="4"> | |
<span class="try">then you should try</span> | |
<h1>impress.js<sup>*</sup></h1> | |
<span class="footnote"><sup>*</sup> no rhyme intended</span> | |
</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
var Db = require('../lib/mongodb').Db, | |
Connection = require('../lib/mongodb').Connection, | |
Server = require('../lib/mongodb').Server; | |
var host = 'localhost'; | |
var port = Connection.DEFAULT_PORT; | |
var db = new Db('example', new Server(host, port, {}), {native_parser:true}); | |
db.open(function(err, db) { | |
db.collection('docs', function(err, collection) { |
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 class="no-js" lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Untitled</title> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.0.6/modernizr.min.js"></script> | |
<script>window.Modernizr || document.write('<script src="/lib/modernizr.custom.57692.js"><\/script>')</script> | |
</head> | |
<body> |
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> | |
<meta charset="utf-8"> | |
<title>ui.Flashcard</title> | |
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/pepper-grinder/jquery-ui.css"> | |
<link rel="stylesheet" href="ui.flashcard.css"> | |
<style> | |
body { font-family: sans-serif; } | |
#myFlashcard { margin: 2em auto; } |
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> | |
<meta charset="utf-8"> | |
<title>ui.Flashcard</title> | |
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/pepper-grinder/jquery-ui.css"> | |
<link rel="stylesheet" href="ui.flashcard.css"> | |
<style> | |
body { font-family: sans-serif; } | |
#myFlashcard { margin: 2em auto; } |