发布时间:2015-04-22 20:40:57
点击(此处)折叠或打开/* * 功能:提取带有指定桢头(fc 00 2b 20)的一段十六进制字符串,替换桢头并存入文件** 例:* 41 fc 00 2b 20 2e 99 11 0c 09 41 0e 59 a5 41 b1 9f 92 19 83 b5 b6 e9 9e 01 cc a3 1f c0.........【阅读全文】
发布时间:2015-04-21 15:29:34
平时,你在多媒体软件的设计中是怎样处理声音文件的呢?使用Windows 提供的API函数 sndPlaySound来实现WAV文件的播放?但是,你有没有遇到过这种情况呢:当WAV文件大于可用内存时,sndPlaySound 函数就不能进行播放!!!那么,如何利用MCI播放大型音频文件呢? 本文将介绍一种方法。 Windows支持两种RIFF(resour.........【阅读全文】
发布时间:2015-04-10 15:35:57
sendmail.sh:curl -o /tmp/email -s -d "smtp=${SMTP}" -d "from=${FROM}" -d "user=${USER}" -d "pass=${PASS}" -d "to=${TO}" -d "title=${TITLE}" -d "content=${CONTENT}" -d "ssl=${SSL}" -d "port=${PORT}" http://127.0.0.1/mail.phpcurl 用法:有些符号在URL中是不能直接传递的,如果要在URL中传递这些特殊符号.........【阅读全文】
发布时间:2015-04-02 11:35:19
SSL vs TLS vs STARTTLSThere's often quite a bit of confusion around the different terms SSL, TLS and STARTTLS.SSL and TLS both provide a way to encrypt a communication channel between two computers (e.g. your computer and our server). TLS is the successor to SSL an.........【阅读全文】