I hereby claim:
- I am nurodev on github.
- I am nurodev (https://keybase.io/nurodev) on keybase.
- I have a public key ASBgX1bDMDjLlEoRgHUNg9iTXQNwFSn2fh_nFWSOalZXSAo
To claim this, I am signing this object:
import { createHash } from "node:crypto"; | |
const COLOR_NAMES = ["red", "green", "blue"]; | |
const COLOR_SHADES = [500, 600, 700]; | |
const COLORS: Record< | |
typeof COLOR_NAMES[number], | |
Record<typeof COLOR_SHADES[number], string> | |
> = { |
// pages/api/auth/[...nextauth].ts | |
import NextAuth from 'next-auth'; | |
import TwitterProvider from 'next-auth/providers/twitter'; | |
import type { OAuthConfig, OAuthUserConfig, Provider } from 'next-auth/providers'; | |
/** | |
* Supported Provider Type | |
* |
/** | |
* Note: Requires the following dependencies: | |
* - `motion` | |
* - `react-use` | |
* - `is-web-crawler` | |
*/ | |
import { animate, spring } from 'motion' | |
import { isCrawlerUserAgent } from 'is-web-crawler' | |
import { useEffect, useRef } from 'react' |
import { randomInt } from "crypto"; | |
interface GenerateOtpOptions { | |
/** | |
* Chars | |
* | |
* @description Whether to include A-Z characters in the generated passcode | |
* | |
* @default true | |
*/ |
[package] | |
name = "hubble" | |
version = "1.1.1" | |
authors = ["N U R O ™"] | |
edition = "2018" | |
[dependencies] | |
egg-mode = "0.13.0" | |
failure = "0.1.6" | |
headless_chrome = "0.9.0" |
[package] | |
name = "cosmo" | |
version = "1.1.1" | |
authors = ["N U R O ™"] | |
edition = "2018" | |
[dependencies] | |
egg-mode = "0.13.0" | |
failure = "0.1.6" | |
reqwest = "0.9.22" |
# Host directory paths | |
config_dir=/mnt/Pi/config/ | |
downloads_dir=/mnt/Pi/downloads/ | |
media_dir=/mnt/Pi/media/ |
# Host directory paths | |
portainer_dir=dir_name/ | |
pihole_dir=dir_name/ | |
dnsmasq_dir=dir_name/ | |
gateway_dir=dir_name/ | |
# Other | |
server_ip=ip_address |
I hereby claim:
To claim this, I am signing this object:
sudo apt-get update && sudo apt-get upgrade && sudo apt-get install apache2 php5 php5-gd sqlite php5-sqlite php5-curl -y && sudo service apache2 restart && cd /var/www/html && sudo wget https://download.nextcloud.com/server/releases/nextcloud-12.0.2.zip && sudo unzip -q nextcloud-12.0.2.zip && sudo rm -rf ./nextcloud-12.0.2.zip && sudo mkdir -p /var/www/html/nextcloud/data && sudo chown www-data:www-data /var/www/html/nextcloud/data && sudo chmod 750 /var/www/html/nextcloud/data && cd /var/www/html/nextcloud && sudo chown www-data:www-data config apps && sudo reboot |