Categories
blog haiku sumnima

winter pink sun

Winter’s hot sun shines,
Pink blossoms dance with delight,
Rainbow in water.

#haiku

Categories
blog javascript js Swiper

Swiper Last slide space 

adding slidePerView and SpaceBetween will solve it – slidesPerView: “1.5”

http://sumnima-clear.mybigcommerce.com/

var swiper = new Swiper(".swiper", {
    slidesPerView: 4,
    spaceBetween: 16,
    breakpoints: {
        320: {
            watchSlidesProgress: true,
            slidesPerView: "1.5",
            shortSwipes: false
        },
        500: {
            watchSlidesProgress: true,
            slidesPerView: "2",
            shortSwipes: false
        },
        1024: {
            preventInteractionOnTransition: true,
            watchSlidesProgress: true,
            slidesPerView: "4.5",
            shortSwipes: false
        },
    },
});
Categories
35mm blog Photography sumnima

sumnima.me lali

lali gallery at sumnima.me
Categories
blog haiku

birthday!

biannual –
Same day
Lily blooms.

#haiku #sumnima

Categories
blog SSH

Transfer files with SSH from one server to another

Pulling: Let’s say you have a terminal on your host open, you could do:

scp user@192.168.1.100:/tmp/myfile /tmp/files/myfile

This way you are creating a “second tunnel” towards your server.

Pushing: (The other way around) so from your server to your host (essentially it is now a tunnel in your original tunnel):

scp /tmp/myfile user@192.168.1.5:/tmp/files/myfile
Categories
blog hackintosh VoodooHDA

VoodooHDA

copy and paste VoodooHDA at Library/Extensions

 

 

terminal command

sudo chmod -Rf 755 /S*/L*/E*
sudo chmod -Rf 755 /L*/E*
sudo chown -Rf 0:0 /S*/L*/E*
sudo chown -Rf 0:0 /L*/E*

Rebuild Kext Cache

sudo kextcache -i /

Categories
blog sumnima

for print

Categories
blog sumnima

Making of Ringtone

Categories
blog Uncategorized

Happy sumnima

Categories
blog magento 2

magento 2 display sub category with image at category

app/design/frontend/Themeness/minu/Magento_Catalog/templates/category/products.phtml

[html]


getCurrentCategory(); ?>
getChildrenCategories(); ?>
helper(‘Magento\Catalog\Helper\Output’); ?>

0): ?>

    getChildrenCategories() as $subcategory): ?>
    create(‘Magento\Catalog\Model\Category’)->load($subcategory->getId()); ?>