Skip to content

Instantly share code, notes, and snippets.

View Aggeloz's full-sized avatar
💭
Hello there!

Aggelos Vogiatzis Aggeloz

💭
Hello there!
View GitHub Profile
@Jerrylum
Jerrylum / arduino-cli-steps.md
Created September 14, 2022 14:53
How to use Arduino CLI to program ESP32

Development

Suggested user settings, Arduino CLI is optional.

{
    "arduino.path": "C:\\Users\\jerrylum\\Documents\\Application\\arduino-cli_0.27.1_Windows_64bit",
    "arduino.useArduinoCli": true,
    "arduino.commandPath": "arduino-cli.exe"
}
@19317362
19317362 / ARMonQEMUforDebianUbuntu.md
Created April 26, 2022 02:09 — forked from luk6xff/ARMonQEMUforDebianUbuntu.md
Emulating ARM with QEMU on Debian/Ubuntu

You might want to read this to get an introduction to armel vs armhf.

If the below is too much, you can try Ubuntu-ARMv7-Qemu but note it contains non-free blobs.

Running ARM programs under linux (without starting QEMU VM!)

First, cross-compile user programs with GCC-ARM toolchain. Then install qemu-arm-static so that you can run ARM executables directly on linux

If there's no qemu-arm-static in the package list, install qemu-user-static instead

@WillNilges
WillNilges / KeilMDK5.md
Created January 11, 2022 16:32
How to install Keil MDK 5 on Arch Linux
@Gustavo-Kuze
Gustavo-Kuze / force-ctrl-c-v.md
Last active February 13, 2026 14:34
Enable copy and paste in a webpage from the browser console
javascript:(function(){
  allowCopyAndPaste = function(e){
  e.stopImmediatePropagation();
  return true;
  };
  document.addEventListener('copy', allowCopyAndPaste, true);
  document.addEventListener('paste', allowCopyAndPaste, true);
  document.addEventListener('onpaste', allowCopyAndPaste, true);
})();