Linux Mint test .vdi virtual disc

Here you can download the virtual disc image from the video. The password is: 123456 , the username is visible in the video, the installation contains an FTP server and an SSH deamon, so have fun 😉 …

Here is the video tutorial for the SSH server installation https://youtu.be/omVpSUUnI5Y

And here you can watch the FTP installation tutorial https://youtu.be/5zu4SbrwBAA i hope you enjoy, maybe i could help you with some issues

Arduino Chat Server

#include <SPI.h>
#include <Ethernet.h>
#include <LCD4884.h>

byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0x20, 0x13 };
IPAddress ip(192,168,0,11);
IPAddress gateway(192,168,0, 1);
IPAddress subnet(255, 255, 255, 0);

static LCD4884 lcd;

EthernetServer server(23);
boolean gotAMessage = false; 
int incomingByte = 0;

void setup() {
  lcd.begin(84,48);
  lcd.print("M4TRiX-v5.84");
  Ethernet.begin(mac, ip, gateway, subnet);
  server.begin();
  Serial.begin(9600);
}

void loop() {
  EthernetClient client = server.available();
  if (client) {
    if (!gotAMessage) {
      Serial.println("new user online");
      client.println("W3Lc0M3 t0 Th3 4d 34 54 52 69 58");
      gotAMessage = true;
    }
    
    char thisChar = client.read();
    server.write(thisChar);
    lcd.write(thisChar);
    Serial.print(thisChar);
  }  
}

the only thing you need to download is the LCD4884s library

CodeRadio

youtube takes this stream offline here is why  https://www.freecodecamp.org/news/the-fall-and-rise-of-code-radio/ and here is the new freecodecamp radio stream https://coderadio.freecodecamp.org/ have fun again


the youtube livestream of freecodecamp.org

Hallo Welt!

Willkommen zu meinem versuch WordPress auf eigener Hardware zu installieren  😉

edit: dieses komische >> WordPress Plugin namens kiwipress versagt leider , bitte verwendet einen IRC Client um in den Chat zu kommen .