Skip to content

Instantly share code, notes, and snippets.

View daltonbr's full-sized avatar
🎮
Brighton - UK

Dalton Lima daltonbr

🎮
Brighton - UK
View GitHub Profile
@daltonbr
daltonbr / 81-C# Script-NewBehaviourScript.cs.txt
Last active November 29, 2019 10:32
My version of the Template for Unity C# MonoBehaviour, on Mac replace it in /Applications/Unity/Hub/Editor/<UnityVersion>/Unity.app/Contents/Resources/ScriptTemplates/81-C# Script-NewBehaviourScript.cs.txt
using UnityEngine;
#if UNITY_EDITOR
using UnityEngine.Assertions;
#endif
public class #SCRIPTNAME# : MonoBehaviour
{
#region Public Fields
#endregion
@daltonbr
daltonbr / MyLogClass.cpp
Created January 5, 2020 19:32
Unreal Log - my cheat sheet
#include "Engine/Engine.h"
#define PRINT(text) if (GEngine) GEngine->AddOnScreenDebugMessage(-1, 5, FColor::Green,text)
void UMyLogClass::BeginPlay()
{
Super::BeginPlay();
auto Name = Owner->GetName();
UE_LOG(LogTemp, Warning, TEXT("[WorldPosition] (*Log) %s"), *Name);
@daltonbr
daltonbr / RenameAndConvert.sh
Created January 7, 2020 23:56
Convert image formats and remove prefix
# remove prefix in files- batch
for file in bla_*; do mv "$file" "${file#bla_}";done;
# convert image (batch)
sudo apt-get install imagemagick
# convert all tif files into png
mogrify -format png *.tif
@daltonbr
daltonbr / WindowsSwitchPlatform.py
Last active February 19, 2020 18:52
Python script to fast switch platforms in Unity for Windows 10, relies in symlinks
#!/usr/bin/env python3-64
# Windows 10
# You can associate this file in Windows in order to avoid calling the Python interpreter
# right click -> Open With -> Choose Another App, and then choose Python.
import sys
import os
import shutil
from pathlib import Path
@daltonbr
daltonbr / adb.sh
Last active July 15, 2020 20:29
adb commands
# adb docs
# https://developer.android.com/studio/command-line/adb
# check environment variables
# https://developer.android.com/studio/command-line/variables
$ adb devices
$ adb devices -l
# Connecting via WiFi
@daltonbr
daltonbr / AssetReferenceUtility.cs
Created September 29, 2020 17:41
Unity Addressables - Spawning an Objects and Loading a scene
using UnityEngine;
using UnityEngine.AddressableAssets;
using UnityEngine.ResourceManagement.AsyncOperations;
public class AssetReferenceUtility : MonoBehaviour
{
public AssetReference objectToLoad;
public AssetReference accessoryObjectToLoad;
private GameObject instantiatedObject;
private GameObject instantiatedAccessoryObject;
@daltonbr
daltonbr / MayaUnlockNode.py
Created October 14, 2020 11:14
Lock & Unlock nodes in Maya with Python
import maya.cmds as cmds
cmds.LockNode('Locked_Node', lock=False)
# another approach
# grab all selected nodes
selection = cmds.ls(selection=True)
# unlock and delete them
@daltonbr
daltonbr / iframe-probe.py
Created September 13, 2021 10:29 — forked from alastairmccormack/iframe-probe.py
Shows GOP structure for video file using ffmpeg --show-frames output
#!/usr/bin/env python
#
# Shows GOP structure of video file. Useful for checking suitability for HLS and DASH packaging.
# Example:
#
# $ iframe-probe.py myvideo.mp4
# GOP: IPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP 60 CLOSED
# GOP: IPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP 60 CLOSED
# GOP: IPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP 60 CLOSED
# GOP: IPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP 60 CLOSED
@daltonbr
daltonbr / iframe-steady.py
Created September 21, 2021 08:52
Batch reencode video files with FFmpeg - version 1.0 - using python 3.9
#!/usr/bin/env python3
#
# Batch file converter to reencode mp4 videos with a steady fixed i-frame interval (default to 25)
#
# Tested under python 3.9.7
# Requires ffmpeg installed
# On Mac run 'brew install ffmpeg'
#
# You may need to give permission to this script
# $ chmod 700 ./iframe-steady.py
@daltonbr
daltonbr / Convert .mov or .MP4 to .gif.md
Created February 5, 2022 14:37 — forked from SheldonWangRJT/Convert .mov or .MP4 to .gif.md
Convert Movie(.mov) file to Gif(.gif) file in one command line in Mac Terminal

This notes is written by Sheldon. You can find me with #iOSBySheldon in Github, Youtube, Facebook, etc.

Need

Convert .mov/.MP4 to .gif

Reason

As a developer, I feel better to upload a short video when I create the pull request to show other viewers what I did in this PR. I tried .mov format directly got after finishing recording screen using Quicktime, however, gif offers preview in most web pages, and has smaller file size.

This is not limited to developer, anyone has this need can use this method to convert the files.