Update your settings.json with the code below, then restart vscode:
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.
###Array ####Definition:
server { | |
listen 80; | |
# Server name being used (exact name, wildcards or regular expression) | |
server_name dev.scrum-master.com; | |
client_max_body_size 20M; | |
# Document root, make sure this points to your Symfony2 /web directory | |
root /var/www/scrum-master/path/web; |
{ | |
"name" : "freelance/new-client", | |
"description" : "New client base website", | |
"authors" : [ | |
{ | |
"name" : "Jesse Reese", | |
"email" : "jesse.c.reese@gmail.com", | |
"homepage": "http://www.jessereese.com/" | |
} | |
], |
rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
rpm -Uvh http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm
Use $this to refer to the current object. Use self to refer to the current class. In other words, use $this->member for non-static members, use self::$member for static members.
Source: When to use self vs this -stackoverflow
A list of amazingly awesome PHP libraries, resources and shiny things.