Skip to content

Instantly share code, notes, and snippets.

View ssova-4xxi's full-sized avatar

Sergey Sova ssova-4xxi

View GitHub Profile
FSWV = 1.7.0
INDEX_README = true
clean: www
@rm -rf www/* 2>/dev/null && \
docker stop `docker ps -lq` || true && \
docker rm `docker ps -lq` || true && \
docker rmi `docker images -qa` || true
install-dev: .
mkdir -p ./dev && cd dev && \
"use strict";
const Request = require('request-promise');
const headers = {
'User-Agent': 'ssova-4xxi'
};
const repos = [
'scottwrobinson/camo',
@ssova-4xxi
ssova-4xxi / Readme.md
Last active August 2, 2016 14:22
Delete merged and closed branches github

Remove ,.state-closed to delete only merged

@ssova-4xxi
ssova-4xxi / react_tz.md
Last active September 12, 2023 12:20 — forked from beshkenadze/react_tz.md
Тестовое задание для ReactJS/AngularJS Frontend-разработчика

Погодное одностраничное веб-приложение

Данные можно взять с сайта openweathermap.org или с любого другого сервиса.

(!) Обязательно использовать React.js и Redux.

Обязательный функционал приложения:

  • Добавлять/удалять города
  • Сохранять локально данные (LocalStorage)

1.1.1 / 2016-04-28

  • 1.1.1
  • Changelog: to v1.1.1
  • Rename Array.prototype.included to Array.prototype.contains

1.1.0 / 2016-04-28

@ssova-4xxi
ssova-4xxi / Remove all git tags
Created May 25, 2016 14:16 — forked from okunishinishi/Remove all git tags
Delete all git remote tags
#Delete local tags.
git tag -l | xargs git tag -d
#Fetch remote tags.
git fetch
#Delete remote tags.
git tag -l | xargs -n 1 git push --delete origin
#Delete local tasg.
git tag -l | xargs git tag -d