Monthly Archives: March 2016

Windows 10

  • MediaCreationTool

Update blockieren

Windows 10: Upgrade von Windows 7/8.1 blockieren

32-bit / 64-bit

How to Switch From 32-bit Windows 10 to 64-bit Windows 10
CPUID CPU-Z, CPU Info, Caches, Mainboard, Memory, Graphics

Windows N

Windows 10: Es gibt weiterhin N-Editionen
Was ist eine N-Edition von Windows?

Product Key / CD Key

How to Use Your Free Windows 10 License After Changing Your PC’s Hardware
So finden Sie Ihren Windows 10 Product Key
Where to find a Win 10 product key after upgrade?
NirSoft ProduKey v1.83, Recover lost Windows product key (CD-Key) and Office 2003/2007 product key

EFI

How to repair the EFI Bootloader in Windows 10
How to repair the EFI Bootloader in Windows 8

Troubleshoot -> Advanced options -> Command Prompt

$ diskpart
> list disk
> sel disk 0
> list vol
Volume ###   Ltr  Label           Fs    Type       Size
--------------------------------------------------------
Volume 0     C    WINDOWS 10      NTFS  Partition  130GB
Volume 1
Volume 2
Volume 3          BOOT MANAGER    FAT32 Partition  100MB

> sel vol 3
> assign letter=v:
> exit

$ cd /d v:\EFI\Microsoft\Boot\
$ bootrec /fixboot
$ ren BCD BCD.old
$ bcdboot c:\Windows /l en-us /s v: /f ALL

Taskleiste

C:\Users\%USER%\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar

Startmenü

C:\Users\%USER%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
C:\ProgramData\Microsoft\Windows\Start Menu

Explorer Schnellzugriff löschen

Schnellzugriff aus Datei Explorer entfernen Windows 10
PowerRun v1.0 (Run as TrustedInstaller)

PowerRun_x64.exe
HKEY_CLASSES_ROOT\CLSID\{679f85cb-0220-4080-b29b-5540cc05aab6}\ShellFolder
Rechtsklick auf ShellFolder und den Besitz übernehmen: Berechtigungen in der Registry übernehmen
Attributes = a0100000 --> a0600000

Nach neustart, Explorer spuckt das aus:

explorer_not_found

Datei Explorer mit Dieser PC anstatt Schnellzugriff starten Windows 10

explorer_optionen ordner_optionen

Explorer OneDrive löschen

Windows 10: OneDrive komplett deinstallieren – So geht’s

Windows-Taste +  R
regedit
HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}
System.IsPinnedToNameSpaceTree = 1 --> 0

Windows Product Key

Windows 7-Datenträgerabbilder (ISO-Dateien) herunterladen
Rufus – Erstelle bootbare USB-Laufwerke auf einfache Art und Weise

Compare

Microsoft Windows 7 Professional
Microsoft Windows 10 Professional

Buy

MMOGA: Microsoft Windows 7 Professional (32/64 Bit) = 16,99 €
MMOGA: Microsoft Windows 10 Professional OEM = 19,99 €

Find

Laubenpieper = Püntner

jemand, der in einer Laubenkolonie einen Garten hat

Quelle: Duden: Laubenpieper

Bezeichnung für Stadtmenschen, die in Kleingartenkolonien eine Parzelle (auch Schrebergarten genannt) besitzen, zwecks Obst- und Gemüseanbau. L. sind häufig als Spießer verschrien und mögen überdurchschnittlich oft Gartenzwerge, Wachstuchtischdecken, neugierige Nachbarn und lecker Mööööhrchen.

Quelle: MundMische: Laubenpieper

TinyOS

TinyOS
github: TinyOS, Main development repository for TinyOS (an OS for embedded, wireless devices).
github: nesC, an extension to the C programming language designed to embody the structuring concepts and execution model of TinyOS
TinyOS Documentation Wiki
TinyOS FAQ

github: SigFoxTMPDemo

module SigFoxTMPDemoC {
  uses {
    interface Boot;
    interface Leds;

    interface UartStream as UartStreamOut;
    interface UartByte as UartByteOut;
    interface Resource as UartResourceOut;
    interface HplMsp430UsciA as UartConfigOut;

    interface Timer<TMilli> as ReadTimer;
    interface Timer<TMilli> as ReadRspBuffer;    
    interface Read<uint16_t> as TempSensor;
  }
}

configuration SigFoxTMPDemoAppC { }

implementation {
  components MainC, LedsC, SigFoxTMPDemoC as App;

  // Application
  App.Boot -> MainC;
  App.Leds -> LedsC;

  // Serial to device
  components new Msp430Uart1C();
  App.UartStreamOut -> Msp430Uart1C;
  App.UartByteOut -> Msp430Uart1C;
  App.UartResourceOut -> Msp430Uart1C.Resource; 

  components HplMsp430UsciA1C as UartConfigOut;
  App.UartConfigOut -> UartConfigOut;

  // Timers
  components new TimerMilliC() as ReadTimer;
  App.ReadTimer -> ReadTimer;
  
  components new TimerMilliC() as ReadRspBuffer;
  App.ReadRspBuffer -> ReadRspBuffer;

  // Sensors
  components new SimpleTMP102C() as Temperature;
  App.TempSensor -> Temperature;  

}

Chameleon Project – NFC Card Emulator

Welcome to the Chameleon Project
ChameleonMini – A Versatile NFC Card Emulator, and more…
ChameleonMini

Chameleon: A Versatile Emulator for Contactless Smartcards, PDF 16.11.2011
Chameleon-Mini Documentation

Zu NFC und Authentisierung

RFID (radio-frequency identification)
Near Field Communication
Authentifizierung

Tutorial

Unleash the Chameleons!
Sniffing Tags with the ChameleonMini
Getting Started with the ChameleonMini

Sniff / Reader

after setting config to ISO14443A_READER, config cannot be changed via python
Binary characters in output of IDENTIFY
ChameleonMini fun – Getting it to work

XMODEM

  • XMODEM: rx for receiving, sx for sending.
  • YMODEM: rb for receiving, sb for sending.
  • ZMODEM: rz for reveiving, sz for sending.

Quit/Exit:
2 x CTRL-X

Wikipedia: XMODEM
Transferring files using serial console
Send a file over serial port with XMODEM protocol
What is the complementary command to ‘rx’ for xmodem transfer?
XMODEM, YMODEM, and ZMODEM
Send file by xmodem or kermit protocol with GNU screen
screen Zmodem
GNU Screen and Zmodem

Serial Programming

Serial Programming HOWTO
Binary data over serial terminal