Skip to content

Instantly share code, notes, and snippets.

View czerspalace's full-sized avatar

czerspalace

  • Los Angeles, CA
View GitHub Profile
{
"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": "",
@czerspalace
czerspalace / wordpress-install.ps1
Created December 5, 2018 18:46 — forked from TechnologistAU/wordpress-install.ps1
WordPress Installation Script for Windows Server 2016 and Windows 10 (PowerShell)
<#
================================================================================
===== WordPress Installation Script for Windows Server 2016 and Windows 10 =====
================================================================================
#>
"`r`nWordPress Installation Script for Windows Server 2016 and Windows 10"
"===================================================================="
cd ~\Downloads
@czerspalace
czerspalace / InstallWpCli.ps1
Last active September 28, 2023 05:22
Use Powershell to install wp-cli
$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