3887 (how_intro_slides_linked_data_solid_github_how)

—-
https://solid.github.io/understanding-linked-data/#1
—-

{
  "@context": {
    "givenName": "http://schema.org/givenName",
    "birthDate": "http://schema.org/birthDate",
    "created": "http://purl.org/dc/terms/created"
  },
  "@id": "https://example.com/users",  // <- ID of this dataset
  "created": {
        "@value": "2013-09-11T07:18:19+0000",
        "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
  },
  //     ^- timestamp of when it was generated
  "@graph": [
    {
      "@id": "http://www.alice.com",
      "givenName": "Alice",
      "birthDate": "1990-01-01"
    },
    ...
  ]
}

3761 (status and concept)

we have an ip and a fqdn on a dedicated machine

we have cert and wildcard-cert

we have apache with a redirect-message in /var/www/html

we have nodejs amd npm

we have solid running on 8443

we have successfully created an account

we can view the hp and the card

we can’ t log in

we will continue with nginx and reverse proxy (//edit: things turned out we went with apache)

communication is mostly read and have server listed on github

all of this is a sparetime project

just like the title of this blog says since 2012

experiment and exercise

just follow your nose

2983 (fingeruebung)

this is the windows-thang for a keypress-read without enter. output char and ascii-value. loop terminated by ‘#’.

//offensichtlich ein windowsding
#include<stdio.h>//standardinout
//windows for kbhit and getchar
#include<conio.h>
//for sleep
#include<windows.h>
//linux
//#include <termios.h>
//#include <string.h>
int main() {

int countdown;
char ch;
int wert;
char b;
do {
	while(countdown++ <= 1000)
	{  
    		if(b=kbhit())            
        	break;             
    		Sleep(1);   
	}
	ch = getch();
	wert = ch;
	if (b != 0)        
    		{ printf("key %c ascii %d\n", ch, wert);}
} while (ch != '#');
printf ("programmende\n");
return 0;
}