This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Scriptable script | |
// Execute Widget to create a one-time reminder for your sheduled workshift | |
// change the amounts of minutes to your work-duration | |
// 8 hours = 480 | |
// 8 hours work + 30 min break = 510 | |
// etc | |
let minutes = 460 | |
let titleFontSize = 22 | |
let reminderCategory = "Worktime" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name GitLab Always Show Path Remove Breadcrumbs | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Click on the Show Path Breadcrumb button to always display the full path | |
// @author wolfposd | |
// @match https://gitlab.com/* | |
// @icon https://about.gitlab.com/ico/favicon.ico?cache=2022041 | |
// @grant none | |
// @run-at document-end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// This script was downloaded using ScriptDude. | |
// Do not remove these lines, if you want to benefit from automatic updates. | |
// source: https://gist.github.com/wolfposd/596cacf6958a5e2bfbbe2c7ff295a467/raw/incidence.js; docs: https://gist.github.com/wolfposd/596cacf6958a5e2bfbbe2c7ff295a467/; | |
// Corona Zahlen Hamburg | https://www.hamburg.de/corona-zahlen | |
// Credits: | |
// klaus-schuster: https://gist.github.com/klaus-schuster/0537cd7f491a67ce61fe9064c4b4e932 | |
// kevinkub https://gist.github.com/kevinkub/46caebfebc7e26be63403a7f0587f664 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: gray; icon-glyph: vector-square; | |
// script : PanoramaImageSplit.js | |
// version : 1.0.0 | |
// description: Splits Panorama Images into multiple for InstaStories | |
// author : @wolfposd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from Crypto.Cipher import AES | |
from Crypto.Util import Counter | |
import struct | |
""" | |
typedef struct boot_dat_hdr | |
{ | |
unsigned char ident[0x10]; | |
unsigned char sha2_s2[0x20]; | |
unsigned int s2_dst; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Download tsschecker_macos from http://api.tihmstar.net/builds/tsschecker/tsschecker-macos-latest.zip | |
# Extract it to the same directory as run_tss | |
# change the config below | |
# | |
# In terminal: | |
# cd <DIR-OF-FILES> | |
# chmod +x run_tss | |
# ./run_tss |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c) 2016 wolfposd | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script created by @wolfposd for XCode-Built-Apps | |
# ==== USAGE ==== | |
# to execute the script call in terminal: | |
# sh fallbackxcodebuiltappdeb.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.File; | |
import java.io.FilenameFilter; | |
import java.io.PrintStream; | |
/** | |
* The MIT License (MIT) | |
* Copyright (c) <2014> <@wolfposd> | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
f=$(pwd) | |
out="${f}/iconoutputfolder" | |
mkdir $out | |
sips --resampleWidth 29 "${f}/${1}" --out "${out}/Icon-29pt_at_1.png" | |
sips --resampleWidth 58 "${f}/${1}" --out "${out}/Icon-29pt_at_2.png" | |
sips --resampleWidth 87 "${f}/${1}" --out "${out}/Icon-29pt_at_3.png" |
NewerOlder