sumnima sumnima sumnima sumnima sumnima sumnima sumnima
Categories
blog carousel Jquery

slick the last carousel you’ll ever need

http://kenwheeler.github.io/slick/

Categories
blog Elementary OS Linux

dmg file to iso in terminal

Just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

sudo apt-get install dmg2img

Once installed, run the following command:

dmg2img <file_name>.dmg

That will convert the .dmg to ,img file in ISO format. Then just run

mv <file_name>.img <file_name>.iso
Categories
blog OS X

How to Make YouTube Videos Load Faster on broadlink choor ISP nepal

1. open your host file. google – host file in windows , host file in window7 , host file in windows8, host file in Linux , host file in Mac

2. Open a Command Prompt (WINDOWS) or Terminal (MAC OR LINUX) then type

ping youtube.com

Screenshot from 2015-04-16 12:09:07

find youtube ip here is current youtube ip  173.194.36.101

3. add ip to host file

173.194.36.101 youtube.com

Screenshot from 2015-04-16 12:14:55

 

4. flush DNS — goolge — flush dns windows 7, flush dns windows 8, flush dns windows Linux, flush dns Mac

 

 

————————————————————

STILL SLOW YOUTBE 😛

there is lots of youtube ip so re start same steps. here are some youtube ip

Screenshot from 2015-04-16 12:11:02

Categories
AMD blog

waiting… AMD Carrizo

waiting… AMD Carrizo

Categories
blog domains

Officialstupid.com Domain Backorder

Waiting my  domain.

Categories
blog Jquery

maximage2

Categories
blog magento

Move layered navigation block between product list toolbar and product list

The reason your layered navigation only shows up at the bottom or at the top of the page is that you add the block at the wrong block “level”.

You added the block to the block content which only has two direct child blocks: category.products and product.tooltip. Therefore you only can add your block at the top, between these two blocks or at the bottom.

How to move the layered navigation between the product list toolbar and the product list

Add this code to your layout XML:

<?xml version="1.0"?>
<layout version="0.1.0">
    <catalog_category_layered>
        <reference name="left">
            <action method="unsetChild"><alias>catalog.leftnav</alias></action>
        </reference>
        <reference name="product_list">
            <action method="insert"><blockName>catalog.leftnav</blockName></action>
        </reference>
    </catalog_category_layered>
</layout>

This will move the layered navigation block from the left column to the content column without re-creating classes and the like. You can see I inserted the block as a child of the block product_list.

If you call the page now you will see that the layered navigation isn’t displayed at all. That’s because opposed to the content block, the product_list block doesn’t output all child blocks by default. You have to echo the block yourself in the template file.

Copy app/design/frontend/base/default/template/catalog/product/list.phtml (replace base/default with your base theme if you use another one as your starting point) to your theme and tell Magento to output the layered navigation directly after the first toolbar:

<?php if(!$_productCollection->count()): ?>
<p class="note-msg"><?php echo $this->__('There are no products matching the selection.') ?></p>
<?php else: ?>
<div class="category-products">
    <?php echo $this->getToolbarHtml() ?>
    <?php echo $this->getChildHtml('catalog.leftnav'); /* THIS IS THE NEW LINE */ ?>
    <?php // List mode ?>

You will get something like this and can go on from here:

WswgV

 

vie : Matthias Zeis, stackexchange

Categories
blog magento RWD Theme

Say hello to SUMNIMA

THE WORLD’S MOST ADVANCED MOBILE MAGENTO THEME

BEAUTIFUL & LIGHT DESKTOP, TABLATE & MOBILE RESPONSIVE THEME

Sumnima is the world’s most advanced mobile design for magento theme. sumnima isn’t simply a responsive magento theme — it’s better in every way. RWD, yet beautifully design for mobile. New sumnima more compact and all new design for mobile version no more tradition mobile design and pixels icon. 

With a smooth Native Mobile Application base design that seamlessly meets the new Retina HD iPhone, iPad or Mac display. No more pixel icons, we design all new thin and flat icon for retina device.

Categories
blog Elementary OS Linux Video Editor

Kdenlive – best open-source video editor

Kdenlive – a free and open-source video editor for GNU/Linux and FreeBSD

sudo add-apt-repository ppa:sunab/kdenlive-release
sudo apt-get update
sudo apt-get install kdenlive
Categories
blog Hosts

Editing Hosts File

very simple method and works if the site is blocked by counter method or if you know the IP address of the website (you want to unblock). Simply open /etc/hosts file and remove the entry for your favorite websites and flush the DNS cache to propagate the changes.

gksu gedit /etc/hosts

In other case if you know the IP address of target website, which blocked using some other mechanism such as ISP level or something else then add an entry (/etc/hosts) for that website along with the correct IP address. The second method seems to be logically correct – if a domain name is resolved at host level then the lookup process is terminated, so host level dns entry should bypass other DNS filtering e.g at ISP level. Therefore it is expected to work (but I have not tested yet, I’ll let you know if it works), give it a try it may work. But it may not work if the website’s IP address changes frequently – because in that case it would be difficult to update the etc/hosts file manually to reflect the new value of IP address.

Adding a DNS entry in etc/hosts file –

TARGET_IP_ADDRESS                     TARGET_WEBSITE_DOMAIN_NAME

Then execute the following command – (to flush DNS cache)

sudo apt-get install nscd
sudo /etc/init.d/nscd restart

 

Categories
blog Elementary OS Linux teamviewer

teamviewer ubuntu

sudo dpkg --add-architecture i386

sudo apt-get update

wget http://www.teamviewer.com/download/teamviewer_linux.deb

sudo dpkg -i teamviewer_linux.deb

sudo apt-get install -f