Skip to content

Commit

Permalink
Cleaned up project
Browse files Browse the repository at this point in the history
  • Loading branch information
its-your-favorite committed Mar 20, 2013
1 parent e7d5fc9 commit 773ebda
Show file tree
Hide file tree
Showing 13 changed files with 1,252 additions and 379 deletions.
1 change: 0 additions & 1 deletion .idea/.name

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/Fancy.iml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/encodings.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/libraries/sass_stdlib.xml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/misc.xml

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/modules.xml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/scopes/scope_settings.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/vcs.xml

This file was deleted.

329 changes: 0 additions & 329 deletions .idea/workspace.xml

This file was deleted.

6 changes: 5 additions & 1 deletion cards.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
<script src="functional.js"></script>
<script src="underscore-min.js"></script>
<script src="underscore.js"></script>
<script src="fancy.js"></script>
<script>
/**
* A sample piece of code illustrating the virtues of functional programming and fancy.
* Evaluates poker hands.
*
* Copyright 2013 Alex Rohde
* Poker hands
*
* What ifs:
Expand Down
1 change: 1 addition & 0 deletions fancy.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

/**
* Copyright 2013 Alex Rohde
* todo - improve tutorial (add: also improved the way mapping on objects works, and filtering)
* document meld & others
*
Expand Down
21 changes: 21 additions & 0 deletions functional.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/*Copyright (c) 2006 Oliver Steele
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.*/

var emptyObj = {};
typeof window=='undefined'&&(window={});var Functional=window.Functional||{};Functional.install=function(except){var source=Functional,target=window;for(var name in source)
name=='install'||name.charAt(0)=='_'||except&&name in except||{}[name]||(target[name]=source[name]);}
Expand Down
Loading

0 comments on commit 773ebda

Please sign in to comment.