Skip to content

Instantly share code, notes, and snippets.

View aozen's full-sized avatar
🏠
Yo

Ali Özen aozen

🏠
Yo
View GitHub Profile
@aozen
aozen / sinefil
Created July 2, 2026 11:57
Sinefil Export
'use strict';
const path = require('path');
const os = require('os');
const fs = require('fs');
const depsDir = path.join(os.homedir(), '.sinefil', 'node_modules');
let puppeteer;
try {
puppeteer = require(path.join(depsDir, 'puppeteer-extra'));
@aozen
aozen / generatePassword.js
Last active November 18, 2025 20:45
generate random password with given length
#!/usr/bin/env node
const crypto = require('crypto')
const defaultOpts = {
length: 20,
includeLower: true,
includeUpper: true,
includeNumbers: true,
includeSymbols: true,
excludeSimilar: true, // avoid 0, O, l, 1