Skip to content

Instantly share code, notes, and snippets.

View ahsanu123's full-sized avatar
💀

Ahsanu Amala ahsanu123

💀
View GitHub Profile
@StephanTLavavej
StephanTLavavej / videos.md
Last active February 26, 2025 17:47
C++ Videos by Stephan T. Lavavej
@ullaskunder3
ullaskunder3 / README.md
Last active December 25, 2024 13:37
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 February 9, 2025 21:47
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 6, 2024 17:48
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
@diffficult
diffficult / raspberrypi0_headless_setup.md
Last active October 29, 2024 10:56
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.


@rotten77
rotten77 / install.md
Last active May 5, 2023 10:24
LAMPP on Windows with Cygwin

LAMP on Windows with Cygwin

You can run your "LAMP" server on Windows with all benefits of Linux command line.

Cygwin packages:

Download Cygwin and run setup. Choose this packages:

Web/httpd

Libs/libapr1-devel

@xirixiz
xirixiz / Set up GitHub push with SSH keys.md
Last active March 15, 2025 05:55 — forked from developius/README.md
Set up GitHub push with SSH keys

SSH keypair setup for GitHub (or GitHub/GitLab/BitBucket, etc, etc)

Create a repo.

Make sure there is at least one file in it (even just the README.md)

Generate a SSH key pair (private/public):

ssh-keygen -t rsa -C "your_email@example.com"
@baweaver
baweaver / ruby_books.md
Last active March 9, 2025 17:41
A list of books for learning and expanding on your Ruby knowledge.

Ruby Book List

Learning Ruby

You're taking your first steps into Ruby

A good introduction to programming in general. Easy on newer programmers.