美学(Aesthetics)は1735年から。 芸術学(Science of Art)は1906年から。
This file contains hidden or 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
| import java.util.*; | |
| import controlP5.*; | |
| class Date { | |
| String body; | |
| HashSet<String> ok = new HashSet<String>(); | |
| Date (String b) { | |
| body = b; | |
| } |
This file contains hidden or 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
| android-sdk freetype gradle libevent lua pcre texinfo | |
| atk gauche grails libffi lv php theora | |
| atkmm gd groovy libgcrypt mcrypt pidof tmux | |
| autojump gdbm harfbuzz libgpg-error md5sha1sum pixman tree | |
| base64 gdk-pixbuf haskell-platform libicns mecab pkg-config v8 | |
| bdw-gc gettext hevea libmpc mecab-ipadic python vimpager | |
| cairo ghc icu4c libntlm mercurial rea |
This file contains hidden or 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 'benchmark' | |
| re_alt = Regexp.compile('sa|st|tw|tu') | |
| re_opt = Regexp.compile('s[at]|t[wu]') | |
| match = 'abcdefghijklmnopqrstuvwxyz' | |
| not_match = 'sssstttttttttssssssssuuuuu' | |
| ntimes = 100000; | |
| Benchmark.bm(8) do |x| | |
| x.report('alt') { ntimes.times{ re_alt.match(match) } } |
This file contains hidden or 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
| #define YYSTYPE char * | |
| extern int yylex (); | |
| extern void init_yyc (char **); | |
| extern void re_parse (char *); |
This file contains hidden or 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
| %{ | |
| #include <stdio.h> | |
| #include <string.h> | |
| #include "relex.h" | |
| //--------------------------------------------------------------------------- | |
| //#define YYDEBUG 1 | |
| //#define YYERROR_VERBOSE 1 | |
| //int yydebug = 1; |
This file contains hidden or 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
| 18a19,20 | |
| > #include "relex.c" | |
| > #include "re_parse.c" | |
| 3545a3548,3554 | |
| > static VALUE | |
| > rb_reg_parse (VALUE re) | |
| > { | |
| > re_parse( RREGEXP_SRC_PTR(re) ); | |
| > return re; | |
| > } |
This file contains hidden or 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
| #!/bin/sh | |
| for i in `jot $1` | |
| do | |
| wget --no-verbose --post-data "_method=POST&data%5BEntry%5D%5Bid%5D=32" --user-agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:24.0) Gecko/20100101 Firefox/24.0" http://124.37.251.169/cpf/stu_003/votes/index/page:1 -O /dev/null | |
| sleep 1 | |
| done |