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
| [w4alpha.MainController$A4Command.withholdingPercentage.validator.error.w4alpha.MainController$A4Command.withholdingPercentage | |
| w4alpha.MainController$A4Command.withholdingPercentage.validator.error.withholdingPercentage | |
| w4alpha.MainController$A4Command.withholdingPercentage.validator.error.java.math.BigDecimal | |
| w4alpha.MainController$A4Command.withholdingPercentage.validator.error | |
| mainController$A4Command.withholdingPercentage.validator.error.w4alpha.MainController$A4Command.withholdingPercentage | |
| mainController$A4Command.withholdingPercentage.validator.error.withholdingPercentage | |
| mainController$A4Command.withholdingPercentage.validator.error.java.math.BigDecimal | |
| mainController$A4Command.withholdingPercentage.validator.error | |
| w4alpha.MainController$A4Command.withholdingPercentage.validator.invalid.w4alpha.MainController$A4Command.withholdingPercentage | |
| w4alpha.MainController$A4Command.withholdingPercentage.validator.invalid.withholdingPercentage |
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
| private String camelCaser(String input) { | |
| if (!input) return null | |
| String[] splitInput = input.split(" ") | |
| if(splitInput.length == 1) return input | |
| String camelCase = splitInput[0] | |
| for (int i = 1; i<splitInput; i++) { | |
| camelCase += splitInput[i].capitalize() | |
| } | |
| return camelCase | |
| } |
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
| 1 uib-rf-gw.uib.no (129.177.64.1) 0.553 ms 0.371 ms 0.279 ms | |
| 2 uib-bt-gw.uib.no (129.177.1.1) 0.404 ms 0.368 ms 0.365 ms | |
| 3 bergen-gw2.uninett.no (158.37.1.189) 1.133 ms 0.599 ms 0.614 ms | |
| 4 ifi2-gw.uninett.no (128.39.255.125) 6.919 ms 6.355 ms 6.368 ms | |
| 5 oslo-gw1.uninett.no (128.39.230.117) 6.270 ms | |
| oslo-gw1.uninett.no (128.39.230.113) 6.051 ms | |
| oslo-gw1.uninett.no (128.39.230.117) 6.880 ms | |
| 6 oslo-gw.uninett.no (128.39.255.105) 6.154 ms | |
| oslo-gw.uninett.no (128.39.255.225) 6.186 ms | |
| oslo-gw.uninett.no (128.39.255.105) 6.303 ms |
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 no.cipr.safari.actors | |
| import org.codehaus.groovy.grails.plugins.springsecurity.GormUserDetailsService | |
| import org.codehaus.groovy.grails.plugins.springsecurity.GrailsUserDetailsService | |
| import org.codehaus.groovy.grails.plugins.springsecurity.SpringSecurityUtils | |
| import org.springframework.security.core.GrantedAuthority | |
| import org.springframework.security.core.userdetails.UserDetails | |
| import org.springframework.security.core.userdetails.UsernameNotFoundException | |
| class CustomGormUserDetailsService extends GormUserDetailsService implements GrailsUserDetailsService{ |
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
| MessageDigest md = MessageDigest.getInstance("SHA1") //get digester | |
| String yourSexyHashKey = new BigInteger(1,md.digest((yourUuidString).getBytes())).toString(16) |
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
| <VirtualHost *:80> | |
| ServerName redacted.example.com | |
| ErrorLog /var/log/apache2/redacted.example.com.ajp.error.log | |
| CustomLog /var/log/apache2/redacted.example.com.ajp.log combined | |
| <Proxy redacted.example.com> | |
| AddDefaultCharset Off | |
| Order deny,allow | |
| Allow from all | |
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
| /*--- QUERY ---*/ | |
| self.query = { | |
| projects: ko.observableArray(<%= projectIDs %>), //we start with all projects checked | |
| outcrops: ko.observableArray([]), | |
| grossDepositionalEnvironment: ko.observable(""), | |
| depositionalEnvironment: ko.observable(""), | |
| mainClimate: ko.observableArray([]), | |
| depositionalSubEnvironment: ko.observable(""), | |
| architecturalElement: ko.observable(""), | |
| //filters |
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
| def crit = Teacher.createCriteria() | |
| def teacherList = crit.list { | |
| classes { | |
| eq('id', classInstance.id) | |
| } | |
| } |
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
| <?php | |
| //============================================================+ | |
| // File name : example_001.php | |
| // Begin : 2008-03-04 | |
| // Last Update : 2013-05-14 | |
| // | |
| // Description : Example 001 for TCPDF class | |
| // Default Header and Footer | |
| // | |
| // Author: Nicola Asuni |
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
| /* jshint node: true */ | |
| 'use strict'; | |
| var gulp = require('gulp'), | |
| g = require('gulp-load-plugins')({lazy: false}), | |
| noop = g.util.noop, | |
| es = require('event-stream'), | |
| queue = require('streamqueue'), | |
| lazypipe = require('lazypipe'), | |
| stylish = require('jshint-stylish'), |