Skip to content

Instantly share code, notes, and snippets.

View martijnvdbrug's full-sized avatar

Martijn martijnvdbrug

View GitHub Profile
@michaelbromley
michaelbromley / hunt-shai-hulud.js
Created November 25, 2025 08:20
Script to detect packages affected by Shai Hulud's Return - Nov 2025
#!/usr/bin/env node
import fs from 'fs';
import path from 'path';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
// Source of this list:
@WinterSilence
WinterSilence / css-padding-hack.css
Last active September 4, 2020 11:57
CSS padding hack for create block with responsive square image
/* Example:
<div class="thumbnail">
<div class="square-box">
<a href="#"><img src="..." class="img-responsive" alt="..."></a>
</div>
</div>
*/
.square-box {
display: table;