Skip to content

Instantly share code, notes, and snippets.

View 01F0's full-sized avatar
⛈️

Miro Castberg 01F0

⛈️
View GitHub Profile
@ijprest
ijprest / guidgen.ahk
Created October 6, 2012 20:00
AutoHotkey (AHK) script to generate & paste a new GUID
; Exposes two hotkeys:
; - Win+G generates & pastes a new lowercase guid
; - Win+Shift+G generates & pastes a new UPPERCASE guid
; In both cases, the guid is left on the clipboard so you can easily paste it more than once.
;
GUID()
{
format = %A_FormatInteger% ; save original integer format
SetFormat Integer, Hex ; for converting bytes to hex
VarSetCapacity(A,16)
@edom18
edom18 / rename.py
Created January 19, 2014 13:36
This script is for Blender. Rename objects, meshes, bones and materials' name.
import bpy
for obj in bpy.data.objects:
obj.name = 'replaceObjectName'
for mesh in bpy.data.meshes:
mesh.name = 'replaceMeshName'
for armature in bpy.data.armatures:
armature.name = 'replaceArmatureName'
@drewsberry
drewsberry / UE4-build.bat
Last active February 21, 2024 07:33
UE4 Windows command line building
:: Build client
RunUAT BuildCookRun -project="full_path.uproject"^
-noP4 -platform=Win64^
-clientconfig=Development -serverconfig=Development^
-cook -allmaps -build -stage^
-pak -archive -archivedirectory="Output Directory"
:: Cook client
RunUAT BuildCookRun -project="full_project_path_and_project_name".uproject^
-noP4 -platform=Win64^