Skip to content

Instantly share code, notes, and snippets.

hg clone http://hg.openjdk.java.net/jdk/jdk
cd jdk/jdk
bash ./configure --with-boot-jdk=$(echo $JAVA_HOME)
# bash configure --with-boot-jdk=$(realpath $(echo $JAVA_HOME))
wget http://ftp.jaist.ac.jp/pub/apache//ant/binaries/apache-ant-1.10.7-bin.zip
unzip apache-ant-1.10.7-bin.zip
mv apache-ant-1.10.7 ~/bin/
export ANT_HOME=~/bin/apache-ant-1.10.7
bash ./bin/idea.sh
# IntelliJで"Open"からjdkディレクトリを開く
@wreulicke
wreulicke / ProjectJigsaw.md
Last active August 4, 2018 02:28
Project Jigsaw

Project Jigsaw 和訳元

初め、このプロジェクトのゴールは次のような物でした。

  • ライブラリや大きなアプリケーションをより簡単に構築、メンテナンスしやすくする
  • 基本的にはJava SEの実装のメンテナンスやセキュリティの向上のためで、一部はJDKも対象でした。
  • アプリケーションの高速化を簡単にするため
  • 小型計算デバイスや大量のクラウドへの利用のためにJava SEやJDKを小さくすることができるようにするため

これらのゴールを目指すため、我々はJava Se 9に向けて標準のモジュールシステムを設計・実装したました。

@okapies
okapies / t470s.md
Last active October 28, 2021 16:45
Ubuntu 16.04 on ThinkPad T470s

This is a document describing how to install Ubuntu 16.04 LTS on ThinkPad T470s.

My Hardware

  • CPU: Intel Core i7-7600U (2.80GHz, 4MB cache)
  • Graphics: Intel HD Graphics 620
  • Display: 14” WQHD (2560 X 1440) IPS Non-Touch Anti-Glare
  • Memory: 24GB DDR4 2133 MHz (8GB Onboard + 16GB)
  • SSD: PCIe-NVMe 256G OPAL 2.0
  • Wireless: Intel Dual Band Wireless AC (2x2) 8265 Bluetooth 4.1
  • Fingerprint Reader
@voluntas
voluntas / webrtc_for_work.rst
Last active November 6, 2024 03:49
仕事で WebRTC

仕事で WebRTC

日時:2023-01-15
作:@voluntas
バージョン:2023.1
url:https://voluntas.github.io/

この資料は以下の製品の宣伝を含みます。

@voluntas
voluntas / naze_erlang.rst
Last active October 31, 2023 03:33
なぜ Erlang/OTP を使い続けるのか
@brandur
brandur / redis-cell-informal-benchmarks.md
Last active June 3, 2023 02:31
redis-cell Informal Benchmarks

redis-cell Informal Benchmarks

I got these results when comparing CL.THROTTLE to SET on my early 2015 13" 3.1 GHz i7 MacBook Pro (not connected to a power source at the time):

$ ruby bench.rb
SET
Took total of: 5.975439 s
Per iteration: 5.975439e-05 s (0.05975439 ms)
@arcizan
arcizan / s3cli
Last active June 6, 2016 07:54
aws-cli wrapper for S3
#!/bin/zsh -fi
emulate -L zsh
setopt prompt_subst hist_reduce_blanks hist_ignore_dups hist_ignore_all_dups hist_ignore_space \
hist_expire_dups_first hist_save_no_dups # xtrace
typeset -r s3_scheme='s3:/'
typeset -r s3cli_home="${S3CLI_HOME:-$HOME/.s3cli}"
typeset -r s3cli_config_file="$s3cli_home/config"
@CMCDragonkai
CMCDragonkai / memory_layout.md
Last active November 11, 2024 13:39
Linux: Understanding the Memory Layout of Linux Executables

Understanding the Memory Layout of Linux Executables

Required tools for playing around with memory:

  • hexdump
  • objdump
  • readelf
  • xxd
  • gcore
@ykubota
ykubota / Usage.md
Last active November 10, 2021 08:10
Get specified jdk8 version sources from openjdk repository

Usage

bash get_specified_source.sh jdk8u77

Note: This script does not validate the input.

@voluntas
voluntas / webrtc.rst
Last active October 29, 2024 04:43
WebRTC コトハジメ