View FunDeps.hs
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
{- stack script --resolver lts-20.5 -} | |
-- @FunctionalDependencies@ is a useful extension allowing us to resolve the | |
-- ambiguity inherently arising in multi-parameter typeclasses. Such typeclasses | |
-- can be useful, but sometimes unergonomic as it can be impossible to solve for | |
-- certain type variables. | |
-- | |
-- For a multiparam typeclass @X@ over two parameters @a@, @b@, there is a | |
-- potentially infinite combination of @a@s and @b@s. This means that if I | |
-- have a member function @f :: X a b => a -> b@ then I can't know the type |
View promises-as-monads.ts
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
// Proposition: Promise is equivalent to a loosely typed `ExceptT e IO a` for | |
// javascript, and fundamentally obeying the monad laws, making it a | |
// helpful construction for writing computations. | |
// class Monad m where | |
// return :: a -> m a | |
// (>>=) :: m a -> (a -> m b) -> m b | |
// | |
// Monad laws: | |
// Left identity: return a >>= f ≡ f a |
View results.txt
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
~/sandbox > node strings-vs-ints.js 1000000 32 | |
Sorting 1000000 numbers of magnitude 10^32 | |
Sorting 1000000 strings of length 32 | |
Numbers: 461 | |
Strings: 1445 | |
~/sandbox > node strings-vs-ints.js 1000000 32 | |
Sorting 1000000 numbers of magnitude 10^32 | |
Sorting 1000000 strings of length 32 | |
Numbers: 494 | |
Strings: 1500 |
View dabblet.css
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
select { | |
padding: 0.5em; | |
} |
View enum.js
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
/* global define */ | |
/** | |
* Enums in Javascript | |
* | |
* Makes an immutable dictionary with string:int pairings to emulate Enums. | |
* Usage example: Colours = Enum('RED', 'GREEN', 'BLUE'); | |
* | |
* @author Gideon Farrell <me@gideonfarrell.co.uk> | |
* | |
*/ |
View dabblet.css
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
.clear { clear: both; } | |
.authenticationWidget { | |
position: relative; | |
font-family: Helvetica Neue; | |
font-size: 0.9em; | |
} | |
h2 { | |
margin: 30px 0 0 10px; |
View mailboxapp annoyances
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
1) No custom signatures | |
2) Spam now shows up in my inbox | |
3) If I archive something on my computer, mailbox doesn't have it archived; it's still in my inbox | |
4) No label support (I use labels to categorise EVERYTHING, and it's really important to my organisation) | |
... I'll add to this as I go along |
View remote_backup.sh
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
#!/bin/bash | |
########################################################## | |
# Remote Backup Script | |
# | |
# FILE: remote_backup.sh | |
# RUN: Daily 00h00 | |
# | |
# author: Gideon Farrell me@gideonfarrell.co.uk | |
########################################################## |
View pageload.js
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
$(window).on('load', function() { | |
var fragment = window.location.hash; | |
if(fragment != "") { | |
$('body').animate({ | |
scrollTop: $(fragment).offset().top | |
}); | |
} | |
}); |
View npm-debug.log
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
0 info it worked if it ends with ok | |
1 verbose cli [ 'node', | |
1 verbose cli '/usr/local/bin/npm', | |
1 verbose cli 'install', | |
1 verbose cli '--save', | |
1 verbose cli 'gfarrell/state.js~0.1.0' ] | |
2 info using npm@1.4.10 | |
3 info using node@v0.10.28 | |
4 verbose node symlink /usr/local/bin/node | |
5 warn package.json PresenceMonitor@0.0.1 No repository field. |
NewerOlder