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
| <p><iframe width="940" height="705" src="http://www.youtube.com/embed/M5THXa_H_N8" frameborder="0" allowfullscreen></iframe></p> | |
| <p><iframe width="940" height="705" src="http://www.youtube.com/embed/uSAzbSQqals" frameborder="0" allowfullscreen></iframe></p> |
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
| <p> | |
| If you run into the dreaded "heroku no app specified" problem, <a href="http://www.digitalsanctum.com/2010/05/05/heroku-no-app-specified/">here's the solution</a>. | |
| </p> |
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
| <p>Why this has to be so difficult I'm not sure, but <a href="http://idgettr.com/">this tool</a> to go from your userid to that hideous thing that the flickr API's require works.</p> |
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
| An interview with <a href="http://www.infoq.com/interviews/paul-hudak-haskell-Qcon-SF-08">Yale's Paul Hudak</a> on Haskell. |
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
| A <a href="http://research.microsoft.com/en-us/um/people/simonpj/papers/history-of-haskell/history.pdf">history of Haskell [PDF]</a> from Microsoft Research. |
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
| <p> | |
| Derek Thurn has written probably the best comparison of Vim and Emacs ever written. In particular, he's confirmed that I'm not the only person in the known universe who uses vi for quick sysadmin editing tasks and emacs for larger scale coding efforts. And he's managed to do this in <a href="http://www.thurn.ca/why_i_switched_from_vim_to_emacs">the most fence-straddling way possible</a>.</p> | |
| <p> | |
| I'd also add that Gabriel Lanaro's <a href="http://gabrielelanaro.github.com/emacs-for-python/">emacs for python starter kit</a> tipped the scales in favor of emacs for me having come from vim. | |
| </p> |
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
| <form method="post" action=""> | |
| <fieldset> | |
| <legend>Applications</legend> | |
| {% for field in form %} | |
| <div class="clearfix"> | |
| {{ field.label }} | |
| <div class="input"> | |
| {{ field }} | |
| {% if field.errors %} | |
| <ul class="errors"> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| #-*- coding:utf8 -*- | |
| # 無駄にitertoolsを駆使したFizzBuzz | |
| from itertools import repeat, ifilterfalse, starmap, count | |
| N = 31 | |
| LEN = range(1, N) | |
| FIZZ, BUZZ = map(repeat, ("Fizz", "Buzz")) | |
| fizz, buzz = ( |
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
| from datetime import datetime | |
| from flask import * | |
| from flaskext.wtf import * | |
| from flaskext.sqlalchemy import * | |
| from werkzeug import generate_password_hash, check_password_hash | |
| app = Flask() | |
| app.config.from_pyfile('app_settings.py') | |
| db = SQLAlchemy(app) |