Skip to content

Instantly share code, notes, and snippets.

View nirinium's full-sized avatar
👋
Grinding

nirinium nirinium

👋
Grinding
  • NiriniumLabs
  • Louisville, KY
View GitHub Profile
@nirinium
nirinium / stdsqldrives.ps1
Last active March 1, 2019 18:52
standard sql drives
<#
20gb E: SQLBinaries
20gb F: SystemDB
10gb G: TempDBData
10gb H: TempDBData2
10gb I: TempDBData3
10gb J: TempDBData4
10gb K: TempDBLog
50gb L: SQLData
20gb M: SQLLog
@nirinium
nirinium / uninstallnvidiatelem.cmd
Created February 16, 2019 19:50
UNINSTALL NVIDIA TELEMETRY
### FROM AN ELEVATED CMD PROMPT RUN THIS TO UNINSTALL NVIDIA TELEMETRY
rundll32 "%PROGRAMFILES%\NVIDIA Corporation\Installer2\InstallerCore\NVI2.DLL",UninstallPackage NvTelemetryContainer
@nirinium
nirinium / Windows10-Setup.ps1
Created October 19, 2018 14:09 — forked from NickCraver/Windows10-Setup.ps1
(In Progress) PowerShell Script I use to customize my machines in the same way for privacy, search, UI, etc.
##################
# Privacy Settings
##################
# Privacy: Let apps use my advertising ID: Disable
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo -Name Enabled -Type DWord -Value 0
# To Restore:
#Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo -Name Enabled -Type DWord -Value 1
# Privacy: SmartScreen Filter for Store Apps: Disable
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppHost -Name EnableWebContentEvaluation -Type DWord -Value 0
// Rapid Fire.cpp : Defines the entry point for the console application.// Copyright 2013 @ EPiC REV
#include "stdafx.h"
#include <iostream>
#include <Windows.h>
#include <time.h>
using namespace std;
Get-AppxPackage "2414FC7A.Viber" | Remove-AppxPackage
Get-AppxPackage "41038Axilesoft.ACGMediaPlayer" | Remove-AppxPackage
Get-AppxPackage "46928bounde.EclipseManager" | Remove-AppxPackage
Get-AppxPackage "4DF9E0F8.Netflix" | Remove-AppxPackage
Get-AppxPackage "64885BlueEdge.OneCalendar" | Remove-AppxPackage
Get-AppxPackage "7EE7776C.LinkedInforWindows" | Remove-AppxPackage
Get-AppxPackage "828B5831.HiddenCityMysteryofShadows" | Remove-AppxPackage
Get-AppxPackage "89006A2E.AutodeskSketchBook" | Remove-AppxPackage
Get-AppxPackage "9E2F88E3.Twitter" | Remove-AppxPackage
Get-AppxPackage "A278AB0D.DisneyMagicKingdoms" | Remove-AppxPackage
Get-ChildItem *.txt | Rename-Item -NewName { $_.name -Replace '\.txt$','.log' }
@nirinium
nirinium / install.sh
Created October 4, 2018 19:10 — forked from ziadoz/install.sh
Install Chrome, ChromeDriver and Selenium on Ubuntu 16.04
#!/usr/bin/env bash
# https://developers.supportbee.com/blog/setting-up-cucumber-to-run-with-Chrome-on-Linux/
# https://gist.github.com/curtismcmullan/7be1a8c1c841a9d8db2c
# http://stackoverflow.com/questions/10792403/how-do-i-get-chrome-working-with-selenium-using-php-webdriver
# http://stackoverflow.com/questions/26133486/how-to-specify-binary-path-for-remote-chromedriver-in-codeception
# http://stackoverflow.com/questions/40262682/how-to-run-selenium-3-x-with-chrome-driver-through-terminal
# http://askubuntu.com/questions/760085/how-do-you-install-google-chrome-on-ubuntu-16-04
# Versions
CHROME_DRIVER_VERSION=`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE`
@nirinium
nirinium / scum.txt
Created August 30, 2018 19:47
SCUM FOV
C:\Users\your pc\AppData\Local\SCUM\Saved\Config\WindowsNoEditor
Add this to the bottom of the engine.ini
[/script/engine.localplayer]
AspectRatioAxisConstraint=AspectRatio_MaintainYFOV
dir .\ -Recurse | Unblock-File
# -*- coding: utf-8 -*-
"""
"""
####NOTE THAT THE GAME HAS TO BE SET NOT TO USE RAW MOUSE INPUT
#Imports*****************
import win32api
import win32con
import time