第71号元素 【Lu】 镥 Lutetium

第71号元素

镥是一种银白色的抗侵蚀的三价的金属,是熔点最高的镧系元素,是最重、最硬、原子半径最小的稀土元素。

wikipedia

镥发现于1906年

January 2012
M T W T F S S
« Oct    
 1
2345678
9101112131415
16171819202122
23242526272829
3031  

网站管理

wxWidgets Contributing

Original URL: http://ftp.sunet.se/wmirror/wxwidgets.org/develop2.htm

The wxWidgets Community

These pages are for people involved in, or thinking of becoming involved in, contributing code or other effort to wxWidgets. If you’re a satisfied wxWidgets user, please help spread the word by adding a ‘Built with wxWidgets’ icon to your site, linking to www.wxwidgets.org.
Communicating
. . . → Read More: wxWidgets Contributing

VBS调用Web Service

简单类型调用soapsdk:

dim oSoap
set oSoap = createobject(“MSSOAP.SOAPClient30″)
on error resume next
oSoap.mssoapinit(“http://www.MyService.com/MyService/MyService.asmx?wsdl”)
if err then
wscript.echo oSoap.faultString
wscript.echo oSoap.detail
end if
wscript.echo oSoap.getServerDateTime()‘括号里可以放web service的参数,用逗号分隔,或用一个xm . . . → Read More: VBS调用Web Service

VC++中与.Net RijndaelManaged等价的加密解密算法

.Net中定义RijndaelManaged的key和iv
Public ReadOnly key As Byte() = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}
Public ReadOnly IV As Byte() = {17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32}

.Net这么做
Dim Buf As Byte()//函数传人参数,加密的二进制数据
Imports System.Security.Cryptography
Dim _ms As New MemoryStream(Buf)
Dim _RMCrypto As N . . . → Read More: VC++中与.Net RijndaelManaged等价的加密解密算法

VC++用ADO读写二进制数据

读:

long lDataSize = RS->GetFields()->GetItem(“AField”)->ActualSize;
char* pBuffer;
if (lDataSize > 0)
{
_variant_t var = RS->GetFields()->GetItem(“AField”)->GetChunk(lDataSize);
if (var.vt == (VT_ARRAY | VT_UI1))
{
if (pBuffer = new char[lDataSize + 1])
{
char *p = NULL;
SafeArrayAccessData(var.parray . . . → Read More: VC++用ADO读写二进制数据

Fix Crystal Report ActiveX in VS2010

Linker>Command Line

/FORCE:MULTIPLE
/NXCOMPAT:NO . . . → Read More: Fix Crystal Report ActiveX in VS2010

Ubuntu学习笔记67-Full Circle 第48期摘要

1、shipit服务终止

2、uim:一个输入法平台
sudo apt-get install uim uimgtk2.0 uim-qt uim-qt3 uimfep uim-anthy

3、免费或平价(合法的)电子书
http://www.gutenberg.org/wiki/Main_Page
http://www.baen.com
http://www.webscription.net
http://www.fictionwise.com/ebooks/multiformat.htm
http://craphound.com/?cat=5

3、项目管理工具 Top 5

Planner:http://live . . . → Read More: Ubuntu学习笔记67-Full Circle 第48期摘要

Ubuntu学习笔记66-Full Circle 第47期摘要

1、Cakubre:一款电子书软件,支持阅读格式:CBZ、、CBR、CBC、CHM、EPUB、FB2、HTML、LIT、LRF、MOBI、ODT、PDF、PRC、PDB、PML、RB、RTF、SNB、TCR、TXT,支持转换格式EPUB、FB2、OEB、LIT、LRF、MOBI、PDB、PML、RB、PDF、SNB、TCR、TXT。

2、FAT(File Allocation Table)不支持底层日志,兼容性强,无权限管理,性能低,无优化。 . . . → Read More: Ubuntu学习笔记66-Full Circle 第47期摘要

Ubuntu学习笔记65-Full Circle 第46期摘要

1、Zenity:一个用于创建对话框的命令行工具

2、Ext2格式不支持底层读写日志,写盘数据少,因此快。Ext3以后加入了读写日志。Ext4提高了性能。 . . . → Read More: Ubuntu学习笔记65-Full Circle 第46期摘要

Ubuntu学习笔记64-Full Circle 第45期摘要

1、虚拟机
(1)、Proxmox VE:开源的虚拟平台
(2)、Qemu:基于QT
(3)、VirtualBox
(4)、VMWare
(5)、KVM:可能是Proxmox的后台,支持带Intel VT或AMD-V扩展的处理器,通常需要一个Qemu修改版的支持。
(6)、Xen:面向企业的虚拟方案

2、M23:http://m23.sf.net,GPL下的自由软件发布系统。可以安装和管理Ubunt . . . → Read More: Ubuntu学习笔记64-Full Circle 第45期摘要

iOS Wireless Distro

1、在Organizer里Share

2、URL和Application Name需相同

3、导出ipa和plist文件

4、创建链接文件,给Safari点击即可。

<a href=”http://www.xxx.com/xxx.mobileprovision”>
1. Install Provisioning File</a>

<a href=”itms-services://?action=download-manifest&amp;url=http://www.xx.com/xxx.plist”>
2. Install Application</a>

. . . → Read More: iOS Wireless Distro