Skip to content

Instantly share code, notes, and snippets.

@a7madev
a7madev / PHP-xdebug.md
Last active July 15, 2016 09:30
PHP and xdebug

PHP xdebug on OS X

PHP xdebug on Windows

XAMPP

  1. Open php.ini from XAMPP Control Panel
  2. Uncomment xdebug section
  3. Restart XAMPP Apache
  4. . Go to PHPStorm, open settings and select PHP Interpreter
  5. . Add new Interpreter, select "C:\xampp\php\php.exe" and save.
@a7madev
a7madev / circle.yml
Created September 6, 2016 11:21 — forked from donnfelker/circle.yml
Updated circle.yml file
#
# Build configuration for Circle CI
#
# See this thread for speeding up and caching directories: https://discuss.circleci.com/t/installing-android-build-tools-23-0-2/924
#
general:
artifacts:
- /home/ubuntu/AndroidCI/app/build/outputs/apk/
@a7madev
a7madev / sublime.sh
Created November 6, 2020 19:33
Launch Sublime Text 3 from the Mac OSX Terminal
#!/bin/bash
ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/sublime
@a7madev
a7madev / mysql.bash
Created November 11, 2020 16:47
Install MySQL 5.7 on macOS using Homebrew
## Installation
brew info [email protected]
brew install [email protected]
mysql_secure_installation
brew tap homebrew/services
brew services start [email protected]
brew services run [email protected]
brew services list
@a7madev
a7madev / mongodb.sh
Created November 23, 2020 17:56
Install Mongodb on Mac
# Install
brew install [email protected]
brew install mongodb-database-tools
# Run
brew start [email protected]