Skip to content

Instantly share code, notes, and snippets.

View tomboolean's full-sized avatar

Atom Boolean tomboolean

  • Decision Tree AI
  • Arizona
View GitHub Profile
@tomboolean
tomboolean / get_django_secret_key.py
Created November 30, 2020 21:47
Generate a Django Secret Key
from django.core.management import utils
print(utils.get_random_secret_key())
<template>
<v-list-item class="px-2" v-for="patient in recentPatients" :key="patient.patient_id" link>
<nuxt-link :to="`/patients/${patient.patient_guid}`" style="display: inline-flex; text-decoration: none; color: inherit;">
<v-list-item-avatar :color="(compact ? 'white' :undefined)" class="text-center">
<span v-show="compact" class="secondary--text h6">{{_.get(patient, 'avatarText')}}</span>
<v-icon v-show="!compact" class="white--text" >
{{ regularIcons.recentPatients.icon }}
</v-icon>
</v-list-item-avatar>
@tomboolean
tomboolean / postgres_setup.sh
Created August 18, 2019 10:39
postgres_setup
psql postgres
postgres=#CREATE USER fitvestment WITH PASSWORD 'password';
postgres=# CREATE DATABASE fitvestment WITH OWNER fitvestment;
CREATE DATABASE
postgres=# DROP DATABASE fitvestment;
DROP DATABASE
@tomboolean
tomboolean / martin_zwilling.md
Last active August 29, 2015 14:16
Martin Zwilling talk at PHXStartupWeek 2015
  1. bootstrapping
  2. friends, family & fools
  3. Small business grants
  4. crowdfunding
  5. angel investors
  6. venture capital
  7. incubator/accelerator
  8. strategic partner
  9. bartering for services
  10. loans and line-of-credit
@tomboolean
tomboolean / kirk_morales
Created February 27, 2015 04:21
Kirk Morales talk at PHXStartupWeek
application/server monitoring
usage metrics
- how many users, who they are
engagement metrics
- how users are interacting with you
web metrics
- visitors, pageviews
only collect data if it tells you an answer to question
@tomboolean
tomboolean / joanne_flynn
Created February 27, 2015 04:20
Joanne Flynn talk at PHXStartupWeek 2015
Human capital:
1 - growth strategy
- losing track of your north star
2 - human capital potential and organizational alignment
- waiting too long and investing too lile
3 - marketing
Value proposition
- the best strategy can fail at implementation without a human capital strategy supporting it
@tomboolean
tomboolean / david_cogan
Created February 27, 2015 04:18
David Cogan talk at PHXStartupWeek 2015
How to Start on a Shoe String:
Superhero qualities:
get the job done
best at what they do
extremely focused
not to be perfect but ocused on perfection
see things different
- good vs evil
@tomboolean
tomboolean / ammon_curtis
Created February 27, 2015 04:17
Ammon Curtis talk at PHXStartupWeek 2015
balance growth between customers and partners
intentionally design and invest in your partner experience
empower your partners to inject value in the ecosystem
makes it much more scalable
drive customers to use partner offerings
apiry
@tomboolean
tomboolean / adam_kress
Last active August 29, 2015 14:16
Adam Kress talk at PHXStartupWeek 2015
Tips for working with the Media
yours is one of many others
don’t obsess over your press release
be prepared - your execs have to be available immediately to talk
what do reporters really want?
- journalists want conflict and trends in your industry
- the bold get covered, the meek don’t
Scratch my back and I’ll scratch yours
- be a trusted resource to reporters
@tomboolean
tomboolean / gist:2251624019b5d99d21d4
Created September 13, 2014 01:57
big svg circle
<svg height="1200" width="1200">
<circle cx="550" cy="550" r="500" stroke="black" stroke-width="6" fill="none"/>
</svg>