console.log
- sudo apt-get update
- sudo apt-get upgrade
- sudo apt-get install mysql-server mysql-client libmysqlclient-dev
- sudo apt-get install apache2 apache2-doc apache2-utils libexpat1 ssl-cert
- sudo apt-get install libapache2-mod-php7.4 php7.4 php7.4-common php7.4-curl php7.4-dev php7.4-gd php-pear php-imagick php7.4-mysql php7.4-ps php7.4-xsl
- sudo apt-get install php7.4-zip php7.4-mbstring php7.4-intl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from tkinter import * | |
from tkinter.font import Font | |
import time | |
import random | |
import win32com.client | |
from tkinter import filedialog | |
rand=-1 | |
slides=0 | |
myPresentation=None |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$global:pw="geheim" | |
# Vor dem Start werden alte, registrierte Events geschlossen | |
Unregister-Event -SourceIdentifier * | |
# Initialisierung der Variablen | |
$global:Folder = "$PSScriptRoot\encoded" | |
$global:FolderOut = "$PSScriptRoot\decoded" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cls | |
$gebtag=Read-Host "Dein Geburtstag (in der Form 11.April.1968)" | |
$geb = $gebtag.Split(".") | |
$webClient = new-object System.Net.WebClient | |
#$proxy = new-object System.Net.WebProxy "10.20.30.55:3128" | |
#$cred = New-Object System.Net.NetworkCredential 'veranstaltung', 'qwertz' | |
#$proxy.Credentials = $cred #(Get-Credential).GetNetworkCredential() | |
#$proxy.Credentials = [System.Net.CredentialCache]::DefaultNetworkCredentials | |
#$webclient.proxy=$proxy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cls | |
$d = Get-Content .\Geburtstage.csv | |
$filename = "geburtstage.ics" | |
"" | Set-Content $filename | |
$idcount=1; | |
foreach ($zeile in $d) { | |
$daten = $zeile.Split(";") | |
"BEGIN:VCALENDAR" | Add-Content $filename | |
"VERSION:2.0" | Add-Content $filename | |
"PRODID:http://www.mmbbs.de" | Add-Content $filename |