Skip to content

Instantly share code, notes, and snippets.

View rogozhka's full-sized avatar
💭
brbrbr

Serge R rogozhka

💭
brbrbr
View GitHub Profile
@rogozhka
rogozhka / gist:d7b96881f81ea9dde89464346c5344fd
Last active May 5, 2017 12:23
Bash copy current directory struct w/o actual content
```bash
find . -type d -exec mkdir -p ../system-backup2/{} \; \
-o -type f -exec touch ../system-backup2/{} \;
```
.nonselectable {
/* -webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;*/
/* use autoprefixer instead */
user-select: none;
}
@rogozhka
rogozhka / css: remove tap flicker
Last active September 6, 2015 11:25
Remove tap flicker on iOS when jQuery .delegate is used
*{
-webkit-tap-highlight-color:transparent;
}