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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <unistd.h> | |
#include <time.h> | |
#define TRUE (1) | |
#define FALSE (0) | |
typedef struct | |
{ |
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
@SETLOCAL | |
@SET PATH=C:\Windows\Microsoft.NET\Framework\v2.0.50727;%PATH% | |
@CALL cmd /k | |
@ENDLOCAL |
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
import java.util.HashMap; | |
class Main | |
{ | |
static HashMap MAP = new HashMap(); | |
static | |
{ | |
MAP.put(".", "あ"); | |
MAP.put("/", "い"); | |
MAP.put("@", "う"); |
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
@SETLOCAL | |
@GOTO :main | |
:settheme | |
@CALL "%~dp0..\theme\%1.themepack" | |
@GOTO :EOF | |
:main | |
@echo %1 | |
@IF "%1" == "classic" ( |
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
@SETLOCAL | |
@ECHO "%~f1"|CLIP | |
@ENDLOCAL |
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
@SETLOCAL | |
@CD /d %1 | |
@SHIFT | |
@SHIFT | |
@SET _ARGS= | |
:recursive | |
@IF NOT "%~1" == "" ( | |
@SET _ARGS=%_ARGS% %1 | |
@SHIFT /1 | |
@GOTO :recursive |
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
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov. | |
// Jad home page: http://www.kpdus.com/jad.html | |
// Decompiler options: packimports(3) | |
// Source File Name: A.java | |
import java.io.PrintStream; | |
public class A | |
{ |
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 | |
cnt=0 | |
for i0 in $(seq 0 255) | |
do | |
for i1 in $(seq 0 255) | |
do | |
for i2 in $(seq 0 255) | |
do | |
for i3 in $(seq 0 255) |
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
SELECT | |
USER_INFO.ID | |
, USER_INFO.NAME_FAMILY || USER_INFO.NAME_FIRST | |
, 'A' AS TYPE | |
FROM | |
USER_INFO | |
WHERE | |
USER_INFO.AGE >= 20 | |
WHERE | |
USER_INFO.MODFY >= '2012/09/07' |
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
Listen xxxx | |
Listen yyyy | |
#------------------------------------------------------------------------------- | |
# simple proxy | |
#------------------------------------------------------------------------------- | |
<VirtualHost *:xxxx> | |
ProxyRequests On | |
ProxyVia Off | |
<Proxy *> |
OlderNewer