Thursday, December 11, 2014

Photoshop CS6 32 & 64 bit Portable




Graphic editor without installation.

Download Portable Photoshop CS6 32 bit (96.3 MB)

(md5: 68d5bc23a84ef7ec7c74dab703ba01bd)

Included Camera Raw 7.3.0.71 Plug-in 32 bit

Download Portable Photoshop CS6 64 bit (109 MB)

(md5: 95297c648e047e148e35b7979117de6e)

Included Camera Raw 7.3.0.71 Plug-in 64 bit

Download Camera Raw 8.1.0.43 Plug-in 32-64 bit Online (0.4 MB)

13.1.2 requires Windows 7 or later, download 13.0.1.1 for XP

Download Portable Photoshop CS6 13.0.1.1 32 bit (92.6 MB)

(md5: 1ebede168f5d0abbe52f137154d58fcf)

Included Camera Raw 7.1.0.354 Plug-in 32 bit

English, Czech, Danish, German, Spanish, SpanishInternational, Finnish, French, Hungarian, Italian, Japanese, Korean, Norwegian, Dutch, Polish, PortugueseBR, Romanian, Russian, Swedish, Turkish, Ukrainian, SimpChinese, TradChinese)

32 bit and 64 bit have separate program folders but same launcher and same settings.
Language set by launcher according UserDefaultLang.

To change, edit PhotoshopCS6Portable.ini with Language="one of the extensions of tw10428 in App\PhotoshopCS6\Locales\en_US\Support Files" (Language="" for en_US).

You can add plug-ins in App\PhotoshopCS6\Plug-ins
Extract and run PhotoshopCS6Portable. Settings created in Data.

Don't run at the same time of another Adobe product or if you have Photoshop installed!

Wednesday, November 26, 2014

Share Intellij idea 14 license key



Decompiler

IntelliJ IDEA 14 comes with a built-in decompiler for Java classes. When you want to take a look inside a library that you don't have the source code for, now you can — without any third-party plugins. More details »

Monday, November 24, 2014

Problems playing MP4 and MP3 files from version 12.04 -> 14.10 version 64bit

You might try reinstalling the Ubuntu restricted extras.
Open a terminal window, and type in:
sudo apt-get install ubuntu-restricted-extras
There's some more information on codecs and plugins on the ubuntu site:https://help.ubuntu.com/community/RestrictedFormats
Please keep in mind that linux mp3 and mp4 plugins are relatively low quality to begin with, and that VLC has it's own plugins built in, and so that's why playback isn't affected using VideoLan. If you're an audiophile, perhaps the purchase of high quality codecs would be a good investment, though I don't find much wrong with the codecs that are in the restricted extras package.

Wednesday, November 19, 2014

Share PHPStorm 8 key(License Key)


PHPStorm 8 (License Key)


PHP Language Support

Power of language injections

Language injections into PHP literals have been completely re-worked to support complex expressions, including a possibility to substitute dynamic parts with sensible values. This is particularly important for working with SQL queries in your project, and yields a significant productivity boost when writing or testing database queries.Read more about language injections enhancements »



Keep up with the PHP evolution



The latest PHP 5.6 is fully supported including exponentiation, use const, use function, constant expression, variadic functions, argument unpacking, and more.

With all the language features in place, there is no reason not to update your project to the latest PHP version.Read more about PHP 5.6 support »

Share key webstorm 9


Please give a warm welcome to the Early Access Program for WebStorm 9!
Go ahead and download WebStorm 9 EAP right now.



As you may remember, back in May we published our development roadmap for the next version of WebStorm, featuring Meteor support, Gulp integration, spy-js for Node.js and other exciting new features.

Key Subline Text 3



I wan share key subline text 3


Key Sublime Text 3 (Build 3065)

Friday, October 31, 2014

Shell csript linux auto connect ssh to server and deployment

I want deploy code to server. I dont want connect ssh in command. I write shell script linux auto connect to server and cd go to directory project and execute git command or svn command if it done exit connect .

- Step 1:  Install package expect  if not install on my computer.
- Step 2 : create file deploy_project.sh and paste code .
#!/usr/bin/expect
set login "root" # user  login
set addr "192.168.1.44" # ip server 
set pw "123456" # password login ssh 

spawn ssh $login@$addr
expect "$login@$addr\'s password:"
send "$pw\r"
expect "#"
send "cd /var/www/html/project_example\r" # go to directory project
expect "#"
send "git pull\r" # command git pull source code
expect "#"
send "exit\r" # disconnect to server 
interact # close shell
- Step 3 Open terminal cd to directory  run command ./deploy_project.sh

Please have any questions. 

Good Luck !