I hereby claim:
- I am jimmckeeth on github.
- I am jimmckeeth (https://keybase.io/jimmckeeth) on keybase.
- I have a public key ASBt3FFVworfFAq38crbjISewR-SE7eWTQsS_sCkpMCMrwo
To claim this, I am signing this object:
| #!/bin/bash | |
| echo "Updating the local package directory" | |
| sudo apt update | |
| echo "Upgrade any outdated pacakges" | |
| sudo apt full-upgrade -y | |
| echo "Install new packages necessary for Delphi" | |
| sudo apt install joe wget p7zip-full curl openssh-server build-essential zlib1g-dev libcurl4-gnutls-dev libncurses5 xorg libgl1-mesa-dev libosmesa-dev libgtk-3-bin -y | |
| echo "Clean-up unused packages" | |
| sudo apt autoremove -y | |
| cd ~ |
| unit IgnoreEditChanges; | |
| // https://blogs.embarcadero.com/ignore-changes-with-custom-managed-records/ | |
| // Custom Managed Records are a new feature introduced in 10.4 Sydney | |
| interface | |
| uses | |
| System.Classes; | |
| type |
| uses Math; | |
| function ROT47(UnRot: string): string; | |
| // More information https://en.wikipedia.org/wiki/ROT13#Variants | |
| begin | |
| Result := UnRot; | |
| for var I := 1 to Length(Result) do | |
| begin | |
| var o := ord(Result[i]); | |
| case o of |
I hereby claim:
To claim this, I am signing this object:
| // +-----------------------------------------------------------------+ | |
| // | Created with Petra Plugin For Sketch from www.applyingcode.com | | |
| // | by Jim McKeeth, Embarcadero Technologies | | |
| // | [email protected] | | |
| // +-----------------------------------------------------------------+ | |
| // | Merry Christmas, Happy Holidays, and have a great 2018 | | |
| // +-----------------------------------------------------------------+ | |
| unit MerryChristmas; |