Archive for September 5th, 2019

Donnerstag, September 5th, 2019

Prof. Dr. Lars Vollmer – Gebt eure Stimme nicht ab!

Donnerstag, September 5th, 2019

SoloKeys Somu – a tiny FIDO2 security key for two-factor authentication and passwordless login

Donnerstag, September 5th, 2019

#heiseshow – FIDO2 und die Tage der Passwörter sind wirklich gezählt

Donnerstag, September 5th, 2019

Flowchart „Übersicht über die EU-Medizinprodukte-Verordnung (MDR)“ vom Mai 2017 – Überblick über die Anforderungen Verordnung (EU) 2017/745 über Medizinprodukte

Donnerstag, September 5th, 2019

VMware vSAN 6.7 Update 3 – new vsantop vSAN command line troubleshooting tool

Donnerstag, September 5th, 2019

Use the command-line tool – vsantop – that runs on ESXi hosts to view the real time vSAN performance metrics

Postman – now lets you visualize your API responses programmatically using the new Visualizer feature

Donnerstag, September 5th, 2019

Western Digital Ultrastar DC HC500 & DC HC600 – Mikrowellentechnik ermöglicht die 20-TByte-Festplatten ab 2020

Donnerstag, September 5th, 2019

Microsoft – führt die „Swiss Cloud“ ein und launcht zwei eigene Rechenzentren in der Schweiz

Donnerstag, September 5th, 2019

Haribo – verkauft Gummibärchen jetzt farblich getrennt

Donnerstag, September 5th, 2019

NetApp snapshots & Veeam – deliver complete data protection

Donnerstag, September 5th, 2019

Facebook – mehr als 419 Millionen Telefonnummern von Facebook Usern verknüpft mit jeweils deren Facebook-ID standen unverschlüsselt auf einem Internetserver für jedermann bereit

Donnerstag, September 5th, 2019

Making REST API Requests with cURL as a CLI (command line interface) – here are a few cURL argument we’ll pass with our requests

Donnerstag, September 5th, 2019

Making REST API Requests with cURL as a CLI (command line interface) – how to do GET, POST, PUT, PATCH, and DELETE requests via cURL

GET Request
curl https://jsonplaceholder.typicode.com/posts
curl -i https://jsonplaceholder.typicode.com/posts
POST Request
curl -X POST -d „userId=5&title=Stuff and Things&body=An amazing blog post about both stuff and things.“ https://jsonplaceholder.typicode.com/posts
curl -X POST -H „Content-Type: application/json“ -d ‚{„userId“: 5, „title“: „Stuff and Things“, „body“: „An amazing blog post about both stuff and things.“}‘ https://jsonplaceholder.typicode.com/posts
PUT Request
curl -X PUT -d „userId=1&title=Something else&body=A new body“ https://jsonplaceholder.typicode.com/posts/1
curl -X PUT -H „Content-Type: application/json“ -d ‚{„userId“: 1, „title“: „Something else“, „body“: „A new body“}‘ https://jsonplaceholder.typicode.com/posts/1
PATCH Request
curl -X PATCH -d „title=’Only change the title'“ https://jsonplaceholder.typicode.com/posts/1
curl -X PATCH -H „Content-Type: application/json“ -d ‚{„title“: „Only change the title“}‘ https://jsonplaceholder.typicode.com/posts/1
DELETE Request
curl -X DELETE https://jsonplaceholder.typicode.com/posts/1