Skip to content

Instantly share code, notes, and snippets.

@0xdevalias
0xdevalias / reverse-engineering-webpack-apps.md
Last active August 28, 2025 07:41
Some notes and techniques for reverse engineering Webpack (and a little bit about React/Vue/Angular) apps
@ggreenleaf
ggreenleaf / .env.example
Last active June 30, 2022 12:30
SqlServer and azureite blob emulator docker compose with volumes
SQLSERVER_SA_PASSWORD=%%placeholder%%
SQLSERVER_DATA_PATH=/path/to/some/local/dir/data
SQLSERVER_LOG_PATH=/path/to/some/local/dir/log
SQLSERVER_SECRETS_PATH=/path/to/some/local/dir/secret
AZURITE_DATA_PATH=/path/to/some/local/dir/azurite
MIGRATION_CONNECTION_STRING=%%Placeholder%%
@fabiolimace
fabiolimace / UUIDv6.sql
Last active August 19, 2025 01:47
Functions for generating UUIDv6 and UUIDv7 on PostgreSQL
/*
* MIT License
*
* Copyright (c) 2023-2024 Fabio Lima
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
@rafaeljesus
rafaeljesus / bb.js
Created December 4, 2015 13:28 — forked from stephantabor/bb.js
Bluebird .each vs .mapSeries vs .map
var Promise = require('bluebird');
var funcs = Promise.resolve([500, 100, 400, 200].map((n) => makeWait(n)));
funcs
.each(iterator) // logs: 500, 100, 400, 200
.then(console.log) // logs: [ [Function], [Function], [Function], [Function] ]
funcs
.mapSeries(iterator) // logs: 500, 100, 400, 200
@staltz
staltz / introrx.md
Last active August 30, 2025 02:27
The introduction to Reactive Programming you've been missing