Skip to content

Instantly share code, notes, and snippets.

View Coldblackice's full-sized avatar

Coldblackice

  • NYC
View GitHub Profile
@jhochwald
jhochwald / Graylog.conf
Created February 23, 2021 16:37
NGINX reverse proxy config for Graylog
location / {
# Only Allow the Cloudflare Servers to use this URL (Not Scope)
include /etc/nginx/snippets/enatec_CloudFlareAllowlist.conf;
# Set some Default for Reverse Proxies (Not Scope)
include /etc/nginx/snippets/enatec_proxydefaults.conf;
# This is not required
add_header Front-End-Https on;
add_header Cache-Control "public, must-revalidate";
@y0lopix
y0lopix / windows-tweaks.reg
Last active May 4, 2024 11:49
Useful tweaks for Windows 11 and Windows 10
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Search]
"BingSearchEnabled"=dword:00000000
"AllowSearchToUseLocation"=dword:00000000
"CortanaConsent"=dword:00000000
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search]
"AllowCortana"=dword:00000000
"DisableWebSearch"=dword:00000001
@zsoumya
zsoumya / readme.md
Last active July 27, 2022 00:27
Windows Setup and Customization Guide for New Installs

Windows Setup and Customization Guide for New Installs

  • Go to Bluetooth settings and add mouse (Logitech Master 2S is my current mouse)
  • Logitech Options will ask to be auto-installed. Allow.
  • Log into Logitech Options with the Logi account.
  • Go to mouse profile and configure the middle button.

  • Go to Windows Activation settings.
  • Click Troubleshoot.
  • Windows will auto-detect edition upgrade (Windows 10 Pro For Workstations) and reboot.
@gempir
gempir / filters.md
Last active April 26, 2024 13:32
Chatterino Filter Collection
Filter out every user without color (greynames) 2.0
(!(author.no_color) || flags.system_message || flags.whisper || flags.highlighted || flags.points_redeemed || flags.sub_message)
Filter out every user without color (greynames)
!(author.no_color)
@ScribbleGhost
ScribbleGhost / Add Process all files in folder to the context menu.reg
Created October 11, 2020 15:49
Add batch file to the context menu - Process all files in folder
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\Process all files in folder]
@="&Process all files in folder"
[HKEY_CLASSES_ROOT\Directory\shell\Process all files in folder\command]
@="\"C:\\Scripts\\Process all files in folder.bat\" \"%1\""
@zsoumya
zsoumya / readme.md
Last active June 16, 2021 09:41
Docker Cheat Sheet

Docker Cheat Sheet

Stop all containers

docker container stop $(docker container ls -aq)

Remove all containers

docker container rm $(docker container ls -aq)

const puppeteer = require("puppeteer");
const opn = require("opn");
const nodemailer = require("nodemailer");
const timeout = 5000;
const waitForTimeout = 1000;
const cartLink =
"https://store.nvidia.com/store/nvidia/en_US/buy/productID.5438481700/clearCart.yes/nextPage.QuickBuyCartPage";
@Sighery
Sighery / sg-addons-thread.md
Created August 30, 2020 13:28
SG Add-Ons Registry - List of all scripts for SG [Update: 30 Aug]

So you want your Steamgifts more beautiful, or miss functionality to browse through and enter giveaways faster? The Steamgifts Add-Ons Registry below lists all the currently available add-ons that hopefully make using Steamgifts a better experience.

Please let me know in the comments what other scripts, styles, plugins, extensions or apps you folks are using on Steamgifts! I will add all suggestions to the app registry here. If you have any ideas or suggestions for a script or related, you should check this thread!

Note that some of the add-ons may not be compatible with each other, check the specific add-on thread for details!

#New

@DrEmpiricism
DrEmpiricism / Start-WindowsCleanup.ps1
Last active January 17, 2024 05:19
Clean-up system clutter and reclaim disk space
Function Start-WindowsCleanup
{
<#
.SYNOPSIS
`Start-WindowsCleanup` cleans-up a system clutter and reclaims disk space.
.DESCRIPTION
The `Start-WindowsCleanup` cmdlet performs the following clean-up tasks to reclaim disk space:
Clears the contents of common directories of the Windows file system for both the current running user and the global system that are used to store temporary, logging, backup, cache and dump files.
@brainfucksec
brainfucksec / bash.bashrc
Last active May 1, 2024 09:24
Termux bash.bashrc
######################################
#
# Termux bash.bashrc
# by brainf+ck
#
# Last modified: 2022/06/30
#
######################################
#### Global ##########################