Skip to content

Instantly share code, notes, and snippets.

View jca02266's full-sized avatar

Koji Arai jca02266

View GitHub Profile
@jca02266
jca02266 / ColumnNum.java
Last active December 4, 2016 21:39
sample code for POI
package sample;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface ColumnNum {
@jca02266
jca02266 / file0.txt
Last active September 14, 2019 22:24
powershellでパーサコンビネータ ref: https://qiita.com/jca02266/items/b7e1dc21d8d537827290
$x = $target[0..(0+4-1)]
$y = $target[4..(4+3-1)]
@jca02266
jca02266 / burndownchart.css
Last active August 29, 2015 14:04
D3.jsでバーンダウンチャートを書く ref: http://qiita.com/jca02266/items/3133c008c45dd144cf8f
.axis path,
.axis line {
fill: none;
stroke: black;
shape-rendering: crispEdges;
stroke-width: 1.5px;
}
.axis text {
font-family: sans-serif;
font-size: 11px