Neue Seiten
Aus MattWiki
2. Mai 2025
- 14:2014:20, 2. Mai 2025 Jupyter Notebook (Versionen | bearbeiten) [269 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article describes how to work with Jupyter Notebook and Jupyter Lab. It also tries to go into details when it comes to extending your Python Runtime Environments. == Jupyter Notebooks == === Standalone === === In Visual Studio Code === Kategorie:Python“) Markierung: Visuelle Bearbeitung
1. Mai 2025
- 22:5922:59, 1. Mai 2025 Python Runtime Environments (Versionen | bearbeiten) [3.027 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
- 23:1923:19, 27. Apr. 2025 How to do Database Backups with Logrotate (Versionen | bearbeiten) [1.193 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „Example for how to create database backups with logrotate. == Example Configuration == The following configuration is still in testing so don't rely on this and take this with a grain of salt. Create file <code>/etc/logrotate.d/database_backup</code><syntaxhighlight lang="bash"> # daily backup for 7 days /var/backups/mariadb/database_dump.sql { missingok rotate 7 daily # compress # compresscmd gzip # compressext .gz nocopy nocreate postr…“) Markierung: Visuelle Bearbeitung
- 18:5318:53, 27. Apr. 2025 Ungoogled Chromium (Versionen | bearbeiten) [420 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article describes how to install and use ungoogled Ungoogled Chromium on Windows PCs. == Installation == Get binary or installer package from: https://github.com/ungoogled-software/ungoogled-chromium-windows?tab=readme-ov-file There click on:<blockquote>[https://ungoogled-software.github.io/ungoogled-chromium-binaries/ Download binaries from the Contributor Binaries website]</blockquote> Kategorie:Windows“) Markierung: Visuelle Bearbeitung
- 15:2415:24, 27. Apr. 2025 How to Import CSV in MariaDB (Versionen | bearbeiten) [2.466 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article describes how to proceed to import CSV files into MariaDB. Probably this should work with MySQL as well, but I did not test it. == General Informations and Assumptions == Separator character is ";" Text fields are enclosed with double quotes. The file is created on Windows, which results in CRLF on the end of every line. If target table allows NULL values and CSV should also contain these NULL values, then they have to be expressed as \N…“) Markierung: Visuelle Bearbeitung
- 01:2401:24, 27. Apr. 2025 Search and Replace with New Line in Notepad++ (Versionen | bearbeiten) [509 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article describes how to use Notepad++ to search for \n or similar characters in a text file and replace it with a new line. == How to Search and Replace with New Line == Set extended search mode in search and replace dialog. When looking for \n you have to search for \\n (yes, with two backslashes before the n) In the replace field enter \r\n for a new line (at least in Windows). With the extended mode active it will find the \n and replace it w…“) Markierung: Visuelle Bearbeitung
26. April 2025
- 22:1522:15, 26. Apr. 2025 Window Functions und Window Specification (Versionen | bearbeiten) [4.154 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „== Welche Arten von Functions gibt es in SAP Datasphere und SAP HANA? == Analytic Model: * Nur kurierte Auswahl von Funktionen in Datasphere * Keine Window Functions SQL Views und Calculated Columns in Graphical Views unterstützen: * Alle HANA Funktionen → [https://help.sap.com/docs/hana-cloud-database/sap-hana-cloud-sap-hana-database-sql-reference-guide/alphabetical-list-of-functions Alphabetical List Of Functions | SAP Help Portal] * Aggregate Fu…“) Markierung: Visuelle Bearbeitung
- 21:1421:14, 26. Apr. 2025 How to get Insufficient Privilege Details for GUID (Versionen | bearbeiten) [1.196 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „In case of errors due to insufficient privilege and a GUID like here: Deploy view ends with "Failed to execute a statement due to insufficient privilege" Here is how to find more details: === # Use SAP HANA Cockpit === === # Use Database Procedure GET_INSUFFICIENT_PRIVILEGE_ERROR_DETAILS === Kategorie:HANA Kategorie:SAP“) Markierung: Visuelle Bearbeitung
- 21:1021:10, 26. Apr. 2025 Deploy view ends with "Failed to execute a statement due to insufficient privilege" (Versionen | bearbeiten) [414 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „Deploying a view in SAP Datasphere fails with the error message:<blockquote>Failed to execute a statement due to insufficient privilege</blockquote> See SAP Note 3456011 - Deploy a view ends with "Failed to execute a statement due to insufficient privilege" message For how to get more details about the insufficient privilege GUID see:“) Markierung: Visuelle Bearbeitung
- 16:1416:14, 26. Apr. 2025 Intel Core i7-13700K Microcode Reports (Versionen | bearbeiten) [5.101 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article contains reports about my journey with my Intel Core i7-13700K CPU and its various microcode updates. I am running it in a MSI MAD Z790 Tomahawk WIFI Mainboard with This article contains my notes about how I perceived the behavior of my Intel Core i7-13700K CPU, bought in December 2022, after installing the various microcode updates. I am running it in a MSI MAD Z790 Tomahawk WIFI Mainboard with Raptor Lake BeQuiet Dark Rock Elite…“) Markierung: Visuelle Bearbeitung
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
- 15:2615:26, 2. Mär. 2025 Python Pandas Module Cheatsheet (Versionen | bearbeiten) [4.408 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „== Import Pandas Module == <syntaxhighlight lang="python3"> import pandas as pd </syntaxhighlight> Kategorie:Python“) Markierung: Visuelle Bearbeitung
19. Februar 2025
- 10:2910:29, 19. Feb. 2025 Python NumPy Module Cheatsheet (Versionen | bearbeiten) [1.690 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „== Variance == <syntaxhighlight lang="python3">import numpy as np dividends_microsoft_eur = [0.6358, 0.6308, 0.6364, 0.6854, 0.6876, 0.7016, 0.7016, 0.7906] variance_dividends_microsoft = np.var(dividends_microsoft_eur) print('The variance of Microsoft stock dividends in 2023 and 2024 is', variance_dividends_microsoft)</syntaxhighlight> == Standard Deviation == Kategorie:Python“) Markierung: Visuelle Bearbeitung
8. Februar 2025
- 20:4320:43, 8. Feb. 2025 MathJax Cheatsheet (Versionen | bearbeiten) [2.753 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „<math>a_1..a_n</math>“) Markierung: Visuelle Bearbeitung
- 10:2210:22, 8. Feb. 2025 Python Operators (Versionen | bearbeiten) [1.100 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „===Sources=== https://www.codecademy.com/resources/docs/python/operators https://docs.python.org/3/reference/lexical_analysis.html#operators Kategorie:Python“) Markierung: Visuelle Bearbeitung
- 10:1810:18, 8. Feb. 2025 Python Built-in Modules (Versionen | bearbeiten) [353 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „=== os - Operating System === ==== How to Clear the Console from a Python Script ==== <syntaxhighlight lang="python3"> import os os.system('cls' if os.name == 'nt' else 'clear') </syntaxhighlight> Kategorie:Python“) Markierung: Visuelle Bearbeitung: Gewechselt