Skip to content

Instantly share code, notes, and snippets.

@SAMMY7th
SAMMY7th / jjug_ccc_2017.md
Last active May 27, 2017 07:38
JavaエンジニアのためのScala入門 #jjug_ccc #ccc_l2
@SAMMY7th
SAMMY7th / Makefile
Last active December 10, 2015 10:43
2015/09/26 いまどきのフロントエンド環境構築(関西フロントエンドUG) 発表用サンプル
PATH := node_modules/.bin:$(PATH)
all: build
.PHONY: all init build styles js html image clean
init:
npm init
npm install -D node-sass postcss-cli autoprefixer clean-css uglify-js
mkdir -p app/styles app/scripts app/images
@SAMMY7th
SAMMY7th / Practice7.java
Created March 6, 2015 10:21
TechInstitute大阪 2015/03/01 メソッド演習
/**
* このPractice7もクラスです。
* が、このクラスはまだみなさんに教えていない「static」という
* キーワードにより、インスタンスを作らなくてもメソッドを呼び出せています。
* 今は深く考えないようにしてください。staticを勉強してから、
* 改めてこのクラスを眺めてみてね。
*
* この演習では、メソッドにのみ着目してください。
* {} でくくられている範囲を意識するように。
*