Skip to content

Instantly share code, notes, and snippets.

View ohmcodes's full-sized avatar
🚀
Fly high

✪Ohmcodes™✪ ohmcodes

🚀
Fly high
View GitHub Profile
@ohmcodes
ohmcodes / exploratory_device.verse
Created December 28, 2024 00:10 — forked from spilth/exploratory_device.verse
Making class attribute editable in UEFN
using { /Fortnite.com/Devices }
using { /Verse.org/Simulation }
using { /UnrealEngine.com/Temporary/Diagnostics }
using { /UnrealEngine.com/Temporary/SpatialMath }
direction := enum{Up, Down, Left, Right}
coordinates := struct<concrete>:
@editable
X : float = 0.0
@ohmcodes
ohmcodes / README.md
Created September 19, 2024 01:36 — forked from jamiephan/README.md
A script to automatically add ALL items to your account in quixel

Script to add all items from quixel

As quixel is being removed, all items are free to aquire. This script is to automate the process to add items to your account (As of writing, a total of 18874 items)

Note: This script only tested in the latest version of Chrome.

How to use

  1. Copy the script from below (run.js)
  2. Login into https://quixel.com
@ohmcodes
ohmcodes / dyndns_crontab.sh
Created December 24, 2022 23:15 — forked from orendon/dyndns_crontab.sh
dyndns - update namecheap dynamic dns using crontab
# hourly
@hourly curl "https://dynamicdns.park-your-domain.com/update?host=HOST_NAME_HERE&domain=YOUR_DOMAIN_HERE&password=YOUR_PASSWORD_HERE&ip=`curl -s echoip.com`"
# every 30 min
0,30 * * * * curl "https://dynamicdns.park-your-domain.com/update?host=@&domain=YOUR_DOMAIN_HERE&password=YOUR_PASSWORD_HERE"
# ddclient (dns client alternative)
http://sourceforge.net/p/ddclient/wiki/Home/
@ohmcodes
ohmcodes / deploy_ssh_key_setup.md
Last active March 4, 2021 23:35
Deploy and SSH keys Setup

This guide will teach you how to use Github Deploy keys in your Hosting server here Im gonna use AWS lightsail Ubuntu 20

Creating Keygen

ssh-keygen -t rsa -b 4096 -C "[email protected]"

this will appear

Generating public/private rsa key pair.
Enter file in which to save the key (/home/ubuntu/.ssh/id_rsa):