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
#!/usr/bin/env bash | |
set -e # exit if a command exists with non zero status | |
# Check if gdebi is installed, and install it if not | |
if ! command -v gdebi &> /dev/null | |
then | |
echo "gdebi not found. Installing gdebi..." | |
sudo apt update | |
sudo apt install -y gdebi-core |
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
$MacAddress = "08:BF:B8:12:EC:71" | |
$MacAddress = $MacAddress.Replace(":", "") | |
$BroadcastAddress = "192.168.178.255" | |
$Port = 9 | |
# Convert the MAC address to a byte array | |
$MacBytes = [byte[]]::new($MacAddress.Length / 2) | |
for ($i = 0; $i -lt $MacAddress.Length; $i += 2) { | |
$MacBytes[$i / 2] = [convert]::ToByte($MacAddress.Substring($i, 2), 16) |
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
<?xml version="1.0" encoding="utf-8"?> | |
<packages> | |
<package id="dbeaver"/> | |
<package id="jetbrains-rider"/> | |
<package id="webstorm"/> | |
<package id="git"/> | |
<package id="github-desktop"/> | |
<package id="nodejs"/> | |
<package id="dotnet"/> | |
<package id="composer"/> |