I hereby claim:
- I am delivator on github.
- I am delivator (https://keybase.io/delivator) on keybase.
- I have a public key ASCSN78grQ-QOlTffm_S0ELDaFY4Tc8wlsLGZ3MbJUwSewo
To claim this, I am signing this object:
import os | |
import sys | |
from siaskynet import Skynet | |
# upload | |
print("Uploading", str(sys.argv[1])) | |
skylink = Skynet.UploadFile(str(sys.argv[1])) | |
print("Upload successful, skylink: " + skylink) | |
os.system("echo " + skylink + " | clip") |
#!/bin/bash | |
function paste.click(){ | |
if [ -z "$1" ]; then | |
curl -s --data-binary @- https://paste.click/s/; | |
else | |
curl -s --data-binary @$1 https://paste.click; | |
fi; | |
}; |
// ==UserScript== | |
// @name Amazon Smile redirect | |
// @namespace https://Bgmn.me | |
// @version 0.4 | |
// @description Redirects www.amazon.de & www.amazon.com url to the respective smile.amazon.tdl domain | |
// @author Bgmn.me | |
// @include https://www.amazon.* | |
// @grant none | |
// @homepage https://gist.github.com/Delivator/1c124681d85d0e9046214397ee6aaed3 | |
// ==/UserScript== |
sendkey esc press | |
wait 250 | |
setcursor 960 624 | |
wait 10 | |
sendmouse left click | |
wait 250 | |
setcursor 847 721 | |
wait 10 | |
sendmouse left click |
# How long it should wait between every loop in seconds | |
$secondsToWait = 5 | |
# The volume you want in percent (0.92 = 92%) | |
$volume = 1.00 | |
Write-Host "Starting invinite loop, press CTRL + C or close the window to stop" | |
while (1) { | |
Start-Process -FilePath "nircmd.exe" -WorkingDirectory $PSScriptRoot -ArgumentList "setsysvolume $([math]::floor(65535 * $volume))","default_record" -Wait | |
Write-Host "Volume set to $($volume * 100)%" | |
Start-Sleep -Seconds $secondsToWait |
$location = Get-Location | |
$files = Get-ChildItem $location -Filter "*.mp4" | Sort-Object CreationTime | |
$quality = "36" | |
$counter = 0 | |
$total = $files.Length | |
# Change Write-Progress Style | |
$PSStyle.Progress.MaxWidth = 240 | |
Write-Host "Transcoding all mp4 files in this directory to mkv using NVENC AV1 with CQ $quality" |
I hereby claim:
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Disk Usage</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link href="material-icons.css" rel="stylesheet"> | |
<link rel="stylesheet" href="materialize.min.css"> | |
<style> |
$i = 1 | |
Get-ChildItem *.jpg | %{Rename-Item $_ -NewName ("img_{0:D4}.jpg" -f $i++)} |
// ==UserScript== | |
// @name Skribbl drawing downloader | |
// @namespace https://delivator.me/ | |
// @version 0.4 | |
// @description Adds a button to skribbl.io to save the drawing | |
// @author Delivator | |
// @match https://skribbl.io/* | |
// @grant none | |
// @homepage https://gist.github.com/Delivator/091d7aa72e785782a351fe9bcd7f7e1a | |
// @icon https://skribbl.io/res/favicon.png |