Create a Meteor app and put the client_/server_ files in a client/server directories. Also, create a public dir to save the uploaded files.
      This file has been truncated, but you can view the full file.
    
    
  
    
      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
    
  
  
    
  | var console = { | |
| log: function(s) { | |
| var text = document.createTextNode(s); | |
| var div = document.createElement("div"); | |
| div.appendChild(text); | |
| var cons = document.getElementById("console"); | |
| cons && cons.appendChild(div); | |
| } | 
  
    
      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
    
  
  
    
  | var myconsole = console; | |
| $.ajaxSetup({ | |
| dataType: 'text' | |
| }); | |
| (function($) { | |
| $.QueryString = (function(a) { | |
| if (a == "") return {}; | |
| var b = {}; | 
  
    
      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
    
  
  
    
  | genFutureTime :: UTCTime -> Gen UTCTime | |
| genFutureTime (UTCTime utctDay _utctDayTime) = do | |
| UTCTime | |
| <$> (ModifiedJulianDay <$> ((toModifiedJulianDay utctDay) +) <$> arbitrary) | |
| <*> (fromRational . toRational <$> choose (0::Double, 86400)) | 
  
    
      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
    
  
  
    
  | {-| This script builds any version of the Elm Platform from source. | |
| Before you use it, make sure you have the Haskell Platform with a recent | |
| version of cabal. | |
| To install a released version of Elm, you will run something like this: | |
| runhaskell BuildFromSource.hs 0.16 | |
| Before you do that, in some directory of your choosing, add | |
| wherever/Elm-Platform/0.16/.cabal-sandbox/bin to your PATH. | 
  
    
      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
    
  
  
    
  | #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| ################################################ | |
| # # | |
| # Script to download entire animorphs series # | |
| # # | |
| # Usage: python animorphs-downloader.py --help # | |
| # # | |
| ################################################# | 
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.