. 緩存處理技術(shù),定時更新系統(tǒng)數(shù)據(jù),提升系統(tǒng)性能
B. 系統(tǒng)模板管理功能,方便制作個性化的系統(tǒng)模板,可后臺管理
C. 首頁商品和店鋪的自助推薦功能,用戶可使用虛擬幣采用競價(jià)方式自助推薦自己的商品和店鋪
D. 店鋪的皮膚轉(zhuǎn)換,重新設(shè)計(jì)店鋪結(jié)構(gòu)
E. 商品,店鋪,求購信息的搜索,采用積木式查詢,減少等待時間
F. 支付寶按鈕支付功能(用于系統(tǒng)用戶與用戶間的付款交易)
G. 重新制作廣告系統(tǒng),靜態(tài)JS讀取速度更快
H. 最高價(jià)競拍模式中加入一口價(jià)購買的功能
I. 后臺管理員的分權(quán)限管理(管理,添加,查看)
j. 后臺商品首頁推薦,店鋪首頁推薦功能
K. 商品可實(shí)現(xiàn)四級分類處理
L. 增加店鋪分類功能
M. 外接用戶數(shù)據(jù)庫(AC和SQL兩種),系統(tǒng)郵件發(fā)送,圖片上傳,緩存更新,MD5加密等后臺管理功能
N. 實(shí)現(xiàn)了商品登陸收費(fèi)的功能
加密算法
Test Driver for Crypto++, a C++ Class Library of Cryptographic Primitives:
- To generate an RSA key
cryptest g
- To encrypt and decrypt a string using RSA
cryptest r
- To calculate MD5, SHS, and RIPEMD-160 message digests:
cryptest m file
- To encrypt and decrypt a string using DES-EDE in CBC mode:
cryptest t
- To encrypt or decrypt a file
cryptest e|d input output
- To share a file into shadows:
cryptest s <pieces> <pieces-needed> file
(make sure file has no extension, if you re running this under DOS)
- To reconstruct a file from shadows:
cryptest j output file1 file2 [....]
- To gzip a file:
cryptest z <compression-level> input output
- To gunzip a file:
cryptest u input output
- To run validation tests:
cryptest v
- To run benchmarks:
cryptest b [time for each benchmark in seconds]
收SP下行消息
A. 啟動MMSC偵聽端口
在模擬器界面的右下角的"Liten Port"文本框中輸入MMSC的偵聽端口,這個值是為接收SP發(fā)出的下行消息提供服務(wù)的端口號,比如:"8080",按下"Start"按鈕啟動MMSC偵聽服務(wù)。
B. 接收消息
接收的是從SP(API)發(fā)來的消息,處理后回一條響應(yīng)消息。
2 模擬MMSC向SP發(fā)送上行消息
A. 選擇模擬器左邊界面的MessageType為“DeliverReq”;
B. “Send To”文本框中輸入SP的上行地址,例如http://10.164.50.29:8888;
C. 在界面中選擇輸入其他需要的字段,然后點(diǎn)擊“Send”按紐即可向SP上行地址發(fā)送上行消息。
3 模擬MMSC向SP發(fā)送遞送報(bào)告消息
A. 選擇模擬器左邊界面的MessageType為“DeliverReportReq”;
B. “Send To”文本框中輸入SP的上行地址,例如http://10.164.50.29:8888;
C. 在界面中選擇輸入其他需要的字段,然后點(diǎn)擊“Send”按紐即可向SP上行地址發(fā)送遞送報(bào)告消息。
4 模擬MMSC向SP發(fā)送閱讀報(bào)告消息
A. 選擇模擬器左邊界面的MessageType為“ReadReportReq”;
B. “Send To”文本框中輸入SP的上行地址,例如http://10.164.50.29:8888;
C. 在界面中選擇輸入其他需要的字段,然后點(diǎn)擊“Send”按紐即可向SP上行地址發(fā)送閱讀報(bào)告消息
MULTIDIMENSIONAL SCALING in matlab by Mark Steyvers 1999
%needs optimization toolbox
%Modified by Bruce Land
%--Data via globals to anaylsis programs
%--3D plotting with color coded groups
%--Mapping of MDS space to spike train temporal profiles as described in
%Aronov, et.al. "Neural coding of spatial phase in V1 of the Macaque" in
%press J. Neurophysiology
palm編成,這種書很少,有興趣看看
Title: Palm Programming: The Developer s Guide
URL: http://safari.oreilly.com/JVXSL.asp?x=1&mode=section&sortKey=rank&sortOrder=desc&view=book&xmlid=1-56592-525-4&open=false&srchText=palm+programming&code=&h=&m=&l=1&catid=&s=1&b=1&f=1&t=1&c=1&u=1&page=0
ISBN: 1-56592-525-4
Author: Julie McKeehan/ Neil Rhodes
Publisher: O Reilly
Page: 478
Edition: 1st edition (December 1998)
Catalog: PDA programming / Palm
Format: pdf
Size: 2.06M
Supplier:
Summary: Emerging as the bestselling hand-held computers of all time, PalmPilots have spawned intense developer activity and a fanatical following. Used by Palm in their developer training, this tutorial-style book shows intermediate to experienced C programmers how to build a Palm application from the ground up. Includes a CD-ROM with source code and third-party developer tools
Java Regex Primer Since version 1.4, Java has had support for Regular Expressions in the core API. Java Regex follows the same basic principles used in other languages, just withdi erent access methods, and some subtledi erences with the patterns. This primer is aimed towards developers already familiar with regex in other languages wanting a brief outline of its support in Java. It may also be beneficial to developers learning regex if used in conjunction with detailed documentation explaining the construction of regex patterns. Reading the javadoc forjava.util.regex. Pattern is a must to see how the Java regex patterns aredi erent from other languages such as Perl. Most of the functions discussed herin are from thejava.util.regex. Matcher class with a few fromjava.util.regex. Pattern. Reading this text in conjunction with the javadoc of those classes is advised.