Skip to content

Instantly share code, notes, and snippets.

View nugmanoff's full-sized avatar
:octocat:

Aidar Nugmanoff nugmanoff

:octocat:
View GitHub Profile
@thecodeboss
thecodeboss / prisma-slonik-usage.ts
Created July 22, 2022 22:01
Prisma/Slonik Usage Example
import { PrismaClient } from '@prisma/client';
import type { User } from '@prisma/client';
import { createPool, sql } from 'slonik';
export const buildBaseConnectionURL = (config) => {
return (
'postgresql://' +
config.DB_USER +
':' +
config.DB_PASS +
@0xdevalias
0xdevalias / reverse-engineering-webpack-apps.md
Last active July 30, 2025 10:22
Some notes and techniques for reverse engineering Webpack (and a little bit about React/Vue/Angular) apps
@0xdevalias
0xdevalias / _deobfuscating-unminifying-obfuscated-web-app-code.md
Last active August 1, 2025 06:12
Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code