This file contains 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
<?xml version="1.1" encoding="UTF-8"?> | |
<!DOCTYPE keyboard SYSTEM "file://localhost/System/Library/DTDs/KeyboardLayout.dtd"> | |
<!----> | |
<!--Last edited by Ukelele version 359 on 2023-02-10 at 13:53 (CET)--> | |
<keyboard group="0" id="8014" name="Hungarian copy" maxout="1"> | |
<layouts> | |
<layout first="0" last="0" mapSet="138" modifiers="30"/> | |
</layouts> | |
<modifierMap id="30" defaultIndex="0"> | |
<keyMapSelect mapIndex="0"> |
This file contains 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 arpad.kosa; | |
import org.junit.Assert; | |
import org.junit.Test; | |
import java.io.*; | |
public class TestOneNumberGame { | |
private static final String SAMPLE_GAME = "1 1 2 3 5 4 Arpad\n1 1 2 3 5 3 Elod\n2 2 2 2 2 2 Ond"; | |
private static final String SAMPLE_GAME_NO_ONE = "3 1 2 3 5 4 Arpad\n3 1 2 3 5 3 Elod\n2 2 2 2 2 2 Ond"; |
This file contains 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 arpad.kosa; | |
import java.io.*; | |
import java.util.*; | |
import java.util.regex.Pattern; | |
import java.util.stream.Collectors; | |
public class OneNumberGame { | |
List<Player> players = new ArrayList<>(); |
This file contains 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 packt.java9.network.connect; | |
import java.util.function.Function; | |
public class RuntTimeExceptionWrapper { | |
public static <T> T lame(ExceptionalSupplier<T> z) { | |
try { | |
return z.apply(); | |
} catch (Exception e) { | |
throw new WrapperException(e); |
This file contains 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 javax0.j9regex.samples; | |
import org.junit.Test; | |
import java.util.concurrent.atomic.AtomicInteger; | |
import java.util.regex.Matcher; | |
import java.util.regex.Pattern; | |
import java.util.stream.Collectors; | |
import static org.junit.Assert.assertEquals; |
This file contains 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 pakage.subpackage.evensubberpackage; | |
import org.junit.Assert; | |
import org.junit.Test; | |
public class WhatIsMyName { | |
@Test | |
public void classHasName() { | |
final Class<?> klass = WhatIsMyName.class; | |
final String simpleNameExpected = "WhatIsMyName"; |