Skip to content

Instantly share code, notes, and snippets.

View ohmcodes's full-sized avatar
🚀
Fly high

✪Ohmcodes™✪ ohmcodes

🚀
Fly high
View GitHub Profile
@DRayX
DRayX / Pal_enums.hpp
Created January 19, 2024 18:58
Dumped CXX Header for Palworld enums
enum class EClassRepNodeMapping {
NotRouted = 0,
RelevantAllConnections = 1,
Spatialize_Static = 2,
Spatialize_Dynamic = 3,
Spatialize_Dormancy = 4,
EClassRepNodeMapping_MAX = 5,
};
enum class EEnterWaterFlag {
@spilth
spilth / exploratory_device.verse
Created March 27, 2023 01:10
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
@randyesq
randyesq / app.ini
Created February 6, 2019 17:52
gitea config ini file
; This file lists the default values used by Gitea
; Copy required sections to your own app.ini (default is custom/conf/app.ini)
; and modify as needed.
; see https://docs.gitea.io/en-us/config-cheat-sheet/ for additional documentation.
; App name that shows in every page title
APP_NAME = My VCS
; Change it if you run locally
RUN_USER = git
@ArcRanges
ArcRanges / instructions.md
Last active January 18, 2024 09:36
Up and Running on AWS EC2 using Django with files from Git in less than 5 minutes

How to Setup Django in AWS EC2 Instance in less than 5 minutes

I will be using Windows 10, Git Bash, Windows Powershell

Requirements:

- Django Project uploaded on Git
- AWS EC2 Account

Initialization: EC2 Setup:

@keithweaver
keithweaver / domain-to-aws-ec2-instance.md
Created March 20, 2017 23:49
Point Domain to Amazon Web Services (AWS) EC2 Instance

Point Domain to Amazon Web Services (AWS) EC2 Instance

  1. Open the Amazon Route 53 console at https://console.aws.amazon.com/route53/.
  2. If you are new to Amazon Route 53, you see a welcome page; choose Get Started Now for DNS Management. Otherwise, choose Hosted Zones in the navigation pane.
  3. Choose Create Hosted Zone.
  4. For Domain Name, type your domain name.
  5. Choose Create.
  6. Click the Hosted Zone, edit record set.
  7. In the value, add ec2-54-152-134-146.compute-1.amazonaws.com.
  8. Change your DNS file to point to the IPv4 address (This would be in something like GoDaddy).
@sid24rane
sid24rane / udp.js
Created July 25, 2016 08:39
Simple UDP Client and Server in Node.js ==> ( Echo Server )
var udp = require('dgram');
// --------------------creating a udp server --------------------
// creating a udp server
var server = udp.createSocket('udp4');
// emits when any error occurs
server.on('error',function(error){
console.log('Error: ' + error);