Skip to content

Instantly share code, notes, and snippets.

View TIIGRUS's full-sized avatar
💭
I am fine!

Владимир Шевченко TIIGRUS

💭
I am fine!
View GitHub Profile
@rampfox
rampfox / Sideloadly-Error.md
Last active April 3, 2023 07:34
Sideloadly Error windows 10, Guru Meditation [Errno 22]

Sideloadly Error windows 10

Guru Meditation [Errno 22]

the error showed in screen

ERROR: Guru Meditation 8d61e2@1069:2d389a [Errno 22] Invalid argument


@neretin-trike
neretin-trike / pug.md
Last active April 24, 2024 18:22
Туториал по HTML препроцессору Pug (Jade)
@ahmadawais
ahmadawais / gulpfile.js
Last active October 12, 2021 08:21
Gulp: Useing ngrok with BrowserSync
// first run npm install ngrok - then put var ngrok = require('ngrok'); at the top of your gulpfile
var ngrok = require('ngrok');
var browserSync = require('browser-sync')
browserSync({
server: "./app"
}, function (err, bs) {
ngrok.connect(bs.options.get('port'), function (err, url) {
// https://757c1652.ngrok.com -> 127.0.0.1:8080
});
});
@isramv
isramv / jQuery check if empty input add class
Last active June 14, 2022 23:37
Check if input has a value add and remove class jQuery
$('input#edit-keys-1').blur(function(){
tmpval = $(this).val();
if(tmpval == '') {
$(this).addClass('empty');
$(this).removeClass('not-empty');
} else {
$(this).addClass('not-empty');
$(this).removeClass('empty');
}
});
@mixin hover-focus-active() {
&:hover,
&:focus,
&:active { @content }
}
@jtdp
jtdp / gist:5443297
Last active March 13, 2024 12:58
See changes before pulling from remote git repository
# fetch the changes from the remote
git fetch origin
# show commit logs of changes
git log master..origin/master
# show diffs of changes
git diff master..origin/master
# apply the changes by merge..