Skip to content

Instantly share code, notes, and snippets.

@DennyLindberg
DennyLindberg / make_simple.bat
Last active February 29, 2024 22:47
A much simpler version of make.bat
::::
:: A simplified version of the pseudo-make for building a C application using MSVC.
:: Refer to the other gist for details.
:: https://gist.github.com/DennyLindberg/8c0a5e7471a30e6868a00757e8483b78
::::
@echo off
:::: PROJECT CONFIGURATION
set exe_file=main.exe
@DennyLindberg
DennyLindberg / make.bat
Last active February 29, 2024 22:42
A pseudo-make for building a C application using MSVC
::::
:: A pseudo-make for building a C application using MSVC.
:: https://github.com/DennyLindberg
::
:: Use any text editor and commandline. RemedyBG or RAD Debugger for debugging.
:: https://remedybg.itch.io/remedybg
:: https://github.com/EpicGamesExt/raddebugger
::
:: Example:
:: ./make build run arg1 arg2 arg3
@DennyLindberg
DennyLindberg / ublock_filter_twitter.txt
Created December 4, 2019 22:05
Removes clutter on twitter
! Remove liked tweets
twitter.com##article:has(a[href^="/i/user/"]:has-text(/liked$/)):nth-ancestor(2)
! Remove retweet
twitter.com##article:has(a[href^="/i/user/"]:has-text(/Retweeted$/)):nth-ancestor(2)
! Remove sidebar with unnecessary recommendations
twitter.com##div[data-testid="sidebarColumn"]