Skip to content
View lclibardi's full-sized avatar
  • San Francisco - CA

Block or report lclibardi

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Cygwin Windows Installation Cygwin Windows Installation
    1
    @echo off
    2
    
                  
    3
    set curdir=%~dp0
    4
    
                  
    5
    if not exist "%curdir%\setup-x86_64.exe" (
  2. Get Quicktime Media DateEncoded Exif... Get Quicktime Media DateEncoded Exif data
    1
    '''	
    2
    These are 5 different methods that attempt to retrieve the Quicktime property metadata "Media DateEncoded" from an 'mp4' file.	
    3
    '''
    4
    
                  
    5
    import os
  3. Recursively import all nested refere... Recursively import all nested references in a Maya scene.
    1
    // IMPORT ONLY TOP LEVEL REFERENCES
    2
    string $references[] = `ls -type "reference"`;
    3
    for ( $r in $references)
    4
    {
    5
        string $ref = `referenceQuery -filename $r`;
  4. A quick way to reset the feather cur... A quick way to reset the feather curves in Nuke's Roto node
    1
    # Current frame on the timeline
    2
    frm = nuke.frame()
    3
    
                  
    4
    # Iterate over all Roto nodes
    5
    for rotoNode in nuke.allNodes('Roto'):
  5. Autodesk Maya tool with user interfa... Autodesk Maya tool with user interface to fit a rigid transform to a set of locators.
    1
    import numpy as np
    2
    from math import sqrt
    3
    import maya.cmds as cmds
    4
    from maya.api import OpenMaya
    5
    
                  
  6. Converts all keys and values of a di... Converts all keys and values of a dictionary to ASCII strings
    1
    import unicodedata
    2
    
                  
    3
    def stringify_dictionary(dic):
    4
        """
    5
        Converts all keys and values of a dictionary to ascii strings