This is a Javascript AES encrypt decrypt library
AES Advanced Encryption Standard
And this is a PHP AES encrypt decrypt library
AES in PHP
This is a Javascript AES encrypt decrypt library
AES Advanced Encryption Standard
And this is a PHP AES encrypt decrypt library
AES in PHP
A nice guy make a symfony color theme for NetBeans. You can download from his googlecode page: Symfony Color Scheme for NetBeans v1.3
新增下列的內容
filename.DejaVu_Sans_Mono=DejaVuSansMono.ttf
filename.DejaVu_Sans_Mono_Bold=DejaVuSansMono-Bold.ttf
filename.DejaVu_Sans_Mono_Bold_Oblique=DejaVuSansMono-BoldOblique.ttf
filename.DejaVu_Sans_Mono_Oblique=DejaVuSansMono-Oblique.ttf
修改下列的內容
sansserif.plain.alphabetic=DejaVu Sans
sansserif.bold.alphabetic=DejaVu Sans Bold
sansserif.italic.alphabetic=DejaVu Sans Oblique
sansserif.bolditalic.alphabetic=DejaVu Sans Bold Oblique
monospaced.plain.alphabetic=DejaVu Sans Mono
monospaced.bold.alphabetic=DejaVu Sans Mono Bold
monospaced.italic.alphabetic=DejaVu Sans Mono Oblique
monospaced.bolditalic.alphabetic=DejaVu Sans Mono Bold Oblique
sequence.sansserif.x-windows-950=
alphabetic,chinese-ms950,dingbats,symbol,chinese-ms950-extb
sequence.monospaced.x-windows-950=
alphabetic,chinese-ms950,dingbats,symbol,chinese-ms950-extb
Sage is an mathematical software, the coolest point is it can run with any web browser.
I tried a sample plot function below, the usability is awesome too!
x=var('x')
plot(-0.3+(x+0.6)^0.5, (0,100))
Benchmarks results as below:
mt_rand() 10000000 times for 4.7026278972626 seconds each one average is 0.00000047 seconds rand() 10000000 times for 4.7438910007477 seconds each one average is 0.00000047 seconds
The test machine is Amazon EC2 High-CPU Instances (20 ECU)
Another test as below:
mt_rand() 10000000 times for 2.4974269866943 seconds each one average is 0.00000025 seconds rand() 10000000 times for 2.4646849632263 seconds each one average is 0.00000025 seconds
The test machine is Amazon EC2 Micro Instances (1 ECU)
Basically, follow the installation guide in the node.js GitHub wiki page. I use the "Building from source" guide. Then install npm, follow the guide too, just easy type with "curl http://npmjs.org/install.sh | sh"
When I test nmp installation (install express), I found that I should type 'npm install -g express', and the express will be installed in the directory which I want. Otherwise, nmp will install locally (such as: ./node_modules/).