Raspberry PI LED Display

Juli 16th, 2019

https://rpi.science.uoit.ca/lab/ssdisplay1
http://www.netzmafia.de/skripten/hardware/RasPi/RasPi_I2C.html

Run sudo raspi-config
Select yes when it asks you to enable I2C.
Also select yes if it asks about automatically loading the kernel module.
reboot

How to use 4-Digit 7-Segment Module on RaspberryPi

APK auf Android-Gerät installieren

Juni 19th, 2019

Android Geräte auflisten:

adb devices

Ausgabe (Beispiel):

List of devices attached
emulator-5554 device
XT011921 device

APK installieren:

adb -s [device] install [path]
adb -s emulator-5554 install appname.apk

INAPP-Kauf testen

  • In der Android-Console anmelden https://play.google.com/console
  • Unter Einrichten/Lizenztest Google-Mailadresse des eigenen Accounts hinzufügen
  • In Android Studio eine signierte APK-Datei erzeugen
  • Die App installieren (siehe oben)

Neural Networks Backpropagation

Juni 19th, 2019


Backpropagation example


How to train neural networks with-backpropagation


Backpropagation in C

LUbuntu: Desktop-Shortcut erzeugen

Juni 4th, 2019
lxshortcut -o ~/Schreibtisch/foo.desktop

GUID erzeugen (MinGW)

Mai 9th, 2019

#define APPGUID "XXXXXXXX-49DC-452D-BD0A-4318719DE9B9"
// mit uuidgen erzeugt

static bool TestAppRunning()
{
  bool r = false;

  #ifdef _WIN32
  CreateMutexA(NULL, TRUE, APPGUID)
  if (GetLastError() == ERROR_ALREADY_EXISTS)
  {
    r = true;
  }
  #endif
  return r;
}




Zeilen in einem Projekt zählen

Mai 9th, 2019
find .. -name '*.cpp' | xargs wc -l

X-Mouse Button Control

Mai 4th, 2019


http://www.highrez.co.uk/downloads/XMouseButtonControl.htm

Ubuntu updaten

März 26th, 2019

sudo apt-get update
sudo apt-get dist-upgrade

Linux: Lüftersteuerung

März 23rd, 2019

Installieren:
sudo apt-get install fancontrol

Konfigurieren:
sudo pwmconfig

Starten:
sudo service fancontrol start

Firefox Benachrichtigungen ausschalten

März 22nd, 2019

In der Adresszeile des Browsers:
about:config eingeben.

Dann nach dom.webnotifications.enabled suchen und auf
false setzen.