Skip to content

Instantly share code, notes, and snippets.

View niceume's full-sized avatar

niceume

  • Tokyo
View GitHub Profile

Install Java 8 in Linux Mint

Install JDK

Just download JDK, and extract.

Download appropriate JDK. (i586, amd64. This depends on your linux system. If you choose different one, the system cannot recognize the executable files.)

cd ~/Downloads
@niceume
niceume / Q_q_string.rb
Last active August 29, 2015 14:13
Ruby %Q %q are used to create String
# When creating String, usually double quotations or single quotations are used.
# In double quotations, #{ var } can be used. \ should work.
# In single quotations, \ also should work.
"Hello, everyone"
'Hi, everyone'
"Hello, \" everyone"
'Hi, \' everyone'
greeting = "Good morning "
@niceume
niceume / .cshrc
Last active April 8, 2021 22:20
.cshrc
#
# Written by niceume
# 2013 July. 11
#
# also refer to src/share/skel/dot.cshrc
# .cshrc - csh resource script, read at beginning of execution by each shell
# see also csh(1), environ(7).