Skip to content

Instantly share code, notes, and snippets.

@vkechagias
vkechagias / git-tree.sh
Created June 3, 2020 13:53
Git tree in cli
#!/bin/bash
git log --oneline --graph --color --all --decorate
@vkechagias
vkechagias / tourism-mobile.json
Last active July 27, 2020 16:45
Tourism+ lighthouse report
{
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36",
"environment": {
"networkUserAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3963.0 Mobile Safari/537.36 Chrome-Lighthouse",
"hostUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36",
"benchmarkIndex": 1214
},
"lighthouseVersion": "6.0.0",
"fetchTime": "2020-07-27T16:14:55.670Z",
"requestedUrl": "http://localhost/mtt-tourismplus/site/d8/",
@vkechagias
vkechagias / rename.sh
Last active February 1, 2021 14:43
Mass rename .yml files in shell from cleanplus to corporateplus
rename 's/cleanplus/corporateplus/g' *.yml
@vkechagias
vkechagias / break-word.css
Created May 5, 2021 15:33
Break long overflowing strings in Chrome
* {
overflow-wrap: break-word;
}