Skip to content

Instantly share code, notes, and snippets.

View Ichi-1's full-sized avatar
💨
alias cd='rm -rf'

Alexander Chumakov Ichi-1

💨
alias cd='rm -rf'
View GitHub Profile
@primaryobjects
primaryobjects / tplink-archer-t4u.md
Last active June 18, 2024 04:45
Steps to Install the TP-Link Archer T4U Plus AC1300 USB WiFi Adapter on Linux Mint
@dehamzah
dehamzah / scp-cheatsheet.md
Last active July 14, 2024 08:49
SCP Cheatsheet

Basic Syntax

$ scp source_file_path destination_file_path

Uploading

Single file

@davidzchen
davidzchen / sample-google.c
Last active June 16, 2024 18:55
Sample C code using the Google C++ style guide
// Sample file using the Google C++ coding standard.
//
// http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml
//
// General rules:
// - Indents are two spaces. No tabs should be used anywhere.
// - Each line must be at most 80 characters long.
// - Comments can be // or /* but // is most commonly used.
// - File names should be lower_case.c or lower-case.c
//