Skip to content

Instantly share code, notes, and snippets.

View ahsanu123's full-sized avatar
๐Ÿ’€

Ahsanu Amala ahsanu123

๐Ÿ’€
View GitHub Profile
@mikeslattery
mikeslattery / .idea-lazy.vim
Last active March 4, 2026 13:15
LazyVim mappings for Jetbrains IDEs
" ~/.idea-lazy.vim
" LazyVim mappings for Jetbrains IDEs
" Required plugins. https://plugins.jetbrains.com/bundles/7-ideavim-bundle
" IDEAVim
" Which-Key
" IdeaVim-Sneak
" To install, add this to the top of your ~/.ideavimrc:
@StephanTLavavej
StephanTLavavej / videos.md
Last active March 17, 2026 10:56
C++ Videos by Stephan T. Lavavej

C9 Lectures

BoostCon (now known as C++Now)

  • 2009: I am not aware of recordings for my talks "C++0x Support in Visual Studio 2010" and "The Parallel Patterns Library in Visual Studio 2010". You aren't missing anything, though.
  • 2010: "Data Structure Visualizers in Visual Studio 2010" is irrelevant as the old visualizer machinery has been completely replaced by something much better (and documented).
  • 2012: Regex In C++11 And Boost
@robotdad
robotdad / vs_cpp_winget.md
Last active March 25, 2026 01:02
Installing VS C++ workloads with winget

This is a short outline of how to install the C++ workload with Visual Studio or the build tools using winget.

To find VS releases with winget use search. winget search buildtools

The install command will install the VS installer with the core of the selected product installed. That isn't much. So if you use either of these commands to insll VS or the build tools you will need to launch the VS installer afterwards and select the relevant C++ workloads you need.

winget install Microsoft.VisualStudio.2022.BuildTools

winget install Microsoft.VisualStudio.2022.Community
@ullaskunder3
ullaskunder3 / README.md
Last active October 24, 2025 11:09
Detail flutter installation without android studio just using cmdline-tools, git, cmd
@weshouman
weshouman / Makefile
Last active June 8, 2024 18:57
arduino cli tips
VERSION=0.14.0
SPECIFIER=arduino-cli_${VERSION}_Linux_64bit
BINDIR=/usr/local/bin/
# - Avoid redownloading
# - Avoid overwriting
# - To overwrite, use make uninstall
install:
TMPDIR=/tmp/$(SPECIFIER) && \
mkdir -p $${TMPDIR} && \
@ugursogukpinar
ugursogukpinar / sway-config
Last active August 8, 2025 03:57
wf-recorder for swaywm
set $screenrecorder `bash $HOME/scripts/toggle-screen-recorder.sh`
bindsym --to-code $mod+Shift+R exec $screenrecorder
@fredsiika
fredsiika / sass-cheatsheet.md
Last active November 19, 2025 15:47
A high-level Sass (SCSS) cheatsheet for the most important functionality features of Sass.
@sepfy
sepfy / LibusbSerial.py
Created August 21, 2019 06:20
pyusb (libusb) connect to CDC device
import usb.core
import usb.util
import usb.control
import time
import array
import json
# Test by Arduino
VENDER = 0x2341
--- Actions ---
$Copy <C-C> <C-Ins>
$Cut <C-X> <S-Del>
$Delete <Del>
$LRU
$Paste <C-V> <S-Ins>
$Redo <C-S-Z> <A-S-BS>
$SearchWeb
$SelectAll <C-A>
$Undo <C-Z> <A-BS>
@diffficult
diffficult / raspberrypi0_headless_setup.md
Last active October 3, 2025 18:40
Get your Pi 0 W up and running headless with Arch Linux

Installing Arch Linux ARM on a SD card for Raspberry Pi 0 W and loading wifi credentials for headless usage


Advice

Before starting I highly suggest you create a new directory on your /home/user directory with an appropiate name for this task like rpi0alarm so you can change directory to /home/user/rpi0alarm and go through the following steps.

As I wrote this guide after collecting info from different sources (listed at the end) be mindful of your current path and the commands you are running to not damage your current installation on the host computer you are creating the SD Card.