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
import pandas as pd | |
from openpyxl import Workbook | |
from openpyxl.styles import Alignment | |
# Create a workbook and get the active worksheet | |
wb = Workbook() | |
ws = wb.active | |
# Define the data for each practical | |
practicals = { |
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
function ConvertVideoWithCV { | |
param ( | |
[string]$inputFile, | |
[string]$outputFile | |
) | |
if ([string]::IsNullOrEmpty($inputFile) -or [string]::IsNullOrEmpty($outputFile)) { | |
Write-Host "Invalid input. Please provide both input and output file paths." | |
return | |
} |
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
#!/bin/bash | |
INPUT="app-icon.svg" | |
OUTPUT_DIR="./images/icons" | |
TEMP_ICON="icon.png" | |
TEMP_ICON_SIZE=1024 | |
mkdir -p "$OUTPUT_DIR" | |
declare -A icon_sizes=( |
OlderNewer