Running SQL files against the database
psql -f thefile.sql targetdatabase
Magic words:
PREREQUISITES | |
This assumes that you have already experimented with creating instances under EC2 and know | |
how to use ssh keys to access an instance. If not, try experimenting with that first and | |
setup some keys. | |
This also assume that you have a Security Group with Port 80 available. If not, experiment | |
with creating one of those as well. | |
CREATE A NEW INSTANCE |
<!-- Setup the trigger --> | |
<button style="background: #59A7BE; color: white; border: white;" class="button modal-button" data-target="modal-id" @click="launchProfileModal()">View Profile</button> | |
<!-- Setup the modal --> | |
<div id="modal-id" class="modal modal-fx-fadeInScale" v-bind:class="{'is-active': paymentsModalIsActive }"> | |
<div class="modal-background"> </div> | |
<div class="modal-content" style="width: 80%;"> | |
<div class="box"> | |
<div class="content has-text-centered"> | |
<template> | |
<div class="container"> | |
<div class="columns" style="margin-top: 40px;"> | |
<div class="column is-12"> | |
<div class="tabs is-toggle"> | |
<ul> | |
<li :class="[ setting === 'account' ? 'is-active' : '']"> | |
<a @click="setting='account'"> | |
<span class="icon is-small"><i class="fas fa-user" aria-hidden="true"></i></span> | |
My Profile |
A complete gdb to lldb command map.
(lldb) po responseObject
(lldb) po [responseObject objectForKey@"state"]
import Foundation | |
protocol ServiceLocator { | |
func getService<T>(type: T.Type) -> T? | |
func getService<T>() -> T? | |
} | |
extension ServiceLocator { |
# Require any necessary gems | |
require 'active_record' | |
require 'pry' | |
require 'sqlite3' | |
ActiveRecord::Base.establish_connection( | |
adapter: 'sqlite3', | |
database: ':memory:' | |
) |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |