This is my recommended path for learning Haskell.
This file contains 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/bin/env ruby | |
require 'json' | |
require 'net/https' | |
require 'pathname' | |
# Extensions | |
# ---------- |
This file contains 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 kivy.app import App | |
from kivy.lang import Builder | |
from kivy.uix.boxlayout import BoxLayout | |
Builder.load_string(''' | |
<ActionBarDummy> | |
ActionBar: | |
pos_hint: {'top':1} | |
ActionView: |
By Dustin Farris on 22 Feb 2012
This document describes how to share users created using Django's auth system with other Django projects. It is not a hack; it simply makes use of the database router and middleware system that Django comes with out of the box.
This file contains 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
{-# LANGUAGE OverloadedStrings #-} | |
import Reflex.Dom | |
counter = el "div" $ do | |
click <- button "Click" | |
clicks <- foldDyn (\() n -> n + 1) 0 click | |
el "p" $ display clicks | |
return clicks | |
main = mainWidget $ do |