Skip to content

Instantly share code, notes, and snippets.

@vtuz
vtuz / index.html
Created May 2, 2022 11:02
Swiper Auto Centered - Fixed Height
<body>
<!-- Slider main container -->
<div class="swiper-container my-gallery">
<!-- Additional required wrapper -->
<div class="swiper-wrapper">
<!-- Slides -->
<div class="swiper-slide">
<figure itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject" class="">
<a href="https://cdn.pixabay.com/photo/2019/08/19/07/45/pets-4415649_960_720.jpg" itemprop="contentUrl" data-size="2136x1424">
@vtuz
vtuz / gist:383b93c2e39936c0160b51e321644cad
Created January 28, 2021 10:09 — forked from rmetzler/gist:2947828
find all non UTF-8 encoded files
find . -type f | xargs -I {} bash -c "iconv -f utf-8 -t utf-16 {} &>/dev/null || echo {}" > utf8_fail