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 org.hogel; | |
import java.io.FileNotFoundException; | |
import java.net.URL; | |
import org.slf4j.LoggerFactory; | |
import ch.qos.logback.classic.LoggerContext; | |
import ch.qos.logback.classic.joran.JoranConfigurator; | |
import ch.qos.logback.core.joran.spi.JoranException; |
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
server { | |
listen 8888; | |
server_name localhost; | |
location / { | |
root /tmp/data; | |
error_page 404 = @data; | |
} | |
location @data { |
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
function Unpack(alphabets) { | |
var pack = { | |
base: alphabets.length, | |
unpack: function(enc) | |
{ | |
if (enc.length == 0) | |
return ""; | |
var base = alphabets.length; | |
var packs = enc.split(" "); |
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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
[ -z "$PS1" ] && return | |
if [ $TTY ] ; then | |
stty stop 'undef' | |
fi |
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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
[ -z "$PS1" ] && return | |
if [ $TTY ] ; then | |
stty stop 'undef' | |
fi |
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
.* |
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
snapshot images. |

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
@namespace url(http://www.w3.org/1999/xhtml); | |
/** base setting **/ | |
@-moz-document domain(mai-net.net), | |
url-prefix(http://suimin5088.blog58.fc2.com/), | |
url-prefix(http://www.geocities.jp/kazuya_hamaguchi/), | |
url-prefix("http://rbp53.nobody.jp/"), | |
url-prefix(http://sacks.tuzikaze.com/ss/), | |
url-prefix(http://shrine-of-miya.hp.infoseek.co.jp/), | |
url-prefix(http://j-mito.hp.infoseek.co.jp/), |
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
#!/bin/sh | |
cdddir=$HOME/.cdd | |
cddfile=$cdddir/cddfile | |
cddtmp=$cdddir/cddtmp | |
cddmax=20 | |
function cdd_init() { | |
if [ ! -d $cdddir ]; then | |
mkdir $cdddir |