Neue Seiten

Aus MattWiki
Neue Seiten
Registrierte Benutzer ausblenden | Bots ausblenden | Weiterleitungen einblenden

18. Juni 2025

  • 09:2209:22, 18. Jun. 2025 How to Use GnuCash on Multiple Computers (Versionen | bearbeiten) [2.438 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article describes how to make the GnuCash configuration files, which hold for example the currently open tabs and saved report configurations portable in the sense that GnuCash can be used on multiple computers or laptops, like two Windows computers or even a Windows computer and a Linux computer and look the same on both of them. For this a cloud or network file storage is needed. I am working with Nextcloud as a cloud file storage, but I guess thi…“) Markierung: Visuelle Bearbeitung ursprünglich erstellt als „How to Make GnuCash Configuration Portable“
  • 08:5308:53, 18. Jun. 2025 How to Enable Fingerprint Reader in Fedora (Versionen | bearbeiten) [1.238 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article describes how to enable a fingerprint reader in Fedora like the one built in on a Lenovo ThinkPad T14 Gen1 Laptop. The following informations are based on: Fedora Linux 42 Workstation GNOME 48 Install the needed packages (these are installed on Fedora 42 Workstation by default): sudo dnf install fprintd fprintd-pam Check if service is running properly: systemclt status fprintd.service Erase old prints if needed: fprintd-delete $USER Enr…“)

17. Juni 2025

  • 22:2622:26, 17. Jun. 2025 How to Enable Global Autotype in KeePassXC (Fedora) (Versionen | bearbeiten) [1.045 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article describes how to enable global autotype in KeePassXC on Fedora Linux 42 Workstation Edition. == Instructions == Install KeePassXC via Software App from Fedora Linux RPM. According to the documentation at https://keepassxc.org/docs/KeePassXC_UserGuide#_auto_type :<blockquote>Auto-Type will be disabled when run with a Wayland compositor on Linux. To use Auto-Type in this environment, you must set <code>QT_QPA_PLATFORM=xcb</code> or start KeeP…“) Markierung: Visuelle Bearbeitung
  • 20:4220:42, 17. Jun. 2025 Customize GNOME Desktop (Fedora) (Versionen | bearbeiten) [575 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article contains my notes on how to customize the GNOME Desktop on Fedora Workstation. {| class="wikitable" |+Used Software Versions !Software !Version |- |GNOME |48 |- |Fedora Linux |42 (Workstation Edition) |} == User Interface == === Minimize and Maximize Buttons === By default GNOME Desktop does not show buttons for minimizing or maximizing a windows as in Microsoft Windows. They can be activated either by installing <code>gnome-tweaks</code>…“) Markierung: Visuelle Bearbeitung

1. Juni 2025

31. Mai 2025

25. Mai 2025

  • 18:0518:05, 25. Mai 2025 How to Install Nextcloud 31 on Debian 12 (Versionen | bearbeiten) [22.361 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article describes how to manually install Nextcloud on a Debian server. Warning: It is based on the general Nextcloud documentation: https://docs.nextcloud.com/server/31/admin_manual/installation/ https://docs.nextcloud.com/server/31/admin_manual/configuration_server/ Descriptions below are altered to work on the following OS and servers: * Debian 12 (Bookworm) * MariaDB 10.3 * Apache 2.4 * PHP 7.3 * Nextcloud 31 You can find general instruc…“)

12. Mai 2025

  • 21:3821:38, 12. Mai 2025 Bash Script Knowledge Base (Versionen | bearbeiten) [1.139 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article holds some notes about scriping in bash.             STR="Hello World!"             echo $STR    == General == A bash script starts in the first line with: #!/bin/bash == Variables == Define variable MY_STR: HW="Hello World!" Read content of the variable and put it to the console: echo $HW == Check if Bash Script Received Parameters == Check if any arguments were passed to the script: if [ $# -eq 0 ] then echo "No…“) Markierung: Visuelle Bearbeitung

2. Mai 2025

1. Mai 2025

  • 22:5922:59, 1. Mai 2025 Python Runtime Environments (Versionen | bearbeiten) [2.922 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article tries to bring structure into the different runtime environments for Python for running python programs or Jupyter Notebooks and their advantages and drawbacks: == Management of Environments == pip list pip install == Linux Environments == === Debian === Managed by distribution - Available Packages in Aptitude === Virtual Environment (venv) === pip == Windows Environments == === Windows Native === === Miniconda === pip === Known Iss…“) Markierung: Visuelle Bearbeitung

27. April 2025

26. April 2025

29. März 2025

  • 22:1722:17, 29. Mär. 2025 Pandas Datareader (Versionen | bearbeiten) [915 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „Example code for importing data into Pandas with Pandas Datareader. <syntaxhighlight lang="python3"> import pandas as pd # Import Pandas Datareader data library for use with St. Louis FED / FRED API import pandas_datareader.data as web # Import World Bank sub module from Pandas Datareader import pandas_datareader.wb as wb from datetime import datetime import numpy as np start = datetime(1999, 1, 1) end = datetime(2019, 1, 1) # Get NASDAQ100 Data fro…“) Markierung: Visuelle Bearbeitung