How to uninstall XAMPP on Mac OS X?
sudo apachectl -k stop
| # ************************************************************ | |
| # Sequel Ace SQL dump | |
| # Version 20062 | |
| # | |
| # https://sequel-ace.com/ | |
| # https://github.com/Sequel-Ace/Sequel-Ace | |
| # | |
| # Host: 127.0.0.1 (MySQL 8.0.36) | |
| # Database: stackoverflow | |
| # Generation Time: 2024-06-09 20:58:56 +0000 |
| #!/bin/bash | |
| if [ "$EUID" -ne 0 ] | |
| then echo "Please run as root" | |
| exit | |
| fi | |
| apt-get install pkg-config libmagickwand-dev -y | |
| cd /tmp | |
| wget https://pecl.php.net/get/imagick-3.4.3.tgz | |
| tar xvzf imagick-3.4.3.tgz |
How to uninstall XAMPP on Mac OS X?
sudo apachectl -k stop
| Blender is the Laravel template that is used for all of Murze's projects | |
| Blender | |
| https://github.com/spatie/blender |
| <?php namespace App | |
| abstract class StripeToken | |
| { | |
| const BYPASS_PENDING_TOKEN = 'tok_bypassPending'; | |
| const BYPASS_PENDING_CC = '4000000000000077'; | |
| const BYPASS_PENDING_LAST4 = '0077'; | |
| const BYPASS_PENDING_DESC = 'Charge succeeds and funds will be added directly to your available balance (bypassing your pending balance).'; | |
| const DOMESTIC_PRICING_TOKEN = 'tok_domesticPricing'; |
| sudo chown -R $USER:$GROUP ~/.npm | |
| npm cache clean |
| sudo chown -R `whoami`:admin /usr/local/bin | |
| sudo chown -R `whoami`:admin /usr/local/share | |
| sudo chown -R `whoami`:admin /usr/local/lib |
| #!/bin/bash | |
| if [ "$EUID" -ne 0 ] | |
| then echo "Please run as root" | |
| exit | |
| fi | |
| git clone https://github.com/mkoppanen/imagick.git /tmp/imagick | |
| cd /tmp/imagick |
| <?php | |
| namespace App\Console\Commands; | |
| use Illuminate\Console\Command; | |
| class Clear extends Command | |
| { | |
| /** | |
| * The name and signature of the console command. |
| // DAZ Studio version 4.7.0.12 filetype DAZ Script | |
| function propsAndMethods(obj) { | |
| var classInfo = obj.name + " (" + obj.className() + ")"; | |
| var seperator = ""; | |
| for (var i = 0; i < classInfo.length; i++){ | |
| seperator += '_'; | |
| } | |
| print(seperator); | |
| print(classInfo); |