- Install Xfce package:
sudo apt update
sudo apt install -y xfce4 xfce4-goodies xorg dbus-x11 x11-xserver-utils
- Installing Xrdp:
#!/usr/bin/python3 | |
import argparse | |
import logging | |
import subprocess | |
import os | |
import tempfile | |
from tempfile import mkstemp | |
import configparser | |
import gzip |
#!/usr/bin/python3 | |
import argparse | |
import logging | |
import subprocess | |
import os | |
import tempfile | |
from tempfile import mkstemp | |
import configparser | |
import gzip |
Run the following code in the console and it will prevent you from disconnecting.
var startClickConnect = function startClickConnect(){
var clickConnect = function clickConnect(){
project_name/ | |
│ | |
├── data/ # All data-related directories and files | |
│ ├── raw/ # Original, immutable data dump | |
│ ├── processed/ # Data transformed for modeling, such as TFRecords or HDF5 | |
│ ├── interim/ # Temporary processed datasets, possibly smaller or for prototyping | |
│ | |
├── docs/ # Project documentation | |
│ ├── api/ # API reference | |
│ ├── design_docs/ # Design documents, architectural choices |