- ใญใฃใฉใฏใฟใผใ็ผ้ก้ผ
- ็ฅๆงใๆใใ
- ๅๅไฝใชใใ ใใ
- ็ฐใชใใจใใฃใฟใผใ IED ้ใงใฎไธ่ฒซๆงใฎใใใณใผใใฃใณใฐในใฟใคใซใๅฎ็พฉใใกใณใใใณใน
package main | |
import ( | |
"fmt" | |
"math/rand" | |
"os" | |
"os/signal" | |
"sync" | |
"syscall" | |
"time" |
package main | |
import ( | |
"fmt" | |
"log" | |
"net" | |
"os" | |
"os/signal" | |
"reflect" | |
"syscall" |
use utf8; | |
use strict; | |
use warnings; | |
$SIG{'URG'} = sub { | |
print "Recieved URG signal\n"; | |
}; | |
print "hi\n"; |
package main | |
import ( | |
"fmt" | |
"log" | |
"net" | |
"os" | |
"os/signal" | |
"syscall" | |
"time" |
package main | |
import ( | |
"bufio" | |
"log" | |
"net" | |
"strings" | |
) | |
const RemoteAddress = "localhost" |
# coding: utf-8 | |
require './access_log' | |
entries = [] | |
task :load do | |
logfile = ENV["LOGFILE"] || "access_log" | |
puts "loading #{logfile}." | |
File.open(logfile) do |log| | |
AccessLog.each_entry(log) do |entry| | |
entries << entry |
#!/bin/bash | |
# ๆๅญใณใผใใUTF-8๏ผๆน่กใณใผใใLFใซๅคๆใใ | |
# nkfใณใใณใใๅฟ ่ฆ | |
if [ $# = 0 ]; then | |
echo "usage: win2unix filename" | |
exit 1 | |
fi |
<?php | |
if (file_exists($_SERVER['DOCUMENT_ROOT'] . $_SERVER['REQUEST_URI'])) { | |
return false; | |
} | |
include $_SERVER['DOCUMENT_ROOT'] . '/index.php'; |
#!/Users/furu/Gentoo/bin/bash | |
# Copyright 2006-2014 Gentoo Foundation; Distributed under the GPL v2 | |
# $Id: startprefix.in 61219 2012-09-04 19:05:55Z grobian $ | |
# Fabian Groffen <[email protected]> -- 2007-03-10 | |
# Enters the prefix environment by starting a login shell from the | |
# prefix. The SHELL environment variable is elevated in order to make | |
# applications that start login shells to work, such as `screen`. | |
# if you come from a substantially polluted environment (another |