This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://wwphp-fb.github.io/article/interoperability/atom-for-php-developers/ | |
https://php-integrator.github.io/ | |
PHP Integrator Packages | |
PHP Integrator is a collection of multiple Atom packages to provide a better PHP development experience. | |
To install and successfully use PHP Integrator packages you will first need to install some prerequisites: | |
PHP | |
php-sqlite extension |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The Open Graph protocol enables any web page to become a rich object in a social graph. | |
For instance, this is used on Facebook to allow any web page to have the same functionality as any other object on Facebook. | |
While many different technologies and schemas exist and could be combined together, | |
there isn't a single technology which provides enough information to richly represent any web page within the social graph. | |
The Open Graph protocol builds on these existing technologies and gives developers one thing to implement. | |
Developer simplicity is a key goal of the Open Graph protocol which has informed many of the technical design decisions. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
### USAGE | |
### | |
### ./ElasticSearch.sh 1.7 will install Elasticsearch 1.7 | |
### ./ElasticSearch.sh will fail because no version was specified (exit code 1) | |
### | |
### CLI options Contributed by @janpieper | |
### Check http://www.elasticsearch.org/download/ for latest version of ElasticSearch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get remove --purge xorg-driver-fglrx fglrx* | |
sudo apt-get remove --purge fglrx* | |
sudo apt-get install build-essential cdbs fakeroot dh-make debhelper debconf libstdc++6 dkms libqtgui4 wget execstack libelfg0 dh-modaliases | |
sudo apt-get install --reinstall xserver-xorg-core libgl1-mesa-glx libgl1-mesa-dri | |
sudo dpkg-reconfigure xserver-xorg | |
cd ~/Downloads | |
wget --referer='http://support.amd.com/en-us/download/desktop?os=Linux+x86_64' http://www2.ati.com/drivers/linux/radeon-crimson-15.12-15.302-151217a-297685e.zip | |
wget --referer=http://support.amd.com radeon-crimson-15.12-15.302-151217a-297685e.zip | |
unzip radeon-crimson-15.12-15.302-151217a-297685e.zip | |
cd fglrx-15.302 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"always_show_minimap_viewport": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme", | |
"detect_indentation": false, | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"folder_exclude_patterns": | |
[ | |
".svn", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# https://github.com/RoverWire/virtualhost | |
# Usage | |
# - Basic command line syntax: | |
# $ sudo sh /path/to/virtualhost.sh [create | delete] [domain] [optional host_dir] | |
# - With script installed on /usr/local/bin | |
# $ sudo virtualhost [create | delete] [domain] [optional host_dir] |