首先.NET中的ICryptoTransform是单向的,也就是只能从一个状态将数据转化成另一个状态,反之是不可以的。当然手动
操作ICryptoTransform还是比较繁琐的,通过CryptoStream可以更轻松地操作一个ICryptoTransform。由于
ICryptoTransform...
分类:
Web程序 时间:
2014-04-30 02:40:00
阅读次数:
559
收集一些对PHP研究较深的文章,方便平时的查阅。 1)弱类型变量实现 2)PHP的生命周期
3)变量的引用计数、写时复制(Reference counting & Copy-on-Write) 4)变量的存储方式 5)数组
6)HashTable API 7)面向对象
分类:
Web程序 时间:
2014-04-30 01:38:26
阅读次数:
565
上周被android交叉编译搞惨了,还好最后弄好了,写个小结以后备用吧。
步骤,1、下载cygwin的devel和shells模块 2、 2、设置环境变量 a、设置NDK_ROOT b、设置Path
编辑Path,在后面追加4个环境...
分类:
移动开发 时间:
2014-04-30 01:02:38
阅读次数:
626
[uwsgi]socket = 127.0.0.1:3032chdir =
/data/www/yida/pythonpath = ..env = DJANGO_SETTINGS_MODULE=yida.settingsmodule =
django.core.handlers.wsgi:WSGIH...
分类:
其他好文 时间:
2014-04-29 23:26:08
阅读次数:
611
1. 打开新的窗口并传送参数:
传送参数:response.write("<script>window.open(’*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"’)</script>")
接收参数:string a = Reque....
分类:
其他好文 时间:
2014-04-29 22:53:14
阅读次数:
571
create function [dbo].[HtoSec](@lvalue as
int)RETURNS intBEGINDECLARE @temp intSet @temp = @lvalue * 60 * 60RETURN
@tempENDcreate function [dbo].[GetT...
分类:
数据库 时间:
2014-04-29 22:04:03
阅读次数:
515
中文字体位置 FontPath
"/usr/local/lib/X11/fonts/misc/:unscaled" FontPath
"/usr/local/lib/X11/fonts/100dpi/:unscaled" FontPath "/usr/local/lib/X...
分类:
其他好文 时间:
2014-04-29 21:45:36
阅读次数:
796
1.下载Mysql安装包:mysql-5.6.12-win32.zip;2.解压安装到D:\__dev下;3.添加环境变量,创建MYSQL_HOME变量;
MYSQL_HOME=D:\_dev\mysql-5.6.12-win324.配置Path路径,、bin; %MYSQL_HOME%\bin.....
分类:
数据库 时间:
2014-04-29 20:53:09
阅读次数:
935
ahk 预加载声音:path = "C:\Windows\Media\Windows
Recycle.wav"command := "open " path " alias
AHK_PlayMe"DllCall("Winmm\mciSendString","str",command,"ptr",0,...
分类:
其他好文 时间:
2014-04-29 19:18:50
阅读次数:
424
2014-04-28
22:05题目:写个程序判断三连棋哪一方赢了。解法:三个相同的棋子连成一条横线,竖线或者对角线就判断为赢了。代码: 1 // 17.2 Write an
algorithm to check if someone has won the tic-tac-toe game. 2 ...
分类:
其他好文 时间:
2014-04-29 18:12:07
阅读次数:
474