#Welcome!
#Welcome!
#Welcome!
If you're not attending my SharePoint Web Developer class, you might not know what to do with all of this :)
This file contains 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
if ($_SERVER['REMOTE_ADDR']=='127.0.0.1') { | |
define('WP_ENV', 'local'); | |
} elseif ($_SERVER['HTTP_HOST']=='develop.project.com') { | |
define('WP_ENV', 'develop'); | |
} elseif ($_SERVER['HTTP_HOST']=='master.project.com') { | |
define('WP_ENV', 'develop'); | |
} else { | |
define('WP_ENV', 'production'); | |
} |
This file contains 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
<div class="project open selected" projectid="d662a2f0-88b6-7464-fc02-2b35585934c5"> | |
<div class="highlight"></div> | |
<div class="name "> | |
<a class="bullet" href="/#/d662a2f0-88b6-7464-fc02-2b35585934c5">•</a> | |
<div class="content" contenteditable="">SOP 1</div> | |
<span class="parentArrow"></span> | |
</div> | |
<div class="notes "> | |
<div class="content" contenteditable=""></div> | |
</div> |
This file contains 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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
A Pen by Popo Win Tin on CodePen.