Wednesday, December 16, 2015

Xtreme Download Manager: Alternative Internet Download Manager for Linux

Xtreme Download Manager (xdman)  is an download manager app based on Java. it advanced and powerful download manager app which claims that can increase download speed, It also support pause and resume broken download and capture FLV videos from any sites .
xdman uses sophisticated dynamic segmentation algorithm,data compression and connection reuse to speed up the download process. Xtreme Download Manager supports HTTP, HTTPS and FTP protocols, firewalls, proxy servers, file redirects, cookie, authorization etc. Xtreme Download Manager integrates with any browser to handle downloads automatically using Advanced browser integration.
Depend on Java Runtime 6 (JRE6) or Latest jRE, xdman running perfectly on Ubuntu 13.04 or Ubuntu previous version with OpenJDK-JRE. It also can running on major OS like Windows,Mac OSX, Linux Distribustion that installed JRE.
Xdman Features
  • Download files at maximum possible speed. ( 5-6 times faster )
  • Sophisticated dynamic file segmentation algorithm,data compression & connection reuse.
  • Download FLV videos from YouTube, MySpaceTV, Google Video or Any Other site
  • Capture download from any browser (Firefox,Chrome,Internet Explorer,Opera,Safari or any other program trying to download a file from Internet)
  • Supports HTTP,HTTPS,FTP protocols with Authentication,Proxy Servers, Cookies, Redirection etc.
  • Resumes broken/dead downloads caused by connection problem,power failure or session expiration
  • Highly portable. Runs on any O.S with Java SE 6. No need for installation.
  • Can be configured to perform Automatic Antivirus checking, System shutdown on download completion

How to Install Xtreme Download Manager

On ubuntu, installing Xtreme Download Manager very easy. First download Xtreme Download Manager from here, you can also download it from terminal by typing command:
wget -O xdman.zip http://sourceforge.net/projects/xdman/files/xdman.zip/download
Extract xdman.zip
mkdir xdman
unzip xdman.zip -d xdman/
Enter to directory xdman/ and make exexutable file xdman.sh
cd xdman/
chmod +x xdman.sh
Run xdman.sh
./xdman.sh
Wait few second, it will be asking you to integrate xdman with your browser.

source link : http://ubuntuportal.com/2013/04/xtreme-download-manager-alternative-internet-download-manager-for-linux.html

Tuesday, December 15, 2015

How to install Emmet in Sublime Text 3


Emmet is the best plugin ever made to increase your speed in writing codes and increase your efficiency. It is a plugin for many popular text editors which greatly improves HTML & CSS workflow.
I was using Emmet in sublime text 2. But as Sublime Text 3 beta released, I updated by Sublime to the latest version and found that Emmet was not working in Sublime Text 3. So I started my search but unfortunately I was unable to find a working solution. There were many sites and tuts but they were not guiding properly. So finally I found the solution by myself. I know this is the same as Sublime Text 2’s way but it does not matter.

equirements:

  • Sublime Text 3
  • And a good sense of following steps… :p

Steps:

Installing Package control

  1. Open Sublime Text 3.
  2. Open console by pressing CTRL + ` or going to View > Show Console.
  3. Paste the following code and press Enter.

Source Code

import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ','%20')).read())


4. Wait for a minute and restart your Sublime Text.

Installing Emmet (Main Part)

  1. After you have successfully installed Package Control, open Command Palette by pressing CTRL + SHIFT + P or going to Tools > Command Palette…
  2. Type install and click on Package Control: Install Package.
  3. After loading type Emmet in the search bar and click on Emmet.
  4. Wait for it to install (and yes this is also a step). Leave your system for 2-3 minutes as it will install some required repositories also like PyV8. Keep an eye on the Status bar (the light grey bar in the bottom of your editor which shows the Line and the Column number).
  5. After your status bar is clean and has nothing except the Line and Column number restart you Sublime.
and Look out..!!! Emmet is installed in your Sublime.
Enjoy and keep coding. And if there is any problem with the steps please comment below.

Note: This has been tested in Sublime Text 3 build 3062

 source link : http://www.ishaanrawat.com/install-emmet-sublime-text-3/