Skip to content

Instantly share code, notes, and snippets.

View Spawnfile's full-sized avatar
🎼
Focusing

Alper Ekmekci Spawnfile

🎼
Focusing
  • Uludag University
  • Bursa - Turkey
View GitHub Profile
@sol-prog
sol-prog / commands.sh
Last active March 20, 2024 14:32
Install GCC 9 on Raspberry Pi and build C++17 programs
# Commands used in the video https://youtu.be/-bCG87jBDqA :
sudo apt update && sudo apt upgrade -y
git clone https://bitbucket.org/sol_prog/raspberry-pi-gcc-binary.git
cd raspberry-pi-gcc-binary
tar -xjvf gcc-9.1.0-armhf-raspbian.tar.bz2
sudo mv gcc-9.1.0 /opt
cd ..
rm -rf raspberry-pi-gcc-binary
@tshirtman
tshirtman / key_down.py
Created June 7, 2015 11:15
simplest key binding demo with kivy
from kivy.app import App
from kivy.uix.widget import Widget
from kivy.core.window import Window
class KeyDown(App):
def build(self):
Window.bind(on_key_down=self.key_action)
return Widget()