2745 (m*re music)

scheibe tracks
Spiritual Beggars - Ad Astra

Spiritual Beggars – Ad Astra

1. Left Brain Ambassadors
2. Wonderful World
3. Sedated
4. Angel Of Betrayal
5. Blessed
6. Per Aspera Ad Astra
7. Save Your Soul
8. Until The Morning
9. Escaping The Fools
10. On Dark Rivers
11. The Goddess
12. Mantra
Bonus. Let The Magic Talk
Kim Salmon and the Surrealists - Selftitled

Kim Salmon and the Surrealists – Selftitled

1. I Wish Upon You
2. What’s Inside Your Box?
3. Redemption For Sale
4. Draggin’ Out The Truth
5. Plenty More Fish
6. Frantic Romantic
7. I’m Gonna See You Compromised
8. Innersense
9. Holocaust
10. It’s Your Fault
35007 - Loose

35007 – Loose

1. Herd
2. Soul Machine
3. Short Sharp Left
4. Undo
5. Big Bore
6. Vein
7. 66
8. Powertruth
9. Locker
10. Zero 21
Rollins Band - The End of Silence

Rollins Band – The End of Silence

1. Low Self Opinion
2. Grip
3. Tearing
4. You Didn’t Need
5. Almost Real
6. Obscene
7. What Do You Do
8. Blues Jam
9. Another Life
10. Just Like You
New Christs - Divine Rites

New Christs – Divine Rites

1. Like A Curse
2. Sun God
3. Born Out Of Time
4. No Next Time
5. The Black Hole
6. Addiction
7. Dropping Like Flies
8. Dead Girl
9. I Swear
10. You’ll Never Catch My Wave
11. I Saw God
12. Headin’ South

2721 (s*me IT)

item URL no
media engineering produktionsgesellschaft fuer digitale informationssysteme http://www.engineering.de/firmen/bielefeld_media_engineering_gmbh__co_kg.htm one
INCH3 http://www.inch3.de/ two
meisdata https://www.serverproject.de/ three
google-dot-to https://www.google.to/ five
archive.org https://archive.org/ four
HDNet https://www.hdnet.de/ x
this https://configedit.wordpress.com/ 0

—-
see, my mind’ s equipped with filters, but they don’t seem to work within…

2704 (BASIC GET in c)

The following c-program reads a single keystroke without enter. Output is the key and its ascii-value. The keys are read in a loop that is interrupted by the #-sign. Note that this is not trivial.

#include <stdio.h>
#include <termios.h>
#include <string.h>

int kbhit(void);
int kbhit(void) {
	struct termios term, oterm;
	int fd = 0;
	int c = 0;
	tcgetattr(fd, &oterm);
	memcpy(&term, &oterm, sizeof(term));
	term.c_lflag = term.c_lflag & (!ICANON);
	term.c_cc[VMIN] = 0;
	term.c_cc[VTIME] = 1;
	tcsetattr(fd, TCSANOW, &term);
	c = getchar();
	tcsetattr(fd, TCSANOW, &oterm);
	if (c != -1)
	ungetc(c, stdin);
	return ((c != -1) ? 1 : 0);
}

int getch();
int getch()
{
	static int ch = -1, fd = 0;
	struct termios neu, alt;
	fd = fileno(stdin);
	tcgetattr(fd, &alt);
	neu = alt;
	neu.c_lflag &= ~(ICANON|ECHO);
	tcsetattr(fd, TCSANOW, &neu);
	ch = getchar();
	tcsetattr(fd, TCSANOW, &alt);
	return ch;
}

int rechne(char v);
int rechne(char v) {
	int vback;
	vback = v;
	return vback;
}

int main() {
	char c;
	int interr;
	interr = 1;
	do {
		do {
	   		c = getch();
	   		if (c == '#') {
				interr = 0;
				break;
			}
	   	int wert;
	   	wert = rechne(c);
	   	printf("char '%c' key '%d'\n", c, wert);
	 	}
		while(kbhit());
	}
	while(interr);
printf("programmende\n");
return 0;
}