Skip to content

Instantly share code, notes, and snippets.

View ginatrapani's full-sized avatar
🏳️‍🌈
a work in progress

Gina Trapani ginatrapani

🏳️‍🌈
a work in progress
View GitHub Profile
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'DESCRIPTION: This script will clean up any files that have a last modified
' date greater than or equal to the number specified.
'CREATED BY: Brian Plexico - microISV.com
'MODIFIED BY: Gina Trapani (ginatrapani@gmail.com)
'CREATE DATE: 07/19/2005
'UPDATED: 08/10/2007
'
'INSTRUCTIONS: 1. Enter the path to the directory you'd like to clean on line 28.
' Make sure to only change the text that currently reads:

On Wealth

Mike Karnjanaprakorn @mikekarnj

Twitter Thread

Over time, I've changed my views on wealth. When I was in my early 20s, I wrote it off as something I would figure out later. When I started a company at 27, I figured that my stock as founder would be good enough. I was wrong in both. Here's what I've learned…

@ginatrapani
ginatrapani / sizing.md
Created July 27, 2016 15:50 — forked from mutewinter/sizing.md
T-Shirt sizes we use for estimation at Postlight

Table

Size What it means
▁ S 💅 I can get this done in one session at the computer with no breaks
▃ M ☕ This will require breaks, less than a day
▅ L 💦 This will require more than one day
▇ XL 😱 Rare! This will require a week or more. Try breaking into multiple smaller issues
@ginatrapani
ginatrapani / todo.txt final filter
Created January 19, 2011 17:31
Specially colorizes priority, date and project.
#!/bin/bash
COLOR_CONTEXT=$GREEN
COLOR_PROJECT=$RED
COLOR_DATE=$LIGHT_GREEN
# Force gawk to behave posixly. Comment out if you get an error about
# no such option -W.
# AWK_OPTIONS="-W posix"
if [ "$TODOTXT_PLAIN" -eq "0" ]; then
awk $AWK_OPTIONS "
{ color = \"$DEFAULT\" }
layout title description tags
default
SQL Style Guide
A guide to writing clean, clear, and consistent SQL.
data
process

Purpose

@ginatrapani
ginatrapani / README.md
Created November 3, 2017 16:13 — forked from jaymollica/README.md
Emojis to Words

Emojis to Words

  1. json encode an emoji to get its surrogate pair
$surrogate_pair = json_encode(🌊);
print $surrogate_pair; //"\ud83c\udf0a"
  1. The surrogate pair is the key in the array, check if the key exists and send back the associated keyword. The $emojis_to_words variable is an array you need to include in your project.
@ginatrapani
ginatrapani / README.md
Created November 3, 2017 16:13 — forked from jaymollica/README.md
Emojis to Words

Emojis to Words

  1. json encode an emoji to get its surrogate pair
$surrogate_pair = json_encode(🌊);
print $surrogate_pair; //"\ud83c\udf0a"
  1. The surrogate pair is the key in the array, check if the key exists and send back the associated keyword. The $emojis_to_words variable is an array you need to include in your project.
@ginatrapani
ginatrapani / gist:11303222
Last active May 25, 2016 17:35
New insight issue template

One-liner

Describe what this insight is in a single sentence. This is the description that appears in ThinkUp's insights list, so phrase it like the others are. Current insights single sentences are:

  • Post activity spikes for the past 7, 30, and 365 days.
  • How often you referred to yourself ("I", "me", "myself", "my") in the past week.
  • How many more users a message has reached due to your reshare or retweet.

Full explainer

I'm writing in response to events that have recently come to light involving a sexual assault at a tech conference. Background information can be found [here][1], [here][2], and [here][3] as well as on twitter and google.


I've been watching this from the sidelines, and I've been wrestling with several questions that I can't seem to shake and that I really don't have answers to.

I wear many hats, both in the tech community and others. I'm a coder, a speaker, a user group organizer, a conference organizer, and even a boss. Each of those roles colors how I see this, but there's one role that is overpowering in my reaction.

See, I'm a Dad. A dad of two beautiful and innocent girls who are 3 and 2. They have their whole lives in front of them and so the questions I'm struggling with are:

language: php
php:
- 5.3
- 5.4
before_script:
- sudo apt-get install apache2
- sudo a2enmod actions
- sudo a2enmod rewrite