Skip to content

Instantly share code, notes, and snippets.

View ilobmirt's full-sized avatar

ilobmirt ilobmirt

View GitHub Profile
@ilobmirt
ilobmirt / Unit_Factory_Partner.mlog
Created November 6, 2023 04:10
Mindustry Scripts
#==================================================================================================#
#Unit_Factory_Partner.mlog
#-------------------------
#By Ilobmirt - 2023NOV05
#Manage associates to get Items into storage unit. This is to make units remotely without conveyors
#==================================================================================================#
globals:
#Imports
@ilobmirt
ilobmirt / SGIT.bat
Last active August 7, 2023 04:50
Simple Git for Dos Proof of Concept
@ECHO OFF
SET GIT_URL=https://github.com
SET GIT_USER=%1
SET GIT_PROJECT=%2
SET GIT_BRANCH=%3
SET GIT_TARGET=%GIT_URL%/%GIT_USER%/%GIT_PROJECT%/tarball/%GIT_BRANCH%
SET /E TMPNAME=randstr 8
ECHO GIT REPOSITORY - %GIT_USER%/%GIT_PROJECT%/%GIT_BRANCH%
@ilobmirt
ilobmirt / FAST.HTML
Last active July 22, 2023 05:53
Fur Affinity Streaming Tool
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=windows-1252">
<TITLE>Fur Affinity Streaming Tool</TITLE>
<META NAME="GENERATOR" CONTENT="OpenOffice.org 3.1 (Win32)">
<META NAME="AUTHOR" CONTENT="Ilobmirt Tenk">
<STYLE TYPE="text/css">
<!--
TD P { text-align: center }
@ilobmirt
ilobmirt / provision_deploy_env.sh
Last active July 7, 2023 20:52
Provisions the Debian Host to allow for SSH from Github user public key
#!/bin/bash
#=================================================================================================#
#provision_deploy_env.sh
#----------
#by: ilobmirt @ 2023_JUL_07
#
#Sets up this node
#=================================================================================================#
@ilobmirt
ilobmirt / refresh_vagrant.sh
Created March 5, 2023 22:19
Brings down and up the target vagrant environment, then re-establishes the ssh connection host_ids
#!/bin/bash
#==================================================================================================#
#refresh_vagrant.sh
#-----------------------
#by: ilobmirt 2023 MAR 05
#
#Brings down and up the target vagrant environment, then re-establishes the ssh connection host_ids
#==================================================================================================#
@ilobmirt
ilobmirt / shared_functs.lib
Last active July 7, 2023 20:21
Shared library for general BASH scripting
#!/bin/bash
#=================================================================================================#
#shared_functs.lib
#----------
#by: ilobmirt @ 2023_JUL_07
#
#Central location for functions shared among various scripts
#=================================================================================================#
@ilobmirt
ilobmirt / install_envx86.sh
Created January 25, 2022 09:36
Sets up an x86 environment within an your arm based debian pc from which you could run x86 apps
#!/bin/bash
#=================================================================================================#
#install_envx86.sh
#----------
#by: ilobmirt @ 2022_JAN_25
#
#Sets up an x86 environment within an your arm based pc from which you could run x86 apps
#=================================================================================================#
@ilobmirt
ilobmirt / install_box64.sh
Last active January 17, 2022 04:01
Downloads, compiles, and sets up box64 targeted towards the arm64 raspberry pi 4 running raspbian
#!/bin/bash
#=================================================================================================#
#install_box64.sh
#----------
#by: ilobmirt @ 2022_JAN_16
#
#Downloads, compiles, and sets up box64 targeted towards the arm64 raspberry pi 4 running raspbian
#Learn more about box64 at the project's github page - https://github.com/ptitSeb/box64
#=================================================================================================#
@ilobmirt
ilobmirt / install_zoom_x64.sh
Last active January 17, 2022 04:03
Downloads, exctracts, and sets up amd64 version of zoom for linux. Typically for box64 on arm64
#!/bin/bash
#=================================================================================================#
#install_zoom.sh
#----------
#by: ilobmirt @ 2022_JAN_16
#
#Downloads, exctracts, and sets up amd64 version of zoom for linux. Typically for box64 on arm64
#Learn more about box64 at the project's github page - https://github.com/ptitSeb/box64
#Zoom is mainly found and available through their main website - https://zoom.us/
@ilobmirt
ilobmirt / get_pkg64.sh
Last active January 17, 2022 04:05
get_pkg64
#!/bin/bash
#=================================================================================================#
#get_pkg.sh
#----------
#by: ilobmirt @ 2022_JAN_16
#
#Uses apt to download librarys of a specific architecture and install them to a custom directory
#I use this to download arm64 libraries that will be used for applications running under box64
#Learn more about box64 at the project's github page - https://github.com/ptitSeb/box64