Skip to content

Instantly share code, notes, and snippets.

View stefanct's full-sized avatar

Stefan Tauner stefanct

  • Vienna, Austria
View GitHub Profile
@x0nu11byt3
x0nu11byt3 / elf_format_cheatsheet.md
Created February 27, 2021 05:26
ELF Format Cheatsheet

ELF Format Cheatsheet

Introduction

Executable and Linkable Format (ELF), is the default binary format on Linux-based systems.

ELF

Compilation

@furkanusta
furkanusta / CS223.org
Last active November 27, 2024 20:41
Warnings in Vivado

Common Warnings/Errors

The following notes are collected from my notes and previous semesters’ labs. I’ve removed some of the notes that were rare/specific, if you encounter a warning that is not written in here you can send me an email (you can find on Unilica) or write below this as a comment.

Most of the warnings in here, starts to appear as your code gets bigger. It is only natural for you to not understand all of the reasoning in here during the first few labs. If after getting a warning and reading here you believe that explanation in here is confusing, notify me so I can

@jcberthon
jcberthon / networkmanager-wifi-powersave.md
Last active May 2, 2025 21:54
NetworkManager Wi-Fi powersaving configuration

NetworkManager WiFi Power Saving

NetworkManager supports WiFi powersaving but the function is rather undocumented.

From the source code: wifi.powersave can have the following value:

  • NM_SETTING_WIRELESS_POWERSAVE_DEFAULT (0): use the default value
  • NM_SETTING_WIRELESS_POWERSAVE_IGNORE (1): don't touch existing setting
  • NM_SETTING_WIRELESS_POWERSAVE_DISABLE (2): disable powersave
@nils-werner
nils-werner / .gitconfig
Created December 8, 2011 12:51
Git Alias for displaying number of commits between two branches
[alias]
between = !sh -c 'echo $1 $(git log --pretty=oneline ${2}..$1 | wc -l) ahead && echo ${2:-$(git name-rev --name-only HEAD)} $(git log --pretty=oneline $1..$2 | wc -l) ahead' -