Skip to content

Instantly share code, notes, and snippets.

View kyzsuukii's full-sized avatar
🌌
sleep

hikki kyzsuukii

🌌
sleep
View GitHub Profile
import { Injectable, OnModuleDestroy, OnModuleInit } from '@nestjs/common';
import { ConfigService } from '@nestjs/config';
import { drizzle, NodePgDatabase } from 'drizzle-orm/node-postgres';
import { Pool } from 'pg';
import * as schema from 'src/drizzle/drizzle.schema';
@Injectable()
export class Drizzle implements OnModuleInit, OnModuleDestroy {
private pool: Pool;
public db: NodePgDatabase<typeof schema>;
@kyzsuukii
kyzsuukii / wadb.sh
Last active January 25, 2025 13:33
enable adb wireless quickly
#!/bin/bash
check_root() {
if [ "$(id -u)" -ne 0 ]; then
echo "Error: This script must be run as root"
exit 1
fi
}
enable_wireless_adb() {
@kyzsuukii
kyzsuukii / typingtesthack.js
Last active November 23, 2024 16:26
typing test hack
// ==UserScript==
// @name 10fastfingers hack
// @namespace http://tampermonkey.net/
// @version 1.6
// @description Simulate typing and auto correct
// @license MIT
// @author kyzsuki
// @match https://10fastfingers.com/typing-test/*
// @match https://typingtop.com/*/typing-test
// @grant none