Skip to content

Instantly share code, notes, and snippets.

View checkdigits's full-sized avatar
💭
Available

Ian Barker checkdigits

💭
Available
View GitHub Profile
@viniciusfbb
viniciusfbb / fmx.svg
Created May 19, 2023 02:56
Firemonkey Artwork #delphi
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jimmckeeth
jimmckeeth / SetupRedHat4Delphi23.sh
Last active June 16, 2024 09:33
Installs required packages and sets up Red Hat Linux for Delphi 12.1 Athens development
#!/bin/bash
#
# Download and execute with the following:
# curl -L https://embt.co/SetupRedHat4Delphi22sh | bash
#
echo "updating installed package"
sudo yum upgrade -y
echo "installing development tools"
sudo yum groupinstall 'Development Tools' -y
sudo yum install wget gtk3 mesa-libGL gtk3-devel -y
@jimmckeeth
jimmckeeth / SetupUbuntu4Delphi22.sh
Last active June 16, 2024 09:33
This script automates the setup of Ubuntu 22.04 LTS for Delphi 11.3 Alexandria
#!/bin/bash
#
# Download and execute with the following:
# curl -L https://embt.co/SetupUbuntu4Delphi22 | bash
#
echo "Updating the local package directory"
sudo apt update
echo "Upgrading any outdated pacakges"
sudo apt full-upgrade -y
echo "Install new packages necessary for Delphi & FMXLinux"