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
.axis path, | |
.axis line { | |
fill: none; | |
stroke: black; | |
shape-rendering: crispEdges; | |
stroke-width: 1.5px; | |
} | |
.axis text { | |
font-family: sans-serif; | |
font-size: 11px |
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
$x = $target[0..(0+4-1)] | |
$y = $target[4..(4+3-1)] |
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 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 { |
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
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.7.0//EN" | |
"http://gwtproject.org/doctype/2.7.0/gwt-module.dtd"> | |
<module rename-to="App"> | |
<inherits name="com.google.gwt.user.User"/> | |
<inherits name="org.hibernate.validator.HibernateValidator" /> | |
<replace-with class="sample.webapp.client.ValidatorFactory"> | |
<when-type-is class="javax.validation.ValidatorFactory" /> | |
</replace-with> |
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 sample; | |
import java.io.File; | |
import java.io.IOException; | |
import java.net.URL; | |
import java.util.ArrayList; | |
import java.util.Enumeration; | |
import java.util.List; | |
import java.util.regex.Pattern; |
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 sample; | |
import java.io.File; | |
import java.io.IOException; | |
import java.net.URL; | |
import java.util.ArrayList; | |
import java.util.Enumeration; | |
import java.util.List; | |
import java.util.regex.Pattern; |
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
/* | |
* Copyright 2010 Google Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | |
* use this file except in compliance with the License. You may obtain a copy of | |
* the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
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
--- git-svn.perl.orig 2017-07-09 03:29:19.208317700 +0900 | |
+++ git-svn.perl 2017-07-11 23:17:29.997533800 +0900 | |
@@ -16,6 +16,7 @@ | |
use File::Spec; | |
use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/; | |
use Memoize; | |
+use POSIX qw/strftime/; | |
use Git::SVN; | |
use Git::SVN::Editor; |
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
require 'tsort' | |
# usage | |
=begin | |
$ cat depends | |
t1: t2 | |
t2: t3 | |
t3: | |
t4: t1 |
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
// | |
// sakura用桁揃えマクロ | |
// | |
// drived from http://zenu.xrea.jp (http://zenu.xrea.jp/data/quickint.js.txt) | |
// | |
// 使い方: | |
// 1. このファイルを %AppData%\sakura に配置する | |
// 2. 桁揃えしたい範囲を選択する | |
// 3. ツール → 「名前を指定してマクロを実行」でこのファイルを選択する | |
// |
OlderNewer