A JSON schema to describe tags, labels and folders for generic document organizing. It should be validated by http://jsonschemalint.com/ .
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
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ | |
/* | |
* Copyright (c) 2005,2006 INRIA | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License version 2 as | |
* published by the Free Software Foundation; | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
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
vbell on | |
escape ^z^z | |
startup_message off | |
defscrollback 10000 |
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 | |
if [ ! -e /etc/safedd.conf ]; then | |
echo /etc/safedd.conf is not found. | |
echo Each line should be regex for forbidden '"'of'"' parameter. | |
echo Example of /etc/safedd.conf : | |
echo ' .*dev/sda.*' | |
echo ' .*dev/md[0-9].*' | |
exit -1 | |
fi |
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
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6+0NcOzPeLn48cvNIqZabmr3KZ3YlzX3vrNH5WKJP5Q+QN0fU0k7jcOJ4HlNArwt5nCy8wofMkHfzIsVBiALTGqARguBMp56Q8GcCgu1tyZl5P1GiANstnJfoZ7cSSfVLpKZDDFZXAP0eUr3oOiqVSlIBZ8L6zxBOwfzR3F+rUa75B/f4VZlr9tXq/sShiC7GGXJGOj840LqZUDKWV/4SqKsLHX1xwezgKtD3a8pG/n9gnp1bMaYveGseAHe5FtW4TFZS6SNQT49+43a923P+f8BpXKBmJDz4RYvMiR1xxZ/Altn0kjSSLvQDHHjIHAywe6qk7LpMXR4+OMdzw9diQ== sasaki@SASAKI64 |
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
<?php | |
// This file is part of Moodle - http://moodle.org/ | |
// | |
// Moodle is free software: you can redistribute it and/or modify | |
// it under the terms of the GNU General Public License as published by | |
// the Free Software Foundation, either version 3 of the License, or | |
// (at your option) any later version. | |
// | |
// Moodle is distributed in the hope that it will be useful, |
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
{ | |
"$schema": "http://json-schema.org/draft-03/schema#", | |
"id": "https://gist.github.com/TakashiSasaki/6568391/raw/tags-labels-folders.schema.json#", | |
"type": "object", | |
"properties": { | |
"name": { | |
"type": "string", | |
"required": true | |
}, | |
"y": { |
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
{ | |
"type": "object", | |
"properties": { | |
"x": { | |
"type": [ | |
"string", | |
"null" | |
], | |
"required": false, | |
"enum": [ |
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
// 文字列 挿入マクロ(秀丸エディタ用) | |
// 選択範囲の行頭に入力された文字列を挿入する | |
#cnt = selendy - seltopy; | |
$wrk = input("挿入する文字列を入力してください",""); | |
while( #cnt > 0 ) | |
{ | |
replacedown "^", $wrk, regular, inselect; | |
#cnt = #cnt - 1; | |
} | |
endmacro; |
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
//lambda, sim_countをコマンドライン引数として与える必要あり | |
#include "ns3/core-module.h" | |
#include "ns3/network-module.h" | |
#include "ns3/mobility-module.h" | |
#include "ns3/config-store-module.h" | |
#include "ns3/wifi-module.h" | |
#include "ns3/internet-module.h" | |
#include "ns3/propagation-module.h" | |
#include "ns3/olsr-helper.h" |