How to run (example)
$ ls
foobar.h
$ cat foobar.h
// foobar.h
typedef enum _BarType {
BAR_TYPE_A,
BAR_TYPE_B
} BarType;
| tgif-QPL-4.2.2.tar.gz | |
| /tgif-QPL-4.2.3.tar.gz | |
| /tgif-QPL-4.2.4.tar.gz | |
| /tgif-QPL-4.2.5.tar.gz |
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <match> | |
| <test name="lang"> | |
| <string>ja</string> | |
| </test> | |
| <test name="family"> | |
| <string>monospace</string> | |
| </test> |
| Notification.requestPermission(function(status) { | |
| var NotificationCount = require("common/cbaToolMenu").NotificationCount; | |
| var doSuccess_orig = NotificationCount.doSuccess; | |
| NotificationCount.doSuccess = function (e) { | |
| doSuccess_orig(e); | |
| var text = ""; | |
| if (e.updateCount > 0) { text += "新着情報x" + e.updateCount + "\n"; } | |
| if (e.goodCount > 0) { text += "いいね!x" + e.goodCount + "\n"; } | |
| if (e.enqueteCount > 0) { text += "アンケートx" + e.enqueteCount + "\n"; } |
| /* vim:fileencoding=utf-8 tabstop=2 expandtab shiftwidth=2 softtabstop=0: | |
| * | |
| * DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| * Version 2, December 2004 | |
| * | |
| * Copyright (C) 2014 @cat_in_136 | |
| * | |
| * Everyone is permitted to copy and distribute verbatim or modified | |
| * copies of this license document, and changing it is allowed as long | |
| * as the name is changed. |
| /* | |
| * Transparent Filesystem, for study FUSE | |
| * Copyright (C) 2014 @cat_in_136 | |
| * | |
| * Avarilable under MIT License <http://opensource.org/licenses/mit-license.php> | |
| * | |
| * How to build: | |
| * gcc -Wall -o transparent_fuse transparent_fuse.c `pkg-config fuse --cflags --libs` | |
| * | |
| * How to use: |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>non-compress-zip-comparison-text</title> | |
| <script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.js"></script> | |
| <!-- Preparation code --> | |
| <!-- inspired by http://jsperf.com/zlib-comparison-text-1musk10/3, | |
| http://jsperf.com/zip-comparison-text |
How to run (example)
$ ls
foobar.h
$ cat foobar.h
// foobar.h
typedef enum _BarType {
BAR_TYPE_A,
BAR_TYPE_B
} BarType;
| html, body, #map_canvas { | |
| margin: 0; | |
| padding: 0; | |
| height: 100%; | |
| } |
| // vim: filetype=cpp fileencoding=UTF-8 shiftwidth=2 tabstop=2 autoindent expandtab | |
| // | |
| // compile | |
| // % g++ -o super_long_exposure super_long_exposure.cpp -fopenmp -O3 -Wall `pkg-config --libs --cflags opencv` -lm | |
| #include <opencv2/opencv.hpp> | |
| #include <iostream> | |
| #include <climits> | |
| #include <cassert> |
| #include <stdlib.h> | |
| #include <stdio.h> | |
| #include <fcntl.h> | |
| #include <libtar.h> | |
| int main(int argc, char *argv[]) { | |
| TAR *tar = NULL; | |
| int ret = 0; | |
| int exitcode = 0; |