Skip to content

Instantly share code, notes, and snippets.

View zudsniper's full-sized avatar
🎲
snake eyes every time

zod zudsniper

🎲
snake eyes every time
View GitHub Profile
@refo
refo / Disable Microsoft AutoUpdate on MacOS.md
Last active April 15, 2025 03:29
Disable Microsoft AutoUpdate on MacOS (Office 365 updater)

Following commands disables Microsoft AutoUpdate launch agent from launching at boot and periodicaly checking for updates.

sudo defaults write /Library/LaunchAgents/com.microsoft.update.agent.plist Disabled -bool YES
sudo defaults write /Library/LaunchAgents/com.microsoft.update.agent.plist RunAtLoad -bool NO
sudo chflags schg /Library/LaunchAgents/com.microsoft.update.agent.plist

source: https://forums.macrumors.com/threads/how-to-get-rid-of-microsoft-autoupdate.2231809/?post=28384662#post-28384662

@sachinsmc
sachinsmc / xmr btc atomic swap.md
Created September 29, 2021 11:00
List of Rendezvous Points for atomic swap

Bitcoin–Monero Cross-chain Atomic Swap Rendezvous Points

Here is the list of rendezvous point for xmr-btc-swap Atomic swap

/dnsaddr/rendezvous.coblox.tech/p2p/12D3KooWQUt9DkNZxEn2R5ymJzWj15MpG6mTW84kyd8vDaRZi46o

/dns4/rendezvous.xmr.radio/tcp/8888/p2p/12D3KooWN3n2MioS515ek6LoUBNwFKxtG2ribRpFkVwJufSr7ro7

@joekiller
joekiller / a-readme.md
Last active November 19, 2023 23:07
example backpack.tf notification

Below are two notifications from the Backpack.tf websocket. One is a normal listing and the other is a Marketplace.tf listing.

Also attached is the logic for detecting a "postlife" spell. A postlife spell is an items that was only avaliable after spells were removed from the game however thought gitches it still got a spell.

@noelruault
noelruault / macos-developer-verification.md
Created September 29, 2022 09:03
Resolve MacOS "cannot be opened because the developer cannot be verified" error
  1. Run the binary. You should see Killed: 9 as output in the terminal.
  2. Once the error happens, open the "Security & Privacy" control panel from System Preferences.
  3. The Security & Privacy panel, General tab is updated with the info that the binary was prevented from running. Click Allow Anyway.
  4. Run the binary again. This time a different prompt is shown. Click Open - the binary should run as you expect.
@zudsniper
zudsniper / GITHELP.md
Last active May 28, 2023 15:02
barebones tutorial regarding using git & gh CLIs and GitHub remote repository targets.

git icon

GitHub Quickstart Guide

This is a short and bare bones installation guide and introduction to setting up git as well as gh. It focuses on a NodeJS project example, but any language can be substituted fairly easily. Hopefully you can find it slightly helpful.

@zudsniper
zudsniper / .ansi_colors.sh
Last active April 16, 2023 07:25
[DEPRECATED] check @zudsniper/bashbits repository! -- my debian / ubuntu .bashrc with ANSI colors & helper functions.
#!/bin/bash
# .ansi_colors.sh
# --------------
# @zudsniper
# some ansi colors as bash variables
# ----------------------------- #
## ANSI COLOR ENVIRONMENT VARS
export A_RESTORE='\033[0m'
@zudsniper
zudsniper / StackScript.sh
Last active February 2, 2023 05:26
my Linode StackScript for installing barebones utilities (spooky_deb2 on Linode)
#!/bin/bash
# by zudsniper@github
# ANSI COLOR ENVIRONMENT VARS
export A_RESTORE='\033[0m'
export A_RESET='\033[0m'
export A_BOLD='\033[1m'
export A_UNDERLINE='\033[4m'
@mathielo
mathielo / README-SteamBots-Secrets.md
Last active March 11, 2025 16:53
Steam Bots: How to get shared and identity secrets from Steam Guard TOTP

Steam Bots: How to get shared and identity secrets

If you're looking into automating transactions in your Steam Account using Steam Bots, you most likely will need to:

  1. Have TOTP ("MFA" or "2FA") enabled via Steam Authenticator (Steam Guard)
  2. Have in hands both shared secret and identity secret

Having Steam Guard enabled for your Steam Account ensures that there will be no holds on transactions such as trades. Having the shared and identity secrets are necessary for complete autonomy of your Steam Bot, meaning it won't require any human interaction from you.

There is a tremendous lack of information about all of this as Steam does not provide official support for implementing Steam Bots. The information available in this guide was gathered through lots of blood and sweat hard research, reverse eng

@zudsniper
zudsniper / get_gh.sh
Last active April 16, 2023 07:37
[DEPRECATED] check @zudsniper/bashbits | for some reason the command line tool for GitHub (gh, not git) is unnecessarily difficult to install on Linux. Here is a script where I attempt to do just that.
#!/bin/bash
set -e
# get_gh.sh
# by zudsniper@github
# -------------------
YES_FLAG="$1"
sudo apt install -y gnupg2;
@zudsniper
zudsniper / get_nvm.sh
Last active April 16, 2023 07:39
[DEPRECATED] check @zudsniper/bashbits | installs `nvm` for the user who executes the script. It must be manually installed for each user via build-script, it seems.
#!/bin/bash
set -e
# get_nvm.sh
# by zudsniper@github
# & ChatGPT 3.5
# -------------------
# `VERSION` 2.0.0
#
##########################
# `SOURCES` |