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
<?php | |
require_once 'Zend/Db.php'; | |
require_once 'Zend/Config/Ini.php'; | |
//connect db | |
$db=dbfactory(); | |
// Parsing a large document with XMLReader with Expand - DOM/DOMXpath | |
$reader = new XMLReader(); | |
$reader->open("EIJI-127.xml"); |
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
<?php | |
require_once 'Zend/Db.php'; | |
require_once 'Zend/Config/Ini.php'; | |
//connect db | |
$db=dbfactory(); | |
$fhf=fopen('./src.txt','r'); | |
$fht=fopen('./ext.txt','w'); |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title></title> | |
<link rel="stylesheet" href="resources/css-debug/sencha-touch.css" type="text/css" /> | |
<script type="text/javascript" src="resources/sencha-touch-debug.js"></script> | |
<script> | |
//global vals |
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
<html> | |
<head> | |
<script src="./jquery.js"></script> | |
<script> | |
zoomRatio=1; | |
loopCount=0; | |
mouseX=0; | |
mouseY=0; |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title></title> | |
<link rel="stylesheet" href="resources/css-debug/sencha-touch.css" type="text/css" /> | |
<script type="text/javascript" src="resources/sencha-touch-debug.js"></script> | |
<script> | |
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
<?php | |
/** | |
* libHaru Utility Class | |
* @author ozero | |
* | |
*/ | |
/* | |
example: |
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 jp.ozero.poitest; | |
import java.io.BufferedInputStream; | |
import java.io.FileInputStream; | |
import java.io.FileNotFoundException; | |
import java.io.IOException; | |
import org.apache.poi.hssf.record.crypto.Biff8EncryptionKey; | |
import org.apache.poi.hssf.usermodel.HSSFCell; | |
import org.apache.poi.hssf.usermodel.HSSFRichTextString; |
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
javascript:(function(){var i,u,a,p;u=location.href;p=u.split("/");for(i=0;i<p.length;i++){if(p[i]=="dp"||p[i]=="a"){a=p[i+1];}}if(a){location="http://www.amazon.co.jp/dp/"+a;}})(); |
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
document.selection.Replace("thread=\x22.*?\x22","",eeFindNext | eeFindSaveHistory | eeFindReplaceEscSeq | eeReplaceAll | eeFindReplaceRegExp); | |
document.selection.Replace("no=\x22.*?\x22","",eeFindNext | eeFindSaveHistory | eeFindReplaceEscSeq | eeReplaceAll | eeFindReplaceRegExp); | |
document.selection.Replace("vpos=\x22.*?\x22","",eeFindNext | eeFindSaveHistory | eeFindReplaceEscSeq | eeReplaceAll | eeFindReplaceRegExp); | |
document.selection.Replace("mail=\x22.*?\x22","",eeFindNext | eeFindSaveHistory | eeFindReplaceEscSeq | eeReplaceAll | eeFindReplaceRegExp); | |
document.selection.Replace("premium=\x22.*?\x22","",eeFindNext | eeFindSaveHistory | eeFindReplaceEscSeq | eeReplaceAll | eeFindReplaceRegExp); | |
document.selection.Replace("anonymity=\x22.*?\x22","",eeFindNext | eeFindSaveHistory | eeFindReplaceEscSeq | eeReplaceAll | eeFindReplaceRegExp); | |
document.selection.Replace("</chat>","",eeFindNext | eeFindSaveHistory | eeFindReplaceEscSeq | eeReplaceAll | eeFindReplaceRegExp); | |
document.selection.Replace("<chat","", |
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
// You should use Ext.application, not Ext.setup | |
Ext.application({ | |
name: 'SampleLoad', | |
requires: ['Ext.Ajax'], | |
launch: function () { | |
Ext.create("Ext.tab.Panel", { | |
fullscreen: true, | |
tabBarPosition: 'bottom', | |
items: [ | |
{ |
OlderNewer