Skip to content

Instantly share code, notes, and snippets.

View schuhumi's full-sized avatar
🚀

Simon Schumann schuhumi

🚀
View GitHub Profile
@schuhumi
schuhumi / parallelman.py
Created March 30, 2015 16:32
parallelman script
#!/usr/bin/env python3
from subprocess import check_output
import os.path
import subprocess
import time
cachedir = "/var/cache/pacman/pkg" # NO "/" AT THE END!
print(check_output(["pacman", "-Sqy"]).decode("utf-8")) # update package data base
@schuhumi
schuhumi / spotify sefault
Created February 22, 2015 16:28
2015-02-22
╭─simon at localhost in ~
╰─○ rm -R .config/spotify .cache/spotify; spotify
/usr/share/spotify/spotify-client/spotify: /usr/lib/libssl.so.1.0.0: no version information available (required by /usr/share/spotify/spotify-client/spotify)
/usr/share/spotify/spotify-client/spotify: /usr/lib/libcrypto.so.1.0.0: no version information available (required by /usr/share/spotify/spotify-client/spotify)
16:06:05.578 I [breakpad.cpp:107 ] Registered Breakpad for product: spotify
16:06:05.579 I [translate.cpp:139 ] Reloading language file
16:06:05.600 I [translate.cpp:139 ] Reloading language file
16:06:05.601 I [breakpad.cpp:261 ] Searching for crashdumps: /home/simon/.cache/spotify/*.dmp
#include <avr/io.h>
#define F_CPU 16000000UL
#include <util/delay.h>
int main (void)
{
DDRC = 0xff;
while(1)
{
PORTC ^= 0xff;
#include <avr/io.h>
#define F_CPU 16000000UL
#include <util/delay.h>
int main (void)
{
DDRC = 0xff;
while(1)
{
PORTC ^= 0xff;