Neue Seiten

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

25. Mai 2025

  • 18:0518:05, 25. Mai 2025 How to Install Nextcloud 31 on Debian 12 (Versionen | bearbeiten) [21.853 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) [3.123 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

2. März 2025