This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# git shortcuts | |
alias gs='git status' | |
alias gcm='git checkout master' | |
alias gplom='git pull origin master' | |
alias gphom='git push origin master' | |
alias gb='git branch' | |
alias ga='git add' | |
alias gc='git commit -m' | |
alias gp='git pull' | |
alias go='git checkout' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\section{List of abbreviations} | |
\DTLnewdb{acronyms} | |
\addacronym{sps}{Samples Per Second} | |
\addacronym{IMU}{Inertial Measurement Unit} | |
\addacronym{SoC}{System on Chip} | |
\addacronym{DMP}{Digital Motion Processor} | |
\addacronym{DSP}{Digital Signal Processor} | |
\addacronym{QFN}{Quad Flat No-leads} | |
\addacronym{LED}{Light-Emitting Diode} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from PyQt5.QtWidgets import QWidget, QGridLayout | |
import pyqtgraph as pg | |
from utils import TimeAxisItem, timestamp | |
class ExampleWidget(QWidget): | |
def __init__(self, parent=None): | |
QWidget.__init__(self, parent) | |
self.plot = pg.PlotWidget( | |
title="Example plot", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The WD TV Live Streaming uses "a Sigma Designs SMP8670AD 700 MHz processor | |
with 512MB of DDR2 memory from Nanya" (wikipedia.org). | |
The CPU uses a MIPS instruction set, supported by debian-mipsel | |
(little-endian according to http://files.dune-hd.com/partners/sdk/dune_devel_info.txt) | |
Our directory with Debian needs to be "hidden" to prevent mt-daapd from continuously scanning it. | |
Make minimal Debian installation | |
apt-get install debootstrap | |
mkdir .wdtv_gen3_debian7 |