Skip to content

Instantly share code, notes, and snippets.

View janstuemmel's full-sized avatar

Jan Stümmel janstuemmel

View GitHub Profile
@janstuemmel
janstuemmel / wlan-eduroam-ao756-ar9463.md
Last active August 29, 2015 14:03
WLAN Eduroam auf AO756, Acer Aspire One 756, Chipsatz AR9463, Debian Wheezy

WLAN Eduroam auf AO756, Acer Aspire One 756, Chipsatz AR9463, Debian Wheezy

Dieser Artikel beschreibt die WIFI Konfiguration auf einem AO756 mit Wifi-Chipsatz Atheros AR9463. Das Betriebssystem ist Chrunchbang Linux (Debian Wheezy).

Grundsätzlich kann man sagen, dass der Gnome Networkmanager für dieses Netbook im gegensatz zu WICD wesetlich schlechter arbeitet. Allerdings muss WICD für eduroam speziell konfiguriert werden, deshalb werde ich erst einmal einen anderen Lösungsansatz wählen.

acer_wmi und ath9k

Bei meinen Recherchen habe ich immer wieder gelesen dass sich auf Acer Notebooks angeblich acer_wmi und ath9k in die Quere kommen. Folgende Lösung wurde vorgeschlagen:

@janstuemmel
janstuemmel / linux-software.md
Last active September 9, 2017 10:05
Linux Software Cheatsheet

Linux Software Cheatsheet

a set of linux software taht i use on my computer

Productivity

  • ranger Simple console based filemanger
  • pcmanfm Simple and lightweight filemanager
  • pnmixer Sound control
  • synapse App starter
@janstuemmel
janstuemmel / shell.md
Last active February 18, 2021 17:27
Shell Cheatsheet

Shell Cheatsheet

a set of unix shell commands

Contents

@janstuemmel
janstuemmel / docker-cheat.md
Last active September 1, 2017 14:57
Docker Cheatsheet

Docker Cheatsheet

A cheatsheet with basic docker and docker-compose commands

Docker

exec

  • docker exec -it <nam> /bin/bash attach interactive tty to the running image
@janstuemmel
janstuemmel / git-cheat.md
Last active September 1, 2017 14:51
Git Cheatsheet

Git Cheatsheet

Tag

  • git tag 12345 Creates a tag
  • git tag -d 12345 Deletes local tag
  • git push origin :refs/tags/12345 Deletes remote tag

Branch

Change bundle url in React Native

according to this

... replace

jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil];
@janstuemmel
janstuemmel / README.md
Last active May 26, 2020 13:47
Installation script for a portable platformio editor

a simple install script to build a portable version of the [PlatformIO IDE][pioide] based on the atom editor.

referenced to [platformio/platformio-atom-ide/issues/158][ref]

Usage

  • wget https://gist.githubusercontent.com/janstuemmel/5dea680981d443c8d93c9c7e12f08611/raw/install.sh
  • chmod +x install.sh
  • execute: ./install.sh v1.14.4
@janstuemmel
janstuemmel / Caddyfile
Last active March 28, 2017 21:34
Caddy HTTP
foo.example.com:443 {
proxy / 127.0.0.1:1337
}
@janstuemmel
janstuemmel / .babelrc
Last active February 26, 2018 17:19 — forked from Sigmus/gulpfile.js
gulpfile.js with browserify, reactify, watchify and gulp-notify.
{
"presets": [ "es2015", "react" ]
}
@janstuemmel
janstuemmel / README.md
Last active October 26, 2023 15:26
HTML boilerplate (with tailwind)

HTML with tailwind css

npm i -D tailwindcss normalize.css postcss autoprefixer
npx tailwindcss -i ./main.css -o ./dist/output.css --watch