Skip to content

Instantly share code, notes, and snippets.

View ReactorboY's full-sized avatar
🏠
Chilling

Muhammad Hussain ReactorboY

🏠
Chilling
  • 12:02 (UTC +05:30)
View GitHub Profile
@dehamzah
dehamzah / generate.js
Last active October 27, 2024 00:48
Generate secret key in NodeJS
require('crypto').randomBytes(48, function(err, buffer) { var token = buffer.toString('hex'); console.log(token); });
@jayj
jayj / flexbox.less
Last active April 22, 2025 14:38
CSS3 Flexbox - LESS Mixins
// --------------------------------------------------
// Flexbox LESS mixins
// The spec: http://www.w3.org/TR/css3-flexbox
// --------------------------------------------------
// Flexbox display
// flex or inline-flex
.flex-display(@display: flex) {
display: ~"-webkit-@{display}";
display: ~"-ms-@{display}box"; // IE10 uses -ms-flexbox