Skip to content

Instantly share code, notes, and snippets.

@TemaSM
TemaSM / [WIN] GitKraken Context Menu - Remove.reg
Created April 17, 2017 13:33
Remove GitKraken from Windows Context Menu
Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT\Directory\Background\shell\GitKraken]
[-HKEY_CLASSES_ROOT\Directory\Background\shell\GitKraken\command]
(function () {
function setup() {
const e = document.createElement("link");
e.setAttribute("type", "text/css");
e.setAttribute("rel", "stylesheet");
e.setAttribute("href", "https://s3.amazonaws.com/moovweb-marketing/playground/harlem-shake-style.css");
e.setAttribute("class", "mw_added_css");
document.body.appendChild(e)
}
function strobeLight() {
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\PerfectGame MTA]
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\PerfectGame MTA\1.5]
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\PerfectGame MTA\1.5\Settings]
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\PerfectGame MTA\1.5\Settings\general]
"locale"="ru"
@TemaSM
TemaSM / sampleREADME.md
Created June 24, 2019 07:22 — forked from FrancesCoronel/sampleREADME.md
A sample README for all your GitHub projects.

FVCproductions

INSERT GRAPHIC HERE (include hyperlink in image)

Repository Title Goes Here

Subtitle or Short Description Goes Here

@TemaSM
TemaSM / commit-message-guidelines.md
Created November 14, 2018 19:13 — forked from robertpainsi/commit-message-guidelines.md
Commit message guidelines

Commit Message Guidelines

Short (72 chars or less) summary

More detailed explanatory text. Wrap it to 72 characters. The blank
line separating the summary from the body is critical (unless you omit
the body entirely).

Write your commit message in the imperative: "Fix bug" and not "Fixed
bug" or "Fixes bug." This convention matches up with commit messages
@TemaSM
TemaSM / harlem-shake.js
Last active April 1, 2018 05:00
Beautified version of original HarlemShake script by Moovweb
function doTheHarlemShake() {
// OPTIONS
let minHeight = 30,
minWidth = 30,
maxHeight = 350,
maxWidth = 350,
mp3Src = '//s3.amazonaws.com/moovweb-marketing/playground/harlem-shake.mp3',
shakeMeClass = 'mw-harlem_shake_me',
@TemaSM
TemaSM / docker.logs-clear.sh
Created December 25, 2017 10:50
Clear Docker Containers logs
sudo find /var/lib/docker/containers/ -type f -name '*-json.log' -delete
@TemaSM
TemaSM / FileContainer.vue
Created December 21, 2017 03:50 — forked from dohomi/FileContainer.vue
File container for vuetify and graph.cool. It lists files provided by a prop with link to the public url. Below it shows a file upload field
<template>
<div>
<h3 class="subheading" v-if="!hideLabel">{{label}}</h3>
<v-list v-if="mediaList">
<v-list-tile v-for="(item,i) in mediaList" :key="i">
<v-list-tile-avatar @click="onItemClick(item.url)">
<img :src="item.url" :alt="item.name" :title="item.name"/>
</v-list-tile-avatar>
<v-list-tile-content @click="onItemClick(item.url)">
<v-list-tile-title>{{item.contentType}}</v-list-tile-title>
@TemaSM
TemaSM / splice-object-array.js
Created November 24, 2017 03:22 — forked from scottopolis/splice-object-array.js
Remove object from array of objects in Javascript
// source: http://stackoverflow.com/questions/16491758/remove-objects-from-array-by-object-property
// we have an array of objects, we want to remove one object using only the id property
var apps = [{id:34,name:'My App',another:'thing'},{id:37,name:'My New App',another:'things'}];
// get index of object with id:37
var removeIndex = apps.map(function(item) { return item.id; }).indexOf(37);
// remove object
apps.splice(removeIndex, 1);
@TemaSM
TemaSM / download-curl-latest-github-release.sh
Created July 5, 2017 12:05
Download latest GitHub project/repo release via curl
# Method №1:
curl -s https://api.github.com/repos/<author>/<repo>/releases/latest | grep browser_download_url | cut -d '"' -f 4 | xargs curl > release.zip
# Method №2:
curl "$(curl -s https://api.github.com/repos/<author>/<repo>/releases/latest | grep browser_download_url | cut -d '"' -f 4)" -o release.zip
# http://www.starkandwayne.com/blog/how-to-download-the-latest-release-from-github/
# https://unix.stackexchange.com/questions/323604/pipe-the-result-of-a-cut-command-to-curl