Skip to content

Instantly share code, notes, and snippets.

View Manikhin-KM's full-sized avatar

Константин Манихин Manikhin-KM

View GitHub Profile
@Manikhin-KM
Manikhin-KM / moscow-time.js
Last active July 17, 2018 09:05
Moscow time
setInterval(function() {
var currentTime = new Date().toLocaleTimeString('ru-RU', { timeZone: 'Europe/Moscow' });
document.getElementById('currentTime').innerHTML = currentTime;
}, 1000);
@Manikhin-KM
Manikhin-KM / change-access-dir-and-files-755.txt
Last active July 17, 2018 09:05
Изменить все каталоги и файлы на 755
Чтобы изменить все каталоги на 755 (drwxr-xr-x):
$ sudo find dir/ -type d -exec chmod 755 {} \;
Чтобы изменить все файлы на 644 (-rw-r--r--):
$ sudo find dir/ -type f -exec chmod 644 {} \;
@Manikhin-KM
Manikhin-KM / button.sass
Created April 2, 2017 02:18 — forked from agragregra/button.sass
Button Sass Styles (Universal Starter)
.button
display: inline-block
border: none
color: #fff
text-decoration: none
background-color: $accent
padding: 15px 45px
font-size: 13px
text-transform: uppercase
font-weight: 600