Skip to content

Instantly share code, notes, and snippets.

View mark05e's full-sized avatar

mark05E mark05e

View GitHub Profile
@denise-amiga
denise-amiga / BoxOfTools.sh
Created January 13, 2020 12:11
BoxOfTools
mkdir Ahteam
cd Ahteam
wget http://qunpack.ahteam.org/wp-content/uploads/2007/03/quickunpack10rc1.zip
wget https://ahteam.org/files/oursoft/ASPR_Dumper_v0_1.zip
wget https://ahteam.org/files/oursoft/DeDe_PAS_Viewer_v1_0.zip
wget https://ahteam.org/files/oursoft/Easy_PatchMaker_v1_0.zip
wget https://ahteam.org/files/oursoft/EP_Protector_v0_3.zip
wget https://ahteam.org/files/oursoft/NFO_File_Maker_v2_2.zip
wget https://ahteam.org/files/oursoft/NFO_Viewer_v1_2_Final.zip
wget https://ahteam.org/files/oursoft/PlayIn_v0_9.zip
@flatlinebb
flatlinebb / send_clipboard_as_keystrokes.ahk
Created November 22, 2019 23:35
Autohotkey script: Send Clipbpoard As Keystokes
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
SetWinDelay 100
SetKeyDelay 7
;; Alt+Control+k
^!k::
SendEvent,{Raw}%Clipboard%
<#
.NOTES
https://go.microsoft.com/fwlink/p/?LinkId=286152
Requirements (Powershell Gallery):
- Install-Module MSOnline
- Install-Module ReportHTML
- Install-Module Microsoft.Online.SharePoint.PowerShell
or Download
@skartknet
skartknet / pasteAsTyping.ahk
Created October 22, 2019 21:53
It paste the clipboard content as if you were actually typing, with a delay between strokes. I find it useful to create coding tutorials and not to worry about typos.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Event ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
^+v::
FixString = {Raw}%Clipboard%
Send % sendAtRandom(FixString)
@dbellomo
dbellomo / off-grid.md
Last active December 17, 2023 17:04
servicios, aplicaciones sin conexión a Internet. offline-first.
@carcheky
carcheky / stopadobe.ps1
Created August 1, 2019 09:39
Stop all adobe shit process
# https://forums.adobe.com/thread/2621275
cd C:\Users\cmartinezv\Documents
# This will Stop the Services, and change the startup from Automatic to Manual - Opening Adobe Applications will start these services, without your interaction. If you have issues, you can manually start them by replacing Get-Service with Start-Service, or open the Services Panel with WindowsKey+R: "services.msc"
# Setting Startup to Manual only needs to be run once. Stopping the services needs to be done each time you exit application, if you don't want background services running. Such as Sync.
Get-Service -DisplayName Adobe* | Stop-Service
Get-Service -DisplayName Adobe* | Set-Service -StartupType Manual
@db93n2
db93n2 / txt.wrap.ahk
Last active September 7, 2024 22:23
✏️ (autohotkey) - wrap selected text in *symbols*
/*
[wrap list]
( = (TXT)
`[ = [TXT]
{ = {TXT}
< = <TXT>
> = >TXT<
a = /`*TXT*`/
h = <!-- TXT -->
@jamesinc
jamesinc / aws-notification-timer.user.js
Last active January 20, 2025 08:06
AWS console notification dismisserator 9000 - dismiss AWS flash notifications after (about) 5 seconds
// ==UserScript==
// @name AWS console notification dismisserator 9000
// @namespace https://github.com/jamesinc
// @version 1.1
// @description Dismiss AWS flash notifications after about 5 seconds
// @author James Ducker
// @match https://*.console.aws.amazon.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
@sundowndev
sundowndev / GoogleDorking.md
Last active May 14, 2025 05:19
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@jpda
jpda / swap-windows-colors.ps1
Created May 29, 2019 15:12
swaps windows system and apps from dark/light mode
$currentApps = (Get-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name AppsUseLightTheme).AppsUseLightTheme
$currentSystem = (Get-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name SystemUsesLightTheme).SystemUsesLightTheme
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name AppsUseLightTheme -Value (1 - $currentApps)
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name SystemUsesLightTheme -Value (1 - $currentSystem)