Skip to content

Instantly share code, notes, and snippets.

View kicumkicum's full-sized avatar
📺

Oleg Akinin kicumkicum

📺
View GitHub Profile
@kicumkicum
kicumkicum / git-tag-delete-local-and-remote.sh
Created July 10, 2017 08:44 — forked from mobilemind/git-tag-delete-local-and-remote.sh
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

Теоритеческие вопросы

* перечислить базовые типы JavaScript
* в чем разница между `.call` и .`apply?`
* что делает и для чего нужна функци `.bind`?
* в чем отличие между `var`, `let`, `const`
* в чем отличия между `function` и `arrow function`
* что такое `scope` и как он работает
* как работает наследование в JS
* чем отличается абстрактный класс от интерфейса
F3 – MSI;
F4 – Samsung. Под ОС можно через Samsung Recovery Solution III;
F8 – Fujitsu Siemens. Вообще часто позволяет попасть и на других ноутбуках (через сторку устранение неполадок) в фирменную утилиту для Recovery.
F8 — Toshiba
F9 — ASUS;
F10 — Sony VAIO. Под ОС можно через VAIO Recovery Utility;
F10 — Packard Bell;
F11 — HP Pavilion;
F11 — LG;
[foo]: http://example.com/ "Optional Title Here"
[foo]: http://example.com/ 'Optional Title Here'
[foo]: http://example.com/ (Optional Title Here)
var inherit = function(a, b) {
function c() {
}
c.prototype = b.prototype;
a.superClass_ = b.prototype;
a.prototype = new c;
a.prototype.constructor = a;
a.base = function(a, c, f) {
for (var g = Array(arguments.length - 2), h = 2;h < arguments.length;h++) {
g[h - 2] = arguments[h];