EDV: Unterschied zwischen den Versionen

Aus Wiki_2020
Wezi (Diskussion | Beiträge)
Wezi (Diskussion | Beiträge)
Zeile 134: Zeile 134:
===== <u>Programme</u> =====
===== <u>Programme</u> =====
<div style="column-count:2">
<div style="column-count:2">
====== Networktools ======
*[http://mzl.la/1BsOAb6  Thunderbird Kalender Feiertage hinzufügen ]
*[http://mzl.la/1BsOAb6  Thunderbird Kalender Feiertage hinzufügen ]
*Patch for Design Spark 2.0 https://designspark.zendesk.com/hc/en-us/articles/360005180754
*Patch for Design Spark 2.0 https://designspark.zendesk.com/hc/en-us/articles/360005180754

Version vom 26. September 2023, 20:14 Uhr

EDV

Hardware

Project Neubau

Hardware

Software

Betriebssystem
Treiber

in dieser Reihenfolge installiert:

  1. Chipsatz
  2. Mainboard
  3. Grafikkarte
  4. LAN
  5. Canon Drucker Pixma IP4300
Benchmarks
Linuxperformance

Router(Speedport Fritz )

Intel CPU Core i7 4770K

USB

NAS

ASROCK Z87 Extreme4

TV Karten

Pinnings

Software

Python Anaconda
Python & MYSQL

ssl Error Fix

Arbeiten mit Python:

AnacondaPrompt(Anaconda3) Konsole starten

1. Neues ENV erstellen:

conda create --name example1

2. neues ENV aktivieren

conda activate example1

3. benötigte Pakete installieren z.B.

conda install jupyterlab dask pandas hvplot
conda install -c conda-forge condastats

4. JupyterLab starten

jupyter-lab

5. mit Ctrl-C Jupyter-Lab stoppen 6. aktiviertes ENV deaktivieren

conda deactivate
Linux Mint
Programme
Notfallsysteme USB/CD
Datenbank

sqlitebrowser
sqlite-backup

Backing up the database
To make a backup copy of the database, simply do a "dump" and redirect the results to a file.
cd /home/sqlite
sqlite3 sample.db .dump > sample.bak

Software - Software, Quellen etc.

Backup

Betriebssysteme related

Win 10 related

Boot / Multiboot
Datenrettung
Schadsoftware

Viren und Zeugs - Plagegeister etc.

Internetsicherheit

Passwordcrack Wordlists

HowTo's

Virtualisierung

Git & Github


GitBash:
cd U:/ArduinoIDE_2.0.3/portable/Sketchbook/xxx
change workingdir
git init Initialized empty Git repository in U:/ArduinoIDE_2.0.3/portable/Sketchbook/xxx/.git/
git add . warning: in the working copy of 'mcp23xxx_blink.ino', LF will be replaced by CRLF the next time Git touches it
git status On branch master No commits yet Changes to be committed: (use "git rm --cached <file>..." to unstage) new file: Blink.png new file: mcp23xxx_blink.ino
git commit -m "first commit" [master (root-commit) f64e5b1] first commit 2 files changed, 60 insertions(+) create mode 100644 Blink.png create mode 100644 mcp23xxx_blink.ino
git status On branch master nothing to commit, working tree clean

meanwhile create on Github new Repo


git remote -v
git remote add origin https://github.com/Jvde2019/mcp23xxx_blink
git remote -v origin https://github.com/Jvde2019/mcp23xxx_blink (fetch) origin https://github.com/Jvde2019/mcp23xxx_blink (push)
git branch -M main
git push -u origin main Enumerating objects: 4, done. Counting objects: 100% (4/4), done. Delta compression using up to 12 threads Compressing objects: 100% (4/4), done. Writing objects: 100% (4/4), 8.27 KiB | 4.13 MiB/s, done. Total 4 (delta 0), reused 0 (delta 0), pack-reused 0 To https://github.com/Jvde2019/mcp23xxx_blink * [new branch] main -> main branch 'main' set up to track 'origin/main'.

Sonstiges