Skip to content

Instantly share code, notes, and snippets.

View rbento's full-sized avatar

Rodrigo Bento rbento

  • Toronto
View GitHub Profile
@rbento
rbento / notes-on-visual-studio-community.md
Last active May 4, 2024 03:38
Notes on Visual Studio 2019

Microsoft Visual Studio Community

Editor Settings

Generate .editconfig from VS Settings

# EditorConfig is awesome: https://EditorConfig.org
@rbento
rbento / notes-on-windbg.md
Last active January 29, 2022 20:45
Notes on WinDbg

WinDbg

Compile with debug symbols


cl -Z7 file.c
@rbento
rbento / notes-on-git.md
Last active June 29, 2022 07:19
Notes on Git

Git

Minimal .gitattributes for cross-platform projects


# Ensure batch files always have the required crlf line endings
*.bat eol=crlf

# Ensure shell scripts always have the required lf line endings
@rbento
rbento / notes-on-maven.md
Last active January 29, 2022 20:42
Notes on Apache Maven

Apache Maven

Generate a project based on archetype


mvn archetype:generate -Dfilter=<search string>

Download Sources and Javadoc

@rbento
rbento / notes-on-windows-11.md
Last active May 31, 2024 02:04
Notes on Windows

Windows 11

Disable Mandatory Internet Connection On Setup


After installation is successful and the setup process begins:

  1. Hit SHIFT+F10 to bring up the Command Prompt.

  2. Enter OOBE\BYPASSNRO

@rbento
rbento / notes-on-sublime-text.md
Last active January 29, 2022 20:44
Notes on Sublime Text

Sublime Text

Always open a clean editor


{
    "hot_exit": false, 
    "remember_open_files": false
}
@rbento
rbento / notes-on-cpp.md
Last active July 2, 2021 02:42
Notes on C++

C++

Install system-wide development libraries on Windows


git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
bootstrap-vcpkg.bat
vcpkg integrate install
@rbento
rbento / notes-on-computer-networks.md
Last active March 11, 2022 03:34
My notes on computer networks

Computer Networking

High-level descriptions of computer network topics.

Networking Protocols

ARP (Address Resolution Protocol)


Redis

Docker


Start docker
docker run --rm --name redis-master redis -p 6379

OAuth 2.0 Authorization Framework