Skip to content

Instantly share code, notes, and snippets.

View tst32's full-sized avatar
🎯
Easy 🕺 peasy 💃 lemon 🍋squeezy🎊

tst32

🎯
Easy 🕺 peasy 💃 lemon 🍋squeezy🎊
View GitHub Profile
@tst32
tst32 / ymaps.js
Created January 20, 2021 10:48 — forked from ktokot/ymaps.js
code for yandex maps
ymaps.ready(function () {
var myMap = new ymaps.Map('map', {
center: [55.751574, 37.573856],
zoom: 9
}, {
searchControlProvider: 'yandex#search'
}),
// Создаём макет содержимого.
MyIconContentLayout = ymaps.templateLayoutFactory.createClass(
@tst32
tst32 / docker-destroy-all.sh
Created December 15, 2020 14:29 — forked from JeffBelback/docker-destroy-all.sh
Destroy all Docker Containers and Images
#!/bin/bash
# Stop all containers
containers=`docker ps -a -q`
if [ -n "$containers" ] ; then
docker stop $containers
fi
# Delete all containers
containers=`docker ps -a -q`
if [ -n "$containers" ]; then
docker rm -f -v $containers