Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Paul Farning paulfarning Instrument Portland, Oregon, USA http://waytoocrowded.com Joined on Sep 16, 2010 4 Followers 1 Starred 1 Following Follow Contributions Repositories Public activity cc_controller 1 MIDI controller to send preset CC messages. greensock-closure-externs 0 Use the externs for advanced closure compilation with the greensock animation framework. morlock.js 0 Low level libraries for responsive & interactive websites patchsheet 0 Document and share analog synthesizer patches. practicespot 0 Generate html directory and file listing of mp3s. tdreyno / morlock.js 29 Low level libraries for responsive & interactive websites Summary of P...
Sign up for a GitHub account Sign in All Gists lykkin / gist:2c514c3440262243c420 Created May 18, 2015 Code Revisions 1 /.sunken-menu-group /.sunken-menu-contents Embed HTTPS SSH You can clone with HTTPS or SSH . Download Gist /.only-with-full-nav n queens View gist:2c514c3440262243c420 gistfile1.py Raw File suppressed. Click to show. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 def output_board ( board ): for row in board: print ' ' .join( map ( str , row)) def place_queen ( board , coordinate ): new_board = [] for row in board: new_board.append(row[:]) x,y = coordinate for c in range ( len (new_board)): ...
******** TAB LIST ******** Candy box Inventory Quest Cauldron Computer *************** TAB : CANDY BOX *************** *************************************** Right panel : the farm and some objects _.-^-._ .'''. .-' _ '-. | ~ | / |_| \ '._.' / \ | /| _____ |\ | | |==|==| | | |---|---|---| |--|--| | | |---|---|---| |==|==| | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The lollipop farm ***************************************** Left panel : some stats, and the merchant Save | | Candies converter V Eat all the candies Throw 10 candies on the ground Use 101 candies to encrust your diamond sword and make it even more powerful Use 30 lollipops to make lollipop powder to polish your candy sword and make it awesome (and...
Dogs Pooping Pooping dogs. Send pics of your dog poopin' to: DogsPooping@gmail.com Archive Mar 1st Fri Feb 20th Wed Jan 29th Tue Oct 17th Mon Camouflage poopin’ Aug 24th Tue Aug 16th Mon Apr 7th Wed Jan 11th Mon Sep 9th Wed Next » Powered by Tumblr BEGIN TUMBLR CODE [if IE]><script type="text/javascript">document.getElementById('tumblr_controls').allowTransparency=true;</script><![endif] END TUMBLR CODE ...
<![endif] BeginNav nav-config-asset-injection US::desktop::standard::49573:T2&42994:T1::auiDebug=0::isSecure=0::jsOnEvent=navCF navc-MHy70aLtbHnVqE3PQ0dv61nF2JNMWA00rfftn4Yt/wMUiKd8lif31ruTISUs9WNctXDrIZCeiYU= rid-1BFYTGTMRA2EG6FADPPT seq-167 (Sat May 16 18:56:02 2015) **CACHED-BY-NCCC** nav-config-asset-injection US::desktop::standard::49573:T2&42994:T1::auiDebug=0::isSecure=0::jsOnEvent=navCF navc-MHy70aLtbHnVqE3PQ0dv61nF2JNMWA00rfftn4Yt/wMUiKd8lif31ruTISUs9WNctXDrIZCeiYU= rid-1BFYTGTMRA2EG6FADPPT seq-167 (Sat May 16 18:56:02 2015) **CACHED-BY-NCCC** From remote config v3 [if IE 6]> <style type="text/css"><!-- #navbar.nav-sprite-v3 .nav-sprite { background-image: url(http://g-ecx.images-amazon.com/images/G/01/gno/sprites/global-sprite_bluebeacon-v1._V327533540_.png); } endif if gt IE 6 Amazon Try Prime All All Departments Amazon Ho...
This is a dumb hack, we should only have one or the other from the the template context, so only one of the following will be rendered. ...
[if lte IE 9]><style>/* THIS IS AN AUTO-GENERATED FILE */ .alertbar { background-color: #97b147; color: #ffffff; font-size: 28px; text-align: center; } .alertbar-link { color: inherit; display: block; padding: 1em; text-decoration: none; } body { overflow-x: auto; }</style><div class="alertbar"><a class="alertbar-link" href="http://browsehappy.com/"> You are using an <strong>outdated</strong> browser. <br>Portions of our site may not work as intended. <br>Please <u>click here</u> to upgrade your browser! </a></div><![endif] [if lte IE 9]><style>/* THIS IS AN AUTO-GENERATED FILE */ .navbar { display: inline-block; width: 100%; } .navbar ul { display: inline-block; } .navbar-items-menu { float: right; }</style><script>/*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js*/ ;if("document" in self&&!("classList" in document.createElement("_"))){(function(j)...
This is a dumb hack, we should only have one or the other from the the template context, so only one of the following will be rendered. ...
Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Watch 112 Star 3,858 Fork 210 EnterpriseQualityCoding / FizzBuzzEnterpriseEdition /.container /.repohead Code Issues Pull requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar FizzBuzz Enterprise Edition is a no-nonsense implementation of FizzBuzz made by a serious businessman for serious business purposes. 116 commits 2 branches 0 releases 21 contributors Java 100.0% Java branch: master Switch branches/tags Branches Tags feature/Dependency-injection master Nothing to show Nothing to show FizzBuzzEnterpriseEdition / Merge bra...
Sign up for a GitHub account Sign in All Gists lykkin / v1 Last active May 13, 2015 Code Revisions 2 /.sunken-menu-group /.sunken-menu-contents Embed HTTPS SSH You can clone with HTTPS or SSH . Download Gist /.only-with-full-nav weighted choice View v1 v1 Raw File suppressed. Click to show. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 from random import random class thing: def __init__(self, value, weight=1): self.value = value self.weight = weight def __str__(self): return str(self.value) + ' ' + str(self.weight) things = [thing(x) for x in range(10)] def pick(): total_weight = sum(map(lambda thing: thing.weight, things)) choice_weight = total_weight*ran...