How to run (example)
$ ls
foobar.h
$ cat foobar.h
// foobar.h
typedef enum _BarType {
BAR_TYPE_A,
BAR_TYPE_B
} BarType;
How to run (example)
$ ls
foobar.h
$ cat foobar.h
// foobar.h
typedef enum _BarType {
BAR_TYPE_A,
BAR_TYPE_B
} BarType;
| <!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 |
| /* | |
| * 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: |
| /* 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. |
| 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"; } |
| <?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> |
| 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 |
My answer to Santiago's post : "Five programming problems every Software Engineer should be able to solve in less than 1 hour"
Note:
| module.exports = function (grunt) { | |
| grunt.initConfig({ | |
| browserify: { | |
| dist: { | |
| files: { | |
| "bundle.js": "index.js" | |
| }, | |
| options: { | |
| require: [ | |
| "p-promise", |