- Put app in maintenance mode on Heroku
- Download backup of database in mLab
- Copy database to DO Droplet
scp backup.tgz [email protected]:~/
- SSH into droplet and unzip the file
tar zxvf backup.tgz
- Inside the unzipped directory, rename the database directory to
parties/
mv backup/database-name/ backup/parties
- Install Mono
- Also available through Homebrew
brew install mono
- Install Visual Studio Code
- Also available through Homebrew Cask
brew cask install visual-studio-code
- Install
code
command in terminal following these instructions
Control | Prefix | Example |
---|---|---|
Label | lbl | lblSurname |
TextBox | txt | txtSurname |
DataGrid | dg | dgResults |
GridView | gv | gvResults2 |
Button | btn | btnSave |
ImageButton | iBtn | iBtnSave |
Hyperlink | lnk | lnkHomePage |
DropDownList | ddl | ddlCompany |
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
//Intermediate Midterm | |
//Please fork this gist. Complete it, and remember to save often! | |
// 1. How do you make comments and why do you make them? | |
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
// Turn back now. You are not supposed to see this. |
Welcome to my awesome blog. I'm a student at Austin Coding Academy learning how to use APIs with AJAX requests. Check out my other posts!
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
#!/bin/bash | |
# https://cymplecy.wordpress.com/2014/02/09/auto-install-x11vnc/ | |
# To install, run LX Terminal and copy and paste the following code: | |
# wget http://goo.gl/MbfUEp -O isx11.sh | |
# and then press enter to download the installer | |
# Once it has finished downloading, type the following and follow the instructions: | |
# sudo bash isx11.sh | |
# A very crude script to setup X11VNC inspired by MrEngmans Realtek RTL8188CUS script and based upon my autosimplesamba |
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
<?xml version="1.0" encoding="utf-8" ?> | |
<!-- SQL XML created by WWW SQL Designer, https://github.com/ondras/wwwsqldesigner/ --> | |
<!-- Active URL: http://ondras.zarovi.cz/sql/demo/ --> | |
<sql> | |
<datatypes db="mysql"> | |
<group label="Numeric" color="rgb(238,238,170)"> | |
<type label="Integer" length="0" sql="INTEGER" quote=""/> | |
<type label="TINYINT" length="0" sql="TINYINT" quote=""/> | |
<type label="SMALLINT" length="0" sql="SMALLINT" quote=""/> | |
<type label="MEDIUMINT" length="0" sql="MEDIUMINT" quote=""/> |