start new:
tmux
start new with session name:
tmux new -s myname
| { | |
| "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", | |
| "contentVersion": "1.0.0.0", | |
| "parameters": { | |
| "location": { | |
| "type": "string" | |
| }, | |
| "vmName": { | |
| "type": "string" | |
| }, |
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDD9bhidIvVZsE/BCGXSKaTfBAm/+oQiFC5pMRvpymD0hpt5M6pH4olj9qtWUaLvO+PkCAwFEPkHJzyirddwJKdDcv7O9tVHIlGbb+UJCOPpiWHrHtwz37+Y4+2hjoBao+3sHVx0lIV+vWJ0FVg2c0ig15lmA8p0cYCT9e6Pz1wWBWw9AzoPPMT345OodrPizSSgKNProxSRgS+a0Eq06n0f61jqYqRlVe8VJsL15pdpzC4oxp32AKBBPBIZ2gdF7UaoLVA9rFnadP6miSKCXZstNV71HhT4zi4qzJRV5ysIz2/YzHSY7ZeU6hxU1bDdWgitHnVvyYd8vTKMqA+Hh5v [email protected] |
| Install Postgresql for Windows (the actual .exe not Linux Bash) | |
| Create User & Password for Postgresql (I use postgres & password for my local development) | |
| Install `postgresql-client-common`, `postgresql-client`, `and libpq-dev` (In Bash) | |
| Run a sanity check in Bash to verify that things are working `psql -p 5432 -h localhost -U postgres` | |
| If you get a psql prompt you're good to go, now you can do what you need to do (my particular situation was to get Rails running) | |
| If you have errors well then you may just need to peck away at things and double check that your Postgres server is running in Windows |
| s_CurAffineTransform = [frame displayTransformForOrientation:[[UIApplication sharedApplication] statusBarOrientation] viewportSize:nativeSize]; |
| // Skip smudge - We'll download binary files later in a faster batch | |
| git lfs install --skip-smudge | |
| // Do git clone here | |
| git clone ... | |
| // Fetch all the binary files in the new clone | |
| git lfs pull | |
| // Reinstate smudge |
| using System; | |
| using UnityEngine; | |
| using System.Collections; | |
| public class AssetBundleSample : MonoBehaviour { | |
| public GUIText guitext; | |
| // Use this for initialization | |
| void Start () { |
This blog post has helped me clean up my postgres development environment on Mac. So making a copy!
How completely uninstall PostgreSQL 9.X on Mac OSX
This article is referenced from stackoverflow:
If installed PostgreSQL with homebrew , enter brew uninstall postgresql
If you used the EnterpriseDB installer , follow the following step.
crontab -e to open the crontab file, this is where you add a task for cron to perform.SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin* * * * * sh script.shTODO