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
find . -name "*.css" -print | xargs grep -o '\.[a-zA-Z]*' | sed 's/^[\.\/_a-zA-Z]*:\.\([a-zA-Z]*\)$/\1/' | sort | uniq |
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 de.lray.intercom.flattener; | |
import org.junit.Assert; | |
import org.junit.Test; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class Flattener { |
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 de.lray.intercom.highscore; | |
import de.lray.intercom.pattern.Strategy; | |
import org.junit.Assert; | |
import org.junit.Test; | |
import java.io.*; | |
import static org.mockito.Mockito.*; |
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 de.lray.intercom.highscore; | |
import java.io.FileNotFoundException; | |
import java.io.IOException; | |
/** | |
* Runner class for command line calls. | |
* | |
* Extracts the given parameter, transforms them to the sub components and shows the result. | |
*/ |
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 de.lray.intercom.highscore; | |
import de.lray.intercom.pattern.Strategy; | |
import org.junit.Before; | |
import org.junit.Test; | |
import java.util.*; | |
import static org.junit.Assert.assertArrayEquals; |
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 de.lray.intercom.pattern; | |
public interface Strategy { | |
void execute(Integer number); | |
Integer[] getResult(); | |
} |
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
uses java.lang.Integer | |
uses java.util.Arrays | |
uses java.lang.Character | |
uses java.util.ArrayList | |
class ModuloTenProcessor { | |
/** | |
* Validate a number string using Luhn algorithm | |
*/ |
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
uses java.lang.Character | |
uses java.lang.Integer | |
uses java.util.ArrayList | |
class ModuloTenRecursiveProcessor { | |
/** | |
* Validate a number string using Modulo10 rekursiv | |
*/ | |
public static function checkSum(numberString:String):int { |
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
// ==UserScript== | |
// @name Automatic Login | |
// @namespace browser | |
// @include http://localhost:8080/url* | |
// @version 2 | |
// ==/UserScript== | |
document.getElementById('username').value="login"; | |
document.getElementById('password').value="password"; | |
document.getElementById('loginButton').click(); |
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
set ANT_OPTS=-agentlib:jdwp=transport=dt_socket,address=5005,server=y,suspend=y |
OlderNewer