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
| { | |
| "basics": { | |
| "label": "Senior Web Developer", | |
| "website": "http://your-website.com", | |
| "phone": "424-222-9377", | |
| "email": "[email protected]", | |
| "other": [], | |
| "name": "Cesar Rodriguez", | |
| "summary": "Full stack web developer with over 10 years’ professional experience looking for freelance work that allows me to utilize my knowledge and skills to build websites that comply with web development standards.", | |
| "picture": "", |
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
| <# | |
| ================================================================================ | |
| ===== WordPress Installation Script for Windows Server 2016 and Windows 10 ===== | |
| ================================================================================ | |
| #> | |
| "`r`nWordPress Installation Script for Windows Server 2016 and Windows 10" | |
| "====================================================================" | |
| cd ~\Downloads |
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
| $cliDir = "c:\wp-cli\" | |
| mkdir $cliDir | |
| $cliFilePath = $cliDir + "wp-cli.phar"; | |
| (New-Object System.Net.WebClient).DownloadFile("https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar", $cliFilePath) | |
| $batchFile = $cliDir + "wp.bat"; | |
| Set-Content $batchFile "@ECHO OFF","php `"c:/wp-cli/wp-cli.phar`" %*" | |
| #Need to set path here |