Skip to content

Instantly share code, notes, and snippets.

View tonylambiris's full-sized avatar

Tony Lambiris tonylambiris

  • Boston, MA
View GitHub Profile
@tonylambiris
tonylambiris / nes.py
Created January 1, 2019 20:10 — forked from fuzyll/nes.py
Updated version of Binary Ninja's NES plugin (tries to handle more mappers).
# Copyright (c) 2015-2016 Vector 35 LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
@tonylambiris
tonylambiris / switcher.ahk
Created September 23, 2019 14:24 — forked from snmishra/switcher.ahk
Switch windows by process name using Alt+` and S
; Based on https://superuser.com/a/768060/542406
!`:: ; Next window
WinGet, ActiveProcessName, ProcessName, A
WinGet, WinClassCount, Count, ahk_exe %ActiveProcessName%
IF WinClassCount = 1
Return
Else
WinSet, Bottom,, A
WinActivate, ahk_exe %ActiveProcessName%
return
@tonylambiris
tonylambiris / crappy-csgo-walls.cs
Created March 5, 2020 08:54 — forked from djcas9/crappy-csgo-walls.cs
csgo wall hack - using VAMemory so it will get VAC for sure
using System;
using System.Threading;
using System.Diagnostics;
namespace csgo_walls {
public class Glow {
public static int Client;
public static string process = "csgo";
@tonylambiris
tonylambiris / crappy-csgo-walls.cs
Created March 5, 2020 08:54 — forked from djcas9/crappy-csgo-walls.cs
csgo wall hack - using VAMemory so it will get VAC for sure
using System;
using System.Threading;
using System.Diagnostics;
namespace csgo_walls {
public class Glow {
public static int Client;
public static string process = "csgo";
@tonylambiris
tonylambiris / windows10-command-tweaks
Last active February 19, 2024 09:38 — forked from djibe/windows10-command-tweaks.md
Windows10 Command Tweaks
## Windows 10+ optimizations
%windir%\system32\usoclient StartScan
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61
Enable hibernation:
powercfg /h on
powercfg hibernate size 0
powercfg /h /type reduced
@tonylambiris
tonylambiris / Guest-Commands.md
Created March 21, 2023 11:27 — forked from DManavi/Guest-Commands.md
How to compact virtualbox disks to save space on the host machine?

These commands should execute on your "GUEST" OS/Your virtual machine.

If the OS is a linux, run

dd if=/dev/zero of=/var/tmp/bigemptyfile bs=4096k ; rm /var/tmp/bigemptyfile

if the OS is windows