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
| ERROR 12 Jun 2014 14:08:17,392 GPlannerDropDowns - GPlannerDropDowns: Could not load What If Degrees | |
| java.lang.Exception: SQL Error in finding WhatIfDegree by instId | |
| at edu.umn.web.gradplanner.model.common.WhatIfDegreeHome.findByInstId(WhatIfDegreeHome.java:69) | |
| at edu.umn.web.gradplanner.GPlannerDropDowns.loadWhatIfDegrees(GPlannerDropDowns.java:223) | |
| at edu.umn.web.gradplanner.GPlannerDropDowns.initialize(GPlannerDropDowns.java:130) | |
| at edu.umn.web.gradplanner.GPlannerApplicationManagerListener.initApp(GPlannerApplicationManagerListener.java:115) | |
| at edu.umn.web.gradplanner.GPlannerApplicationManagerListener.managerStarted(GPlannerApplicationManagerListener.java:75) | |
| at edu.umn.web.pillar.service.manager.ServiceManagerFacade.addManagerListener(ServiceManagerFacade.java:96) | |
| at edu.umn.web.pillar.service.manager.ServiceManagerClient.registerManagerListener(ServiceManagerClient.java:114) | |
| at edu.umn.web.gradplanner.GPlannerApplicationContextListener.initializeApplication(GPlannerApplicationContextListener.j |
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
| for FILE in ~/.emacs.d/groovy-emacs-modes/*.el; do echo ln -s ${FILE} ${FILE#~/.emacs.d/groovy-emacs-modes/}; done |
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
| chargingPDestruction <- function(enchantment) { enchantment/7 } | |
| chargingPSurvival <- function(enchantment) { 1 - chargingPDestruction(enchantment) } | |
| ringEnchantmentSeq <- seq(0,7) | |
| ring <- data.frame( enchantment = ringEnchantmentSeq , | |
| pDestruction = chargingPDestruction(ringEnchantmentSeq), | |
| pSurvival = chargingPSurvival(ringEnchantmentSeq), | |
| expectedEnchantmentAfterCharging = (chargingPSurvival(ringEnchantmentSeq)*(ringEnchantmentSeq+1)) ) | |
| plot(ring[['enchantment']], ring[['pDestruction']], pch=4, col='red', xlab='initial enchantment', ylab='probability', main='Ring Charging Survival') |
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
| (~){dispader}03:14pm] gvm list groovy | |
| ================================================================================ | |
| Available Groovy Versions | |
| ================================================================================ | |
| 2.4.0-rc-2 * 2.2.1 * 2.0.5 1.8.0 | |
| 2.4.0-rc-1 * 2.2.0 2.0.4 1.7.9 | |
| 2.4.0-beta-4 * 2.1.9 2.0.3 1.7.8 | |
| 2.4.0 2.1.8 2.0.2 1.7.7 | |
| 2.3.9 2.1.7 2.0.1 1.7.6 |
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 edu.umn.github.ghuman | |
| import spock.lang.Specification | |
| class TribbleSpecification extends Specification { | |
| def "feed a tribble, get more tribbles"() { | |
| given: | |
| Tribble tribble = new Tribble() | |
| when: |
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
| ;; Here There Be Tygers | |
| ;;; turn on syntax highlighting | |
| (global-font-lock-mode 1) | |
| ;;; try to manually load the .emacs.d path | |
| (add-to-list 'load-path "~/.emacs.d/") | |
| ;;; use markdown-mode when file end in .md | |
| (add-to-list 'auto-mode-alist '("\.md" . markdown-mode)) |
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
| buildscript { | |
| repositories { jcenter() } | |
| dependencies { classpath 'org.unbroken-dome.gradle-plugins:gradle-testsets-plugin:1.0.2' } | |
| } | |
| apply plugin: 'eclipse' | |
| apply plugin: 'groovy' | |
| repositories { jcenter() } |
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
| jrubyExec 'rubygems:selenium-webdriver:2.45.0' | |
| def gemfile = new File('./src/integrationTest/ruby/Gemfile') | |
| def gemDefinitionRegex = /gem '(.*)', '(.*)'/ | |
| if ( gemfile.exists() ) { | |
| gemfile.eachLine { | |
| def matcher = ( it =~ gemDefinitionRegex ) | |
| if ( matcher ) { logger.quiet "rubygems:${matcher[0][1]}:${matcher[0][2]}" } | |
| } | |
| } |
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
| dig axfr oit.umn.edu @128.101.101.1 | grep goat |
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
| "We provide you the tools to please yourself." —Ingrid |