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
| import XMonad | |
| import XMonad.Layout.IM | |
| import XMonad.Layout.PerWorkspace | |
| import XMonad.Layout.Reflect | |
| import XMonad.Config.Gnome | |
| main = xmonad gnomeConfig { | |
| layoutHook = onWorkspace "gimp" gimp $ layoutHook gnomeConfig | |
| ,modMask = mod4Mask | |
| ,workspaces = ["1","2","3","4","5","6","7","8","9","gimp"] |
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
| Config { fgColor = "white" | |
| , bgColor = "black" | |
| , position = Bottom | |
| , font = "xft:Terminus:size=10" | |
| , commands = [ Run StdinReader ] | |
| , sepChar = "%" | |
| , alignSep = "}{" | |
| , template = "%StdinReader% }{" | |
| } |
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
| {-# LANGUAGE TemplateHaskell, QuasiQuotes, OverloadedStrings #-} | |
| module Handler.Activities where | |
| import LoveBug | |
| import Utils | |
| import Data.Text (Text) | |
| import qualified Data.Text as T | |
| import Control.Applicative | |
| import Control.Monad |
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
| braden@twilights-library> jruby -S rake compile ~/src/mirah | |
| mkdir -p dist | |
| mkdir -p build | |
| Compiling Ruby sources | |
| Compiling Mirah sources | |
| Parsing... | |
| org/mirah/class_loader.mirah | |
| org/mirah/isolated_resource_loader.mirah | |
| org/mirah/ant/compile.mirah | |
| duby/lang/compiler/interfaces.duby |
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
| > jruby -S rake jar ~/src/mirah | |
| mkdir -p dist | |
| mkdir -p build | |
| Compiling Ruby sources | |
| Compiling Mirah sources | |
| Parsing... | |
| org/mirah/class_loader.mirah | |
| org/mirah/isolated_resource_loader.mirah | |
| org/mirah/ant/compile.mirah | |
| duby/lang/compiler/interfaces.duby |
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
| import Control.Monad | |
| import Data.List | |
| data Square = Blank | Box | X | |
| deriving (Eq) | |
| type Clue = [Int] | |
| -- returns all fits for a given clue in a row of the given length, regardless of matching its current state. |
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 is the configuration file for the 'cabal' command line tool. | |
| -- The available configuration options are listed below. | |
| -- Some of them have default values listed. | |
| -- Lines (like this one) beginning with '--' are comments. | |
| -- Be careful with spaces and indentation because they are | |
| -- used to indicate layout for nested sections. | |
| -- This configuration follows the layout of Haskell Platform on Mac OS X, |
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
| git clone https://git-wip-us.apache.org/repos/asf/cordova-plugman.git | |
| cd cordova-plugman | |
| npm install | |
| sudo npm link | |
| cd .. | |
| git clone https://git-wip-us.apache.org/repos/asf/cordova-cli.git | |
| cd cordova-cli | |
| git checkout master2 | |
| npm install | |
| sudo npm link |
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
| describe 'invites', -> | |
| it 'should allow sending an invite', -> | |
| browser().navigateTo('/app/index-e2e.html#/profile') | |
| input('send.invite_email', 'invite box').enter('invited@email.com') | |
| element('#invitebutton', 'send invite button').click() | |
| expect(binding('message')).toEqual('Invite sent to invited@email.com') | |
| expect(element('#message', 'success message window').text()).toEqual('Invite sent to invited@email.com') | |
| expect(element('#invitebox', 'invite box').val()).toEqual('') | |
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
| timetogetherApp.directive 'ttSpinner', -> | |
| scope: { waitFor: '=ttSpinner' } | |
| restrict: 'A' | |
| template: ''' | |
| <div ng-show="!waitFor" class="spinner"> | |
| <img src="/app/images/spinner.gif" /> | |
| </div> | |
| <div ng-show="waitFor" ng-transclude></div> | |
| ''' | |
| transclude: true |
OlderNewer