Note that this means that non-existent times, such as "missing hours" during daylight savings conversion, will never match, caus- ing jobs scheduled during the "missing times" not to be run. Similarly, times that occur more than once (again, during daylight savings conversion) will cause matching jobs to be run twice.
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
| data FizzBuzz = FizzBuzz | |
| | JustInt Int | |
| | Fizz | |
| | Buzz | |
| instance Show FizzBuzz where | |
| show FizzBuzz = "FizzBuzz" | |
| show Fizz = "Fizz" | |
| show Buzz = "Buzz" | |
| show (JustInt x) = show 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
| from x import * | |
| import x | |
| x.y == y # True | |
| def y(): return Bollox | |
| x.y == y # True | |
| x.y() == Bollox # True |
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
| Genderova Expertni Komora ČR financovaná z Norských Grantů ... | |
| Zaujali mě ty Norské Granty, tak jsem trochu hledal a sice pořád | |
| nevím | |
| co to je vlastně zač ale vypadá to že jde o jakousi entitu zkrze kterou | |
| Brusel doluje peníze z Norska. | |
| Norské a EEA granty beží paralelně od roku 2004 a měli by běžet do 2015 | |
| s možným přesahem do roku 2017 (dokončení zasponzorovaných programů). |
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
| Sedím v kupé s žoviálním starcem, ještě žoviálnějším mladíkem a starou ženou. | |
| Mladík mě občas oslovuje "kolego", což jen těžko odolávám oplácet podobně | |
| žoviálním "zmrde". |
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
| https://github.com/yaccz/code-samples-python-code-grammar |
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
| curl localhost:8080 -d @json |
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
| yac@rainbowdash % g ci -a | |
| [master ac6f783] Add g-auto-update repo | |
| 1 file changed, 6 insertions(+) | |
| -------------------------------------------------------------------------------- | |
| ~/data/hd/gitolite/private.git/conf git:master | |
| yac@rainbowdash % g psh | |
| To example.com:gitolite-admin.git | |
| ! [rejected] master -> master (fetch first) | |
| error: failed to push some refs to 'example.com:gitolite-admin.git' | |
| hint: Updates were rejected because the remote contains work that you do |
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
| # -*- coding: utf-8 -*- | |
| import asyncio, functools | |
| from nose.tools import raises | |
| class ExitFailure(RuntimeError): | |
| def __init__(self, exit_code): | |
| self.exit_code = exit_code | |
| class ExitSuccess: |
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 OverloadedStrings #-} | |
| module YGit.Forking | |
| ( headCommit | |
| , Repo (..) | |
| ) where | |
| import Git | |
| import qualified Git.Libgit2 as Lg | |
| import Control.Monad.Reader | |
| import Control.Monad.Logger |