This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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 |