1) Get $35 / $25 / $20 / $10 free DigitalOcean Credit.
2) Get DigitalOcean 1 Year Free Trial.
3) Get $100 Credit For 60 Days. $100 Free Credits
| # after appcleaner does his magic, do this | |
| sudo rm -rf "/Library/Application Support/Paragon Software/" | |
| sudo rm /Library/LaunchDaemons/com.paragon-software.installer.plist | |
| sudo rm /Library/LaunchDaemons/com.paragon-software.ntfs.loader.plist | |
| sudo rm /Library/LaunchDaemons/com.paragon-software.ntfsd.plist | |
| sudo rm /Library/LaunchAgents/com.paragon-software.ntfs.notification-agent.plist | |
| sudo rm -rf /Library/Filesystems/ufsd_NTFS.fs/ | |
| sudo rm -rf /Library/PrivilegedHelperTools/com.paragon-software.installer | |
| sudo rm -rf /Library/Extensions/ufsd_NTFS.kext/ |
| # -*- coding: utf-8 -*- | |
| from __future__ import print_function | |
| import sys | |
| from collections import namedtuple | |
| try: | |
| # Python 3 | |
| from urllib.parse import urlparse, urlunparse, urljoin |
| <?xml version="1.0" encoding="utf-8"?> | |
| <!-- edited with XMLSPY v2004 rel. 2 U (http://www.xmlspy.com) by Ed Beach (Firaxis Games) --> | |
| <GameData> | |
| <EnglishText> | |
| <!-- Resources--> | |
| <Row Tag="LOC_RESOURCE_GOLD_NAME"> | |
| <Text>Gold</Text> | |
| </Row> | |
| <Row Tag="LOC_PEDIA_RESOURCES_PAGE_RESOURCE_GOLD_CHAPTER_HISTORY_PARA_1"> | |
| <Text>Gold is a soft, shiny and malleable metal, and it has been prized by men and women throughout history. It is a rare metal, and its rarity greatly adds to its value. Although it has some industrial and medicinal purposes, gold is used primarily as coinage or for decorative purposes, adorning jewelry, cups, utensils and the commodes of the super-rich and powerful. </Text> |
| #Region ;**** Directives created by AutoIt3Wrapper_GUI **** | |
| #AutoIt3Wrapper_UseX64=y | |
| #AutoIt3Wrapper_Change2CUI=y | |
| #AutoIt3Wrapper_Res_SaveSource=y | |
| #AutoIt3Wrapper_Res_Language=1033 | |
| #AutoIt3Wrapper_Res_requestedExecutionLevel=highestAvailable | |
| #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** | |
| #cs ---------------------------------------------------------------------------- | |
| AutoIt Version: 3.3.15.0 (Beta) |
1) Get $35 / $25 / $20 / $10 free DigitalOcean Credit.
2) Get DigitalOcean 1 Year Free Trial.
3) Get $100 Credit For 60 Days. $100 Free Credits
| #!/bin/sh | |
| EXPECTED_CHECKSUM="$(php -r 'copy("https://composer.github.io/installer.sig", "php://stdout");')" | |
| php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" | |
| ACTUAL_CHECKSUM="$(php -r "echo hash_file('sha384', 'composer-setup.php');")" | |
| if [ "$EXPECTED_CHECKSUM" != "$ACTUAL_CHECKSUM" ] | |
| then | |
| >&2 echo 'ERROR: Invalid installer checksum' | |
| rm composer-setup.php |
| #!/bin/bash | |
| # How to use | |
| # 1. Replace the "YOURIP" to yourIP | |
| #sed -i -e 's/YOURIP/192.168.x.x/g' setup-taiga-centos.sh | |
| # 2. Run at the root | |
| #source setup-taiga-centos.sh |