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
@fl64
fl64 / books.md
Last active October 18, 2025 14:37
books
@primaryobjects
primaryobjects / tplink-archer-t4u.md
Last active December 23, 2025 18:46
Steps to Install the TP-Link Archer T4U Plus AC1300 USB WiFi Adapter on Linux Mint
@dehamzah
dehamzah / scp-cheatsheet.md
Last active October 2, 2025 02:34
SCP Cheatsheet

Basic Syntax

$ scp source_file_path destination_file_path

Uploading

Single file

@davidzchen
davidzchen / sample-google.c
Last active December 30, 2025 16:03
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
//