Skip to content

Instantly share code, notes, and snippets.

@nafeesb
nafeesb / tflite.md
Last active December 4, 2019 20:46
Keras Tensorflow TFLite common idioms
View tflite.md
@nafeesb
nafeesb / MayaDebug.md
Last active May 19, 2021 09:45
Maya python interactive debugging with Visual Studio Code
View MayaDebug.md
@nafeesb
nafeesb / CMakeNotes.md
Last active August 8, 2023 17:09
CMake b*lls*it
View CMakeNotes.md

CMake is a haneous piece of software, but somehow it has more popularity than others. These are my notes on inane BS I have to deal with time to time in CMake.

CMAKE_DEBUG_POSTFIX

Postfix like _Debug and _Release added to library names in windows.

Verbose Makefile

-DCMAKE_VERBOSE_MAKEFILE=true or make VERBOSE=1

@nafeesb
nafeesb / zmq_pubsub.py
Created April 16, 2019 01:28
Example PUB/SUB from PyZMQ
View zmq_pubsub.py
import zmq
import sys,os,time
#%%
port = '5563'
def server():
context = zmq.Context()
socket = context.socket(zmq.PUB)
socket.bind('tcp://*:%s' % port)
@nafeesb
nafeesb / ue-python.md
Last active August 11, 2019 20:29
Unreal engine python snippets
View ue-python.md

Preamble

import unreal_engine as ue
from unreal_engine.classes import PoseableMeshComponent, SkeletalMesh, Skeleton, SkeletalMeshComponent
from unreal_engine import FTransform, FVector, FRotator, FQuat, FSoftSkinVertex

Access object from editor

actor = ue.editor_get_selected_actors()[0]
@nafeesb
nafeesb / python.md
Last active May 2, 2023 18:43
Useful python
View python.md
@nafeesb
nafeesb / numpy.md
Last active July 28, 2021 21:34
Numpy Idioms
View numpy.md
@nafeesb
nafeesb / openaigym_install.md
Created November 21, 2018 19:00
Installing OpenAI Gym in Windows
View openaigym_install.md
@nafeesb
nafeesb / regression1d.py
Last active January 9, 2019 02:06
pytorch 1d regression
View regression1d.py
import numpy as np
import torch
from torch import nn
from itertools import count
import time
#%%
# make some data
N = 100