Skip to content

Instantly share code, notes, and snippets.

@toraritte
toraritte / identical_nodes.gv
Last active September 14, 2021 01:36
Annotated GraphViz code for https://medium.com/p/d6c4c234c4ee
digraph sameaddress {
///////////////////////////////////////
// Global setup
///////////////////////////////////////
node [shape=record];
rankdir=LR;
//ranksep=1;
nodesep=0.5;
@toraritte
toraritte / timeline.cypher
Last active September 6, 2017 18:52
testing timelines linked lists instead of timestamps
// based on the book, this is somewhat better but without MERGEs,
// you'll end up with one extra relationship per new timeline.
create
(kilgore:Person {name: "Kilgore"}),
(e1:Event {event: "Become CORE student"}),
(e2:Event {event: "Called SFTB"}),
(e3:Event {event: "Donate $2"}),
(timeline:Timeline {name: "Kilgore's timeline"}),
(sept:Month {name: "September"}),(oct:Month {name: "October"}),
(d9:Day {name: '9th'}),(d3:Day {name: '3rd'}),
@toraritte
toraritte / event_edge.cypher
Last active September 7, 2017 22:56
proof of concept using events as edges with properties
create
(:Timeline)-[:YEAR]->(y:Year {value: 2017})-[:MONTH]->(m9:Month {value: "9"})-[:DAY]->(:Day {value: "12"})-[:EVENT {description: "Called"}]->(sftb:Org {name: "SFTB"}),
(m9)-[:DAY]->(:Day {value: "19"})-[:EVENT {description: "Intake"}]->(:Education {name: "vmi"})-[:ORG]->(sftb),
(y)-[:MONTH]->(m10:Month {value: "10"})-[:DAY]->(:Day {value: "12"})-[:EVENT {description: "Started learning stuff"}]->(sftb),
(m10)-[:DAY]->(:Day {value: "19"})-[:EVENT {description: "donated $2"}]->(sftb);
match (:Timeline)-[]->(year),p=(year)-[*2]->()-[r:EVENT]->()
with p as event_paths, r as events
return nodes(event_paths), events;
@toraritte
toraritte / vc_transition.swift
Created December 20, 2017 15:28
Experiment to track view controller transitions
class LoginViewController: UIViewController {
// (...)
override func viewWillAppear(_ animated: Bool) {
print("""
... \(self)
... PRESENTED BY
... \(self.presentingViewController?.description ?? "none")

FirebaseUI's basic authentication workflow

(Learning Objective-C by going through the FirebaseUI codebase)

Continuing from the instantiation of FUIEmailEntryViewController: how does FirebaseUI know that a user already exists? For example, entering an email address and hitting "Next" either yields a new page asking for a password or a sign up form for new user.

i. My LoginViewController

func concatChunks() {
let composition = AVMutableComposition()
// let compositionTrack =
// composition.addMutableTrack(
// withMediaType: .audio,
// preferredTrackID: kCMPersistentTrackID_Invalid)
var insertAt = CMTimeRange(start: kCMTimeZero, end: kCMTimeZero)
@toraritte
toraritte / set_up_in_terminal
Last active June 27, 2018 04:41
Set up basic Phoenix app for testing IEx.pry
$ mix phx.new puffin
$ cd puffin
$ mix phx.gen.html Accounts User users name:string username:string:unique
$ sed -i '/ get/i \ resources "/users", UserController' lib/puffin_web/router.ex
$ mix ecto.create
$ mix ecto.migrate
@toraritte
toraritte / setup.sh
Created June 27, 2018 04:42
Set up basic Phoenix app for testing IEx.pry via shell script
#!/bin/sh
mix phx.new puffin
cd puffin
mix phx.gen.html Accounts User users name:string username:string:unique
sed -i '/ get/i \ resources "/users", UserController' lib/puffin_web/router.ex
mix ecto.create
mix ecto.migrate
@toraritte
toraritte / user_controller.ex
Last active June 27, 2018 05:01
Add IEx.pry to the `create` function in `user_controller.ex`
def create(conn, %{"user" => user_params}) do
# + + + + + + + + + + + +
require IEx; IEx.pry # <-
# + + + + + + + + + + + +
case Accounts.create_user(user_params) do
{:ok, user} ->
conn
|> put_flash(:info, "User created successfully.")
|> redirect(to: user_path(conn, :show, user))
{:error, %Ecto.Changeset{} = changeset} ->
@toraritte
toraritte / flash-pry.ex
Created June 27, 2018 05:27
Check flash messages in conn
def create(conn, %{"user" => user_params}) do
case Accounts.create_user(user_params) do
{:ok, user} ->
conn
|> put_flash(:info, "User created successfully.")
# + + + + + + + + + + + + + + + + + + + + + + + + + +
|> (fn (conn) -> require IEx; IEx.pry; conn end).()
# + + + + + + + + + + + + + + + + + + + + + + + + + +
|> redirect(to: user_path(conn, :show, user))
{:error, %Ecto.Changeset{} = changeset} ->