Skip to content

Instantly share code, notes, and snippets.

@JCBuck
JCBuck / WindowsDiscoveries.md
Last active June 28, 2020 10:39
Neat and random discoveries in Windows

connect.dll CLSID GUID symbols (some may be used for xwizard.exe RunWizard [GUID] ) (10.0.14393.0)

00007FFF0C1FE398  Export  CLSID_ConnectToInternetCreationHookPage           {7071ECA5-663B-4BC1-A1FA-B97F3B917C55}
00007FFF0C1FE3A8  Export  CLSID_ConnectToInternetFinishPage                 {7071ECAF-663B-4BC1-A1FA-B97F3B917C55}
00007FFF0C1FE3B8  Export  CLSID_ConnectToInternetDetectionHookPage          {7071ECA3-663B-4BC1-A1FA-B97F3B917C55}
00007FFF0C1FE3C8  Export  CLSID_ConnectToInternetHookPage                   {7071ECA8-663B-4BC1-A1FA-B97F3B917C55}
00007FFF0C1FE3D8  Export  CLSID_DisplayWorkExistingConnectionsPage          {7071EC62-663B-4BC1-A1FA-B97F3B917C55}
00007FFF0C1FE3E8  Export  CLSID_NetworkTasksHost                            {7071ECFA-663B-4BC1-A1FA-B97F3B917C55}
00007FFF0C1FE3F8  Export  CLSID_ConnectToWorkExistingConnectionsPage        {7071ECB4-663B-4BC1-A1FA-B97F3B917C55}
@JCBuck
JCBuck / animated-gif.md
Created May 31, 2017 22:59 — forked from stephenlb/animated-gif.md
DIY How to make your own HD Animated GIF Generator

HD Animated GIF Generator

You can make your own HD animated GIF generator.
Follow along with these commands to get started.

HD Animated GIF Generator

git clone git://source.ffmpeg.org/ffmpeg.git
cd ffmpeg
@JCBuck
JCBuck / !DOTSSampleUpgradePart1
Last active March 25, 2020 22:50
DOTSSample Upgrade Unity ECS packages
Refactored code to use new unity Networking/Transport api
Part2:
https://gist.github.com/JCBuck/7c65823462a93673d7976e99ffd717ce
@JCBuck
JCBuck / !DOTSSampleUpgradePart2
Created March 25, 2020 22:49
DOTSSample Upgrade Unity ECS packages
Refactored code to use new unity Networking/Transport api
Part1:
https://gist.github.com/JCBuck/53d970b22fac3b12218d1fee08444230
@JCBuck
JCBuck / hotkeymacroF15.bat
Last active May 10, 2024 05:47
Windows and Linux Scripts
@title hotkeymacroF15&mode con:cols=38 lines=2&powershell.exe -ExecutionPolicy Bypass -Command "$_=((Get-Content \"%~f0\") -join \"`n\");iex $_.Substring($_.IndexOf(\"goto :\"+\"EOF\")+9)"
@goto :EOF
##################################
##################################
##################################
$keyToBind = 'V' # Change key to emulate F15 press
##################################
##################################
@JCBuck
JCBuck / install-ffmpeg-amazon-linux-2-g5.sh
Created November 14, 2022 21:17
Script to install ffmpeg with nvenc and cuvid hardware acceleration support
sudo yum install autoconf automake bzip2 bzip2-devel cmake freetype-devel gcc gcc-c++ git libtool make mercurial pkgconfig zlib-devel -y
sudo yum install gnutls-devel -y
mkdir ~/ffmpeg_sources
# nasm
cd ~/ffmpeg_sources
curl -O -L https://www.nasm.us/pub/nasm/releasebuilds/2.14.02/nasm-2.14.02.tar.bz2
tar xjvf nasm-2.14.02.tar.bz2
cd nasm-2.14.02
./autogen.sh