Skip to content

Instantly share code, notes, and snippets.

View alirafique99's full-sized avatar
💻
working...

Muhammad Ali Rafique alirafique99

💻
working...
View GitHub Profile
@up1
up1 / 1.txt
Last active April 27, 2021 16:04
.Net Core :: Slow first response
$curl -o /dev/null -s -w %{time_total}\\n https://localhost:5001
0.470427
$curl -o /dev/null -s -w %{time_total}\\n https://localhost:5001
0.034931
$curl -o /dev/null -s -w %{time_total}\\n https://localhost:5001
0.037043
@LucaRosaldi
LucaRosaldi / console-debug-overflow.js
Last active February 24, 2022 10:15
JS: Paste in console to show elements which overflow the viewport horizontally.
/* Paste this snippet in the console */
var docWidth = document.documentElement.offsetWidth;
[].forEach.call(
document.querySelectorAll('*'),
function(el) {
if (el.offsetWidth > docWidth) {
console.log(el);
}
}