Skip to content

Instantly share code, notes, and snippets.

View AlexanderTserkovniy's full-sized avatar
😄

AlexanderTserkovniy AlexanderTserkovniy

😄
View GitHub Profile
@scabbiaza
scabbiaza / notes.md
Last active October 24, 2022 11:39
Quality Attributes for JS Frontend Application
// Easy way to parse raw URL without regex.
var locator = document.createElement('a');
locator.href = 'http://google.com/?search=true&other=isnt#anchor'
console.log(locator.protocol);
console.log(locator.host);
console.log(locator.search);
console.log(locator.hash);
@XOP
XOP / ft2014_review.md
Last active September 5, 2016 09:58
Front-Trends 2014 extended review with links and stuff

DISCLAIMER:
The whole content comes "as is".
All commentaries refer to author's impression.
Some inconsistency possible as well.
The few details (mainly useful links) were added while transcribing notes.


@mobilemind
mobilemind / git-tag-delete-local-and-remote.sh
Last active April 30, 2024 23:36
how to delete a git tag locally and remote
# delete local tag '12345'
git tag -d 12345
# delete remote tag '12345' (eg, GitHub version too)
git push origin :refs/tags/12345
# alternative approach
git push --delete origin tagName
git tag -d tagName