Skip to content

Instantly share code, notes, and snippets.

View theflorr's full-sized avatar

TheFlorr theflorr

  • Denmark
  • 16:38 (UTC -12:00)
View GitHub Profile
@theflorr
theflorr / Program.cs
Created May 26, 2025 06:53
Chrome Passwords extractor/stealer v20 - Working as of mid 2025
using System;
using System.IO;
using System.Text;
using System.Runtime.InteropServices;
using System.Security.Cryptography;
using System.Data.SQLite;
using System.Collections.Generic;
using System.Text.Json;
class ChromePasswordRecovery
@ericelliott
ericelliott / env-examples.md
Last active March 21, 2026 23:23
env-examples

Most configuration really isn't about the app -- it's about where the app runs, what keys it needs to communicate with third party API's, the db password and username, etc... They're just deployment details -- and there are lots of tools to help manage environment variables -- not the least handy being a simple .env file with all your settings. Simply source the appropriate env before you launch the app in the given env (you could make it part of a launch script, for instance).

env files look like this:

SOMEVAR="somevalue"
ANOTHERVAR="anothervalue"

To source it:

$ source dev.env # or staging.env, or production.env, depending on where you're deploying to