This file contains hidden or 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
# Replacement Data Retrieval | |
# Retrieves data from replacement coms | |
# Also sends out an email to users via a input file and a CSV | |
# Robin Universe [D] | |
# 03 . 11 . 25 | |
param ( | |
[switch]$email, | |
[string]$CMDrive = "i dunno! im just a dog.", | |
[string]$csv = "replacements.csv", |
This file contains hidden or 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
# Semi Manually """"UPDATE"""" Visual Studio Community 2022 on some specific computers | |
# This is fucked up | |
# Robin Universe [D] | |
# 03 . 21 . 25 | |
$coms = "C223_04","C223_05","A213_01" | |
foreach ($com in $coms){ | |
$s = New-PSSession $com | |
echo " [$com]`tSTART" |
This file contains hidden or 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
#include <furi.h> | |
#include <input/input.h> | |
#include <furi_hal_gpio.h> | |
#include <furi/core/log.h> | |
#define GPIO_BUTTON_UP &gpio_ext_pa7 | |
#define GPIO_BUTTON_DOWN &gpio_ext_pa6 | |
#define GPIO_BUTTON_LEFT &gpio_ext_pa4 | |
#define GPIO_BUTTON_RIGHT &gpio_ext_pb3 | |
#define GPIO_BUTTON_OK &gpio_ext_pb2 |
This file contains hidden or 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
#include <furi.h> | |
#include <input/input.h> | |
#include <furi_hal_gpio.h> | |
#include <furi/core/log.h> | |
#define GPIO_BUTTON_UP &gpio_ext_pa7 | |
#define GPIO_BUTTON_DOWN &gpio_ext_pa6 | |
#define GPIO_BUTTON_LEFT &gpio_ext_pa4 | |
#define GPIO_BUTTON_RIGHT &gpio_ext_pb3 | |
#define GPIO_BUTTON_OK &gpio_ext_pb2 |
This file contains hidden or 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
#include <furi.h> | |
#include <input/input.h> | |
#include <furi_hal_gpio.h> | |
#include <furi/core/log.h> // Include logging library | |
// Global queue handle | |
static FuriMessageQueue* input_queue = NULL; | |
static int32_t gpio_input_worker(void* context) { | |
UNUSED(context); |
This file contains hidden or 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
# Nuke-Sophos | |
# obliterate all sophos installations in a specified SCCM device group | |
# Robin Universe [D] | |
# 02 . 14 . 25 | |
param ( | |
[string]$collectionName, | |
[string[]]$TestComputers | |
) |
This file contains hidden or 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
# PowerWatch | |
# Monitor a directory for changes and upload the file to a filehost, then include a link to that file in a webhook. | |
# Daisy Universe [D] | |
# 05 . 08 . 24 | |
$filehost_url = "https://basedbin.fly.dev" | |
# You should point this to a trusted filehost. this script is set up to use https://github.com/wantguns/bin | |
$watch_path = "C:\Users\robins\Documents\PowerWatch" | |
# Pont this to your screenshots folder |
This file contains hidden or 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 | |
# REQUIRES: inotify-tools, bash, curl | |
# Automatic Image Webhook Poster | |
# Detects when an image is created in a specific folder, uploads it to a filehost, and then posts the link in an Embed to a Discord webhook | |
# Essentially made just to allow for automatic minecraft screenshot uploads as soon as I press F2 | |
# Daisy Universe [D] | |
# 05 . 07 . 24 |
This file contains hidden or 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
# who am i ? | |
# Simple flask server that checks the current fronter of a system and returns their name | |
# Daisy Universe [Tr] | |
# 04 . 24 . 24 | |
from pluralkit import Client | |
from flask import Flask | |
from flask_cors import CORS, cross_origin | |
from threading import Thread, current_thread | |
import asyncio |
This file contains hidden or 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/sh | |
clipboard=`xclip -o` # Grab the contents of the clipboard | |
DLDIR="$1" # Takes whatever dir was passed to it and sets it to the downloads dir | |
OPEN="$2" # Is there a second arg? if there is, set OPEN to whatever it is | |
NAME="${clipboard##*/}" # Get everything past the last / | |
EXT="${NAME##*.}" # Grab the file extension by itself | |
NAME="${NAME%.*}" # Remove the file extension from the filename | |
NAME="${NAME////}" # Remove any possible remaining / chars |