Skip to content

Instantly share code, notes, and snippets.

View veremey's full-sized avatar
:electron:

Serhii Veremiichuk veremey

:electron:
  • Ukraine
View GitHub Profile
<snippet>
<content><![CDATA[
<div class="jumbatron">
<div class="jumbatron__img">
<img src="img/big_img.jpg" alt="">
</div>
</div>
styles
.jumbatron
position: relative
@veremey
veremey / scss2sass.sh
Created August 9, 2016 17:20 — forked from sanxac/scss2sass.sh
convert scss files to sass and delete .scss files in a directory
#!/bin/bash
for f in *.scss; do sass-convert $f ${f%scss}sass ; done
rm *.scss
npm list --global=true --depth=0 ---- ==== ---Посмотреть список глобальных NPM пакетов
@veremey
veremey / Настройки верстальщику
Last active June 19, 2023 09:09
Настройки верстальщику
###
@veremey
veremey / gist:a1593b7758146203051f2077d586c2ad
Created February 23, 2017 16:27 — forked from depoulo/gist:5832073
CSS-only multi-line ellipsis with generated content. License: http://www.wtfpl.net/txt/copying/
@import "compass/css3/images";
// CSS-only multi-line ellipsis with generated content
// yields `position:relative`, so remember to declare an eventual `position:absolute/fixed` *after* including this mixin
@mixin limitLines(
$maxLinesPortrait, // Mandatory: The number of lines after which the clipping should take action.
$maxLinesLandscape: $maxLinesPortrait, // You may provide a different line limit for landscape orientation.
// Note that 'portrait' is our default orientation. However, if you omit $maxLinesLandscape,
// the value of $maxLinesPortrait is used for whatever orientation (that is, without a media query).
@veremey
veremey / gist:8aabccb784f97996e244f14ef09ffeab
Last active January 14, 2020 15:22
Работа с видео
https://videojs.com/advanced/ - ратает на тел
https://www.npmjs.com/package/iphone-inline-video - работает на тел
@veremey
veremey / gist:29fbedb0f0fd7d70b69c4f34ebbce6c5
Created October 16, 2018 08:55 — forked from itsmattsoria/gistfil1.textile
Mac Terminal Cheat Sheet

SHORTCUTS

Key/Command Description
Tab Auto-complete files and folder names
Ctrl + A Go to the beginning of the line you are currently typing on
Ctrl + E Go to the end of the line you are currently typing on
Ctrl + U Clear the line before the cursor
Ctrl + K Clear the line after the cursor
Ctrl + W Delete the word before the cursor
Ctrl + T Swap the last two characters before the cursor
<div id="map"></div>
<script src="https://maps.googleapis.com/maps/api/js?key=KEY_NUMBER" ></script>
function initMap() {
var myLatLng = {lat: 41.892896, lng: -87.638387};
var map = new google.maps.Map(document.getElementById('map'), {
center: {lat: 41.892896, lng: -87.638387},
zoom: 15,
styles: [