Skip to content

Instantly share code, notes, and snippets.

Lots of folks have asked me about my thoughts on Kaseya’s purchase of Datto:

Until recently I have been very much telling everyone to assume positive intent. Kaseya is looking to continue Datto’s success. In general, people don’t spend 6+ Billion dollars on something they intend to break. Change is inevitable and mistakes will be made but by and large Datto should expect to continue to be the company that is loved by employees and customers alike.

This past week, many current members of the Datto team have reached out deeply dismayed. There is a concern that the current trajectory from Datto’s new owners will snuff the flame that makes Datto a place to come “Do your life’s work.”

I am not associated with the company any more so my understanding of the specifics comes entirely second hand. Current team members have reached out and described the following:

- Sidelining Employee Resource Groups that support under represented people at the company

DaVinci Resolve Scripting Documentation

Updated as of 08 March 2019


In this package, you will find a brief introduction to the Scripting API for DaVinci Resolve Studio. Apart from this README.txt file, this package contains folders containing the basic import modules for scripting access (DaVinciResolve.py) and some representative examples.

Overview

As with Blackmagic Design Fusion scripts, user scripts written in Lua and Python programming languages are supported. By default, scripts can be invoked from the Console window in the Fusion page, or via command line. This permission can be changed in Resolve Preferences, to be only from Console, or to be invoked from the local network. Please be aware of the security implications when allowing scripting access from outside of the Resolve application.

function Backup-Profile {
[CmdletBinding()]
param (
[string]
$Path = "C:\support\git\gitwork\profile",
[switch]
$Push
)
@HarmJ0y
HarmJ0y / LNKBackdoor.ps1
Created July 4, 2016 20:49
Functions to 'backdoor' .LNK files with additional functionality and enumerate all 'backdoored' .LNKs on a system.
function Set-LNKBackdoor {
<#
.SYNOPSIS
Backdoors an existing .LNK shortcut to trigger the original binary and a payload specified by
-ScriptBlock or -Command.
Author: @harmj0y
License: BSD 3-Clause
Required Dependencies: None
@emiliano-poggi
emiliano-poggi / call-posh-funct.bat
Created April 8, 2011 20:35
BATCH: Call from batch file a function inside a powershell script
powershell ". .\MyFunctions.ps1; MyFunction -Param1 \"String\" -Param2 777"