国内牛人写的一个Flash版NDS模拟器
分类: Technology
ASP.NET刷新页面的六种方法
第一:
private void Button1_Click( object sender, System.EventArgs e )
{
Response.Redirect( Request.Url.ToString( ) );
}
第二:
private void Button2_Click( object sender, System.EventArgs e )
{
Response.Write( " <script language=javascript>window.location.href=document.URL; </script>" );
}
第三:
private void Button3_Click( object sender, System.EventArgs e )
{
Response.AddHeader( "Refresh","0" );
}
第四:
private void Button6_Click( object sender, System.EventArgs e )
{
Response.Write( " <script language=javascript>window.location.reload( ); </script>" );
}
第五:(需替换<>)
<script><!--
var limit="3:00"
if ( document.images )
{
var parselimit=limit.split( ":" )parselimit=parselimit[0]*60+parselimit[1]*1
}
function beginrefresh( )
{
if ( !document.images )returnif ( parselimit==1 )window.location.reload( )else
{
parselimit-=1curmin=Math.floor( parselimit/60 )cursec=parselimit%60if ( curmin!=0 )curtime=curmin+"分"+cursec+"秒后重刷本页!"elsecurtime=cursec+"秒后重刷本页!"window.status=curtimesetTimeout( "beginrefresh( )",1000 )
}
}
window.onload=beginrefresh//--> </script><DIV style="Z-INDEX: 102;
LEFT: 408px;
POSITION: absolute;
TOP: 232px" ms_positioning="text2D">
<P><FONT size="3">自动刷新页面</FONT></P>
</DIV>
第六:
<meta http-equiv="refresh" content="300; url=target.html">
用 Eclipse 开发 iPhone Web 应用程序
Mac x86
装了几百遍系统,终于用上了Leopard,准备学习iPhone。
但是还是有些硬件不能使用:有线网卡、无线网卡等等。
Alexa刷排名
去年,有个朋友要刷排名,帮他做了一下,但是Alexa接口变化太快,不是长久之计。
Alexa官网:http://www.alexa.com/
ArthurXF的教程:
1-9:http://www.bizeway.net/tag.php?tag=alexa%E4%BD%9C%E5%BC%8A
10:http://www.bizeway.net/read.php?261&guid=46
ARToolkit
ARToolkit:http://www.hitl.washington.edu/artoolkit/
ARToolkit Plus:http://studierstube.icg.tu-graz.ac.at/handheld_ar/artoolkitplus.php
NyARToolkit:http://nyatla.jp/nyartoolkit/
FLARToolkit:http://www.libspark.org/wiki/saqoosha/FLARToolKit/en
FLARToolkit教程:http://www.mikkoh.com/blog/?p=182
FLARToolkit with PV3D:
http://pv3d.org/2009/03/12/augmented-reality-flartoolkit-demo-reel/
http://pv3d.org/2009/03/12/augmented-reality-recursive-webcam/
iphonearkit:http://code.google.com/p/iphonearkit/
Handheld AR:http://studierstube.icg.tu-graz.ac.at/handheld_ar/index.php
http://studierstube.icg.tu-graz.ac.at/handheld_ar/index.php
ARTookit中文论坛:http://www.artoolkit.net/
PTAM
Parallel Tracking and Mapping for Small AR Workspaces
http://www.robots.ox.ac.uk/~gk/PTAM/
不需要marker,自动分析坐标信息,CPU占用高,开源。
ARtoolKit与PTAM比较:http://www.touchar.com/thread-51-1-1.html
又一家MT公司
主要拿别人的东西改了一下而已。
三种Web服务
REST 是 Representational State Transfer 的缩写,译为中文为“表象化状态转变”。
SOAP 是 Simple Object Access Protocol 的缩写,译为中文为“简单对象访问协议”。
XML-RPC,RPC 是 Remote Procedure Calling 的缩写,译为中文为“远程过程调用”。