Raspberry Pi Installation

  • Beitrags-Autor:
  • Beitrags-Kategorie:Raspberry Pi

– download Raspbian Stretch Lite (2017-09-07-raspbian-stretch-lite.zip) from https://www.raspberrypi.org/downloads/raspbian/ – download Win32 Disk Imager (win32diskimager-1.0.0-install.exe) from https://sourceforge.net/projects/win32diskimager/files/Archive/ CertUtil -hashfile 2017-09-07-raspbian-stretch-lite.zip SHA256 SHA256-Hash der Datei 2017-09-07-raspbian-stretch-lite.zip: bd 2c 04 b9 41 54…

WeiterlesenRaspberry Pi Installation

Spring Boot + Heroku

  • Beitrags-Autor:
  • Beitrags-Kategorie:Sonstiges

– Download heroku-cli-win64.exe – Installation without GIT (it was installed in version 2.9) – First command "heroku login" in starts 12MB update C:\Temp>heroku --version heroku-cli/5.12.0-211263f (windows-amd64) go1.7.5 – heroku create…

WeiterlesenSpring Boot + Heroku

Pandoc

  • Beitrags-Autor:
  • Beitrags-Kategorie:Software

"If you need to convert files from one markup format into another, pandoc is your swiss-army knife." Update 16.10.2018: Pandoc mit PDF-Ausgabe unter CentOS yum install texlive yum install pandoc-citeproc

WeiterlesenPandoc

The Joel Test

  • Beitrags-Autor:
  • Beitrags-Kategorie:Sonstiges

Our current rating for the The Joel Test: 12 Steps to Better Code. – Do you use source control? – Can you make a build in one step? – Do…

WeiterlesenThe Joel Test

SQL-Abfrage zu XML-Datei

  • Beitrags-Autor:
  • Beitrags-Kategorie:Sonstiges

Das tägliche Abfrageergebnis als XML-Datei schreiben. Die Spalte "erstellt" enthält Datum und Uhrzeit von der Datensatzanlage. @echo off set jahr=%date:~-2% set monat=%date:~-7,2% set tag=%date:~-10,2% bcp "select t1.* \ , convert(date,…

WeiterlesenSQL-Abfrage zu XML-Datei