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.0" encoding="UTF-8" standalone="yes"?> | |
<a:fontScheme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="jyukutyo"> | |
<a:majorFont> | |
<a:latin typeface="Helvetica"/> | |
<a:ea typeface="Meiryo"/> | |
<a:cs typeface=""/> | |
</a:majorFont> | |
<a:minorFont> | |
<a:latin typeface="Helvetica"/> | |
<a:ea typeface="Meiryo"/> |
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
public class Temp { | |
public static void main(String[] args) { | |
System.out.println(1); | |
System.out.println(127); | |
System.out.println(1000); | |
System.out.println(10000000); | |
System.out.println(100000000000000000l); | |
System.out.println(100000000000000000d); | |
} | |
} |
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.0" encoding="UTF-8"?> | |
<!DOCTYPE keyboard PUBLIC "" "file://localhost/System/Library/DTDs/KeyboardLayout.dtd"> | |
<!--Created by Ukelele version 2.2.8 on 2015-04-03 at 16:32 (GMT+9)--> | |
<!--Last edited by Ukelele version 2.2.8 on 2015-04-03 at 16:35 (GMT+9)--> | |
<keyboard group="0" id="4139" name="Emacs_beats_vi" maxout="1"> | |
<layouts> | |
<layout first="0" last="17" modifiers="f4" mapSet="16c"/> | |
<layout first="18" last="18" modifiers="f4" mapSet="984"/> | |
<layout first="21" last="23" modifiers="f4" mapSet="984"/> | |
<layout first="30" last="30" modifiers="f4" mapSet="984"/> |
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
public List<Integer> primeNumbersTill(int n) { | |
return IntStream.rangeClosed(2, n) | |
.filter(x -> isPrime(x)) | |
.boxed() | |
.collect(Collectors.toList()); | |
} | |
private boolean isPrime(int number) { | |
return IntStream.rangeClosed(2, (int) (Math.sqrt(number))) | |
.allMatch(n -> number % n != 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
cmake_minimum_required(VERSION 3.7) | |
project(hotspot) | |
include_directories( | |
src/hotspot/cpu | |
src/hotspot/os | |
src/hotspot/os_cpu | |
src/hotspot/share | |
src/hotspot/share/precompiled | |
src/hotspot/share/include | |
src/java.base/unix/native/include |
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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "AllowGroupToSeeBucketListInTheConsole", | |
"Action": [ | |
"s3:ListAllMyBuckets" | |
], | |
"Effect": "Allow", | |
"Resource": [ |
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.0" encoding="UTF-8"?> | |
<!DOCTYPE keyboard PUBLIC "" "file://localhost/System/Library/DTDs/KeyboardLayout.dtd"> | |
<!--Created by Ukelele version 2.2.8 on 2015-04-03 at 16:32 (GMT+9)--> | |
<!--Last edited by Ukelele version 2.2.8 on 2015-04-03 at 16:35 (GMT+9)--> | |
<keyboard group="0" id="4139" name="Emacs_beats_vi" maxout="1"> | |
<layouts> | |
<layout first="0" last="17" modifiers="f4" mapSet="16c"/> | |
<layout first="18" last="18" modifiers="f4" mapSet="984"/> | |
<layout first="21" last="23" modifiers="f4" mapSet="984"/> | |
<layout first="30" last="30" modifiers="f4" mapSet="984"/> |
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 com.sakatakoichi; | |
import java.nio.file.Paths; | |
import net.bytebuddy.ByteBuddy; | |
import net.bytebuddy.dynamic.DynamicType; | |
import net.bytebuddy.dynamic.loading.ClassLoadingStrategy; | |
import net.bytebuddy.implementation.FixedValue; | |
import static net.bytebuddy.matcher.ElementMatchers.isDeclaredBy; | |
import net.bytebuddy.utility.JavaConstant; |
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
java | |
--module-path=/Users/jyukutyo/code/graal/sdk/mxbuild/modules/org.graalvm.graal_sdk:/Users/jyukutyo/code/graal/truffle/mxbuild/modules/com.oracle.truffle.truffle_api.jar | |
--upgrade-module-path=/Users/jyukutyo/code/graal/compiler/mxbuild/modules/jdk.internal.vm.compiler | |
-XX:+UnlockExperimentalVMOptions | |
-XX:+EnableJVMCI | |
-XX:+UseJVMCICompiler | |
-XX:-TieredCompilation | |
-XX:+PrintCompilation | |
-XX:CompileOnly=IGV::average | |
-XX:CompileCommand=quiet |
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
dig @8.8.8.8 example.com MX |
NewerOlder