Skip to content

Instantly share code, notes, and snippets.

@robsgithub
robsgithub / Text Symbols
Created July 24, 2018 18:45
Uncommon text symbols for ctrl+c
#Uncommon text symbols for ctrl+c
@robsgithub
robsgithub / Quotes and Notes to live by.md
Last active August 2, 2018 21:21
A collection of quotes and Notes to review often..

Quotations and notes to live by:

“The opposite of love is not hate, it's indifference. The opposite of art is not ugliness, it's indifference. The opposite of faith is not heresy, it's indifference. And the opposite of life is not death, it's indifference.” ― Elie Wiesel

Regular expressions with python:

Common Examples:

import re

#Using match

Folder operations

Check for existence and create

if not os.path.exists( export_directory ) :
    os.makedirs(export_directory)
    os.mkdir(export_directory)
import pymel.tools.mel2py as mel2py
convert = mel2py.mel2pyStr('''
''')
print convert
@robsgithub
robsgithub / indexerweb
Created July 15, 2019 21:08
Gist of cleaning up my network drive
http://indexerweb/#/_/net/homes/rgarcia
@robsgithub
robsgithub / Make box houdini vex
Created October 15, 2019 18:59
make a box in houdinis vex language
int pnt0 = addpoint(0, {1,0,1});
int pnt1 = addpoint(0, {1,0,-1});
int pnt2 = addpoint(0, {-1,0,-1});
int pnt3 = addpoint(0, {-1,0,1});