Skip to content

Instantly share code, notes, and snippets.

1. Can you share your journey from leading Naughty Dog to joining the PTO as the CTO, and now moving on from that role?
2. How has your video game industry experience influenced your approach to sports broadcast technology during your time at the PTO?
3. What were some of the key technological innovations you worked on integrating into PTO broadcast platforms?
4. How did you leverage data and analytics to enhance the viewing experience for triathlon fans during your tenure?
5. In what ways do you think storytelling in sports broadcasting can learn from narrative-driven video games, based on your experience in both industries?
6. What challenges did you face in implementing new technologies at the PTO?
7. How do you think the technological advancements you worked on at the PTO will impact the way athletes and their performances are showcased in the future?
8. Can you discuss any specific tools or platforms that you believe will be central to the future of triathlon broadcasts?
9. How do you envision the fan ex
# Define your credentials - use secure methods like PSCredential objects or Azure automation runbook credential assets - don't be f**king lazy!
$user = "yourusername@domain.com"
$pass = ConvertTo-SecureString -String "yourpassword" -AsPlainText -Force
$cred = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $user, $pass
# Connect to Exchange Online
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $cred -Authentication Basic -AllowRedirection
Import-PSSession $Session
# Fetch all mailboxes
@pureflo
pureflo / Disqus-short
Created April 10, 2020 03:44
Disqus comments for Wordpress widget - short version. Just create a new widget a custom HTML and paste the below in.
<div id="recentcomments" class="dsq-widget">
<script type="text/javascript" src="https://shortnamehere.disqus.com/recent_comments_widget.js?num_items=3&hide_avatars=1"></script>
@pureflo
pureflo / Disqus-long
Created April 10, 2020 03:40
Disqus comments for Wordpress widget - long version. Just create a new widget a custom HTML and paste the below in.
<div id="recentcomments" class="dsq-widget">
<script type="text/javascript" src="https://shortnamehere.disqus.com/recent_comments_widget.js?num_items=5&hide_avatars=0&avatar_size=32&excerpt_length=200"></script>
</div>

Keybase proof

I hereby claim:

  • I am pureflo on github.
  • I am pureflo (https://keybase.io/pureflo) on keybase.
  • I have a public key whose fingerprint is ED1E 7E6A 953A 34B2 C6C0 9E05 B244 1DD0 6D75 EA91

To claim this, I am signing this object:

@pureflo
pureflo / gist:7383088
Created November 9, 2013 08:25
Quick change of files and directories to the correct permissions for Wordpress
find /dir/to/your/wordpress/ -type d -exec chmod 755 {} \;
find /dir/to/your/wordpress/ -type f -exec chmod 644 {} \;
sudo chmod 775 -R /dir/to/your/wordpress/uploads/
@pureflo
pureflo / gist:1862297
Created February 19, 2012 06:51 — forked from andizzle/gist:1798071
WooCommerce product dimensions/weight units normaliser
<?php
/**
* For WooCommerce 1.4.2 and above
* Dimensions/weight Units Normaliser
* Author Andy Zhang
* Company: Hypnotic Zoo
* Company Url: hypnoticzoo.com
*/