How to uninstall XAMPP on Mac OS X?
sudo apachectl -k stop
<?php | |
namespace App\Console\Commands; | |
use Illuminate\Console\Command; | |
class Clear extends Command | |
{ | |
/** | |
* The name and signature of the console command. |
#!/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 |
sudo chown -R `whoami`:admin /usr/local/bin | |
sudo chown -R `whoami`:admin /usr/local/share | |
sudo chown -R `whoami`:admin /usr/local/lib |
sudo chown -R $USER:$GROUP ~/.npm | |
npm cache clean |
Blender is the Laravel template that is used for all of Murze's projects | |
Blender | |
https://github.com/spatie/blender |
How to uninstall XAMPP on Mac OS X?
sudo apachectl -k stop
#!/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 |
<?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'; |
// 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); |
# ************************************************************ | |
# 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 |