Skip to content

Instantly share code, notes, and snippets.

@sbirch
sbirch / bookmarklet.js
Created December 17, 2012 05:19
Bookmarklet to make a YouTube video "fullscreen" in your browser like Vimeo.
javascript:(function(){var s = window.location.search.substring(1).split(/[=&]/); window.location.assign('http://www.youtube.com/watch_popup?v='+s[s.indexOf('v')+1]+'&feature=youtu.be&hd=1');})();
@MrDrews
MrDrews / Default.sublime-theme
Created April 24, 2013 14:56
Solarized (dark) -- Complement the stock Solarized (dark) theme in sublime text 3 by placing this `Default.sublime-theme` inside the `Packages/User` folder. It will recolor the sidebar.
[
{
"class": "sidebar_container",
// $base01: #586e75
"layer0.tint": [88,110,117],
"layer0.opacity": 1.0,
"layer0.draw_center": false,
"layer0.inner_margin": [0, 0, 1, 0],
"content_margin": [0, 0, 1, 0]
@Bilka2
Bilka2 / webhook.py
Last active July 21, 2025 04:18
Simple discord webhook with python
import requests # dependency
url = "<your url>" # webhook url, from here: https://i.imgur.com/f9XnAew.png
# for all params, see https://discordapp.com/developers/docs/resources/webhook#execute-webhook
data = {
"content" : "message content",
"username" : "custom username"
}
@X-Raym
X-Raym / DaVinci Resolve Scripting Doc.txt
Last active August 9, 2025 08:47
DaVinci Resolve Scripting API Doc v20.1
Last Updated: 6 Jun 2025
------------------------
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.
From v16.2.0 onwards, the nodeIndex parameters accepted by SetLUT() and SetCDL() are 1-based instead of 0-based, i.e. 1 <= nodeIndex <= total number of nodes.
Overview
--------
As with Blackmagic 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,