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
| ### Keybase proof | |
| I hereby claim: | |
| * I am kokotchY on github. | |
| * I am kokotchy (https://keybase.io/kokotchy) on keybase. | |
| * I have a public key whose fingerprint is 53F3 4D9F 35D9 082A 92E7 266D 06A4 DF49 7E07 C18B | |
| To claim this, I am signing this object: |
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
| [alias] | |
| hist = log --pretty=format:'%Cred%h%Creset %Cgreen(%ci)%Creset - %C(yellow)%d%Creset%s %C(bold blue)[%an/%cn]%Creset' --abbrev-commit |
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 QuasiQuotes, TypeFamilies, GeneralizedNewtypeDeriving, FlexibleContexts, TemplateHaskell, OverloadedStrings, GADTs, MultiParamTypeClasses #-} | |
| import Yesod | |
| import Database.Persist.Sqlite | |
| import Control.Monad.Trans.Resource (runResourceT) | |
| import Control.Monad.Logger (runStderrLoggingT, runNoLoggingT, MonadLogger, monadLoggerLog) | |
| import Control.Applicative (pure) | |
| share [mkPersist sqlSettings, mkMigrate "migrateAll"] [persistLowerCase| | |
| Person | |
| firstName String |
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
| #!/bin/awk -f | |
| BEGIN { | |
| inBuild = 0 | |
| foundBuild = 0 | |
| } | |
| $0 ~ /<build>/ { | |
| inBuild = 1 | |
| foundBuild = 1 |
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
| package quartzgrails | |
| class CronTrigger implements Serializable { | |
| String triggerName | |
| String triggerGroup | |
| String cronExpression | |
| static belongsTo = [trigger: Trigger] | |
| static mapping = { | |
| table "JBQRTZ_CRON_TRIGGERS" |