Skip to content

Instantly share code, notes, and snippets.

View 0x7n6's full-sized avatar
:octocat:
BeRightBack

Сектумсемпра 0x7n6

:octocat:
BeRightBack
  • Владивосто́к
View GitHub Profile
@0x7n6
0x7n6 / .env
Last active April 22, 2026 20:14
nextcloud-aapanel-docker
# DATABASE
POSTGRES_DB=nextcloud
POSTGRES_USER=nextcloud
POSTGRES_PASSWORD=GantiDenganPasswordDatabaseYangKuat123!
# REDIS
REDIS_PASSWORD=GantiDenganPasswordRedisYangKuat123!
# NEXTCLOUD ADMIN
NEXTCLOUD_ADMIN_USER=ncadmin
@0x7n6
0x7n6 / rewrite.c
Last active January 9, 2026 09:40
rewrite-ojs
# 1) Root: tampilkan dashboard statis
location = / {
try_files /index.html =404;
}
# Optional: biar index.html ke-serve rapi
location = /index.html {
try_files /index.html =404;
}
@0x7n6
0x7n6 / Rscript.log.txt
Last active August 29, 2025 23:03
Pengujian R untuk Validitas dan Reliabilitas Jurumiyah
R version 4.5.1 (2025-06-13) -- "Great Square Root"
Copyright (C) 2025 The R Foundation for Statistical Computing
Platform: aarch64-apple-darwin20
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.
Natural language support but running in an English locale
@0x7n6
0x7n6 / .Cloud.md
Last active April 8, 2025 10:10 — forked from akirco/.Cloud.md
☁️ 一些免费的云资源

IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装;PaaS提供语言环境和框架(可以自己选);SaaS只能使用开发好的软件(卖软件本身);BaaS一般类似于非关系数据库,但各家不通用,有时还有一些其它东西。

其他人的集合

Proxmox

So if you're using Proxmox you need to open up ssh and run the following commands:

  1. Setup a root password
sudo passwd root
@0x7n6
0x7n6 / parallel.sh
Last active December 1, 2023 11:09
parallel.sh
#!/usr/bin/env bash
MEDIA_PATH="/media/$(whoami)/Parallels Tools"
FIXED_PATH="/tmp/parallels_fixed"
if [[ ! -d "${MEDIA_PATH}" ]]; then
echo "Please mount parallels tools disk before install"
exit
fi
echo "Copy install files to ${FIXED_PATH}"