Skip to content

Instantly share code, notes, and snippets.

View tranqy's full-sized avatar

Aaron Junod tranqy

View GitHub Profile
@tranqy
tranqy / standalone-holding.csv
Created March 3, 2023 12:37
ZEscrow Standalone Holding Example
DDA Account Product Name Tax ID Description Formatted Tax ID Product Type Current Balance Available Balance Date Last Updated Is Holding Account Associated Master Account Associated Holding Account Account Type Branch Code
1234 Business Checking EIN 11-2222222 DDA 150019.11 150019.11 2/2/2021 1 null null Standalone Holding
@tranqy
tranqy / vgg.py
Created September 4, 2018 10:51
This script will demonstrate how to use a pretrained model, in PyTorch, to make predictions.
"""
This script will demonstrate how to use a pretrained model, in PyTorch,
to make predictions. Specifically, we will be using VGG16 with a cat
image.
References used to make this script:
PyTorch pretrained models doc:
http://pytorch.org/docs/master/torchvision/models.html
PyTorch image transforms example:
http://pytorch.org/tutorials/beginner/data_loading_tutorial.html#transforms

Keybase proof

I hereby claim:

  • I am tranqy on github.
  • I am tranqy (https://keybase.io/tranqy) on keybase.
  • I have a public key ASC5DSLA6Lm3UA-xr24QHvC-bmbv1LQ1Ziu0PuYYBSUNLwo

To claim this, I am signing this object:

This letter is intended for my representatives in the state, but copied to a number of members in my network. News links at the bottom.
I am unimaginably disappointed in our state representation for not allowing a vote on Net Neutrality. Beyond that, I am appalled that every member of our representation does not back Net Neutrality.
As along time member of the high tech community in CT I feel it’s unimaginable that our state would allow our broadband to be hijacked by telecom companies. Net Neutrality has been proven to stifle innovation, cost consumers more, and only benefit the already profitable telecom companies.
I want to understand the specifics of why our representatives feel that Net Neutrality does not benefit CT. This is not a federal issue, and if that is in the response I will discount it completely. You are CT state representatives, I live in CT, and I expect my representatives to represent me. This is a fight for all Americans at every level.
I am blind copying this to many CT residents I
Tevin 7:07 AM
When you chat with us, you grant us permission to review your services during the chat to offer you the best value. Your current services will not be affected if you refuse permission by not proceeding with chat. Frontier has the duty to protect your information. This is your right under Federal law. For quality and security purposes, your session is recorded and may be monitored or reviewed.
7:07 AM Aaron Junod
I'm unable to use my frontier login to watch any streaming services. When I log into hbo go I get an error, when I try it on comedy central it brings me to this site https://tveverywhere.clearleap.com/cltve/olca/authenticate where I login and then am presented an error and redirected to https://tveverywhere.clearleap.com/cltve/auth/oops/ Please help me use my login to watch streaming content on the providers that are included in my package.
Tevin 7:08 AM
Thank you for choosing Frontier Tech support, my name is Tevin and I will be assisting you today. I'm sorry you're having trouble wit

Keybase proof

I hereby claim:

  • I am tranqy on github.
  • I am tranqy (https://keybase.io/tranqy) on keybase.
  • I have a public key ASBkIez469i8qJ2OYutAyUz_RSleFRrVjtXEroqAkxZt8wo

To claim this, I am signing this object:

@tranqy
tranqy / track_followers.py
Created February 24, 2016 11:23 — forked from cdwfs/track_followers.py
Python script to track changes to a user's list of Twitter followers
#!/usr/bin/env python
# Usage:
# 1) Install the Python Twitter Tools (PTT) from http://mike.verdone.ca/twitter/
# (or just "easy_install twitter").
# 2) Run "twitter-follow -o blahblahblah" and follow the instructions to set up
# OAuth. This gives the twitter-follow script read-only access to your account.
# Technically, it doesn't even need to be *your* account that you authorize,
# since the script is only querying public follower information.
# 3) Modify the value of "my_handle" to the username of the Twitter user whose
### Keybase proof
I hereby claim:
* I am tranqy on github.
* I am tranqy (https://keybase.io/tranqy) on keybase.
* I have a public key whose fingerprint is 3F74 66FA 5EFE 14BF CD8A 231F 2502 F57A 91AE 1F10
To claim this, I am signing this object:
@tranqy
tranqy / gist:750886
Created December 22, 2010 00:33
Trying to run typhoonae
(typhooneenv)tranqy@typhoondev:~/projects/virtualenv/typhooneenv/typhoonae-buildout-0.2.0$ bin/supervisord
Traceback (most recent call last):
File "bin/supervisord", line 13, in <module>
supervisor.supervisord.main()
File "/home/tranqy/projects/virtualenv/typhooneenv/typhoonae-buildout-0.2.0/eggs/supervisor-3.0a8-py2.5.egg/supervisor/supervisord.py", line 371, in main
go(options)
File "/home/tranqy/projects/virtualenv/typhooneenv/typhoonae-buildout-0.2.0/eggs/supervisor-3.0a8-py2.5.egg/supervisor/supervisord.py", line 381, in go
d.main()
File "/home/tranqy/projects/virtualenv/typhooneenv/typhoonae-buildout-0.2.0/eggs/supervisor-3.0a8-py2.5.egg/supervisor/supervisord.py", line 94, in main
self.run()
- (void) flipFromView:(UIViewController*)fromView toView:(UIViewController*)toView inDirection:(UIViewAnimationTransition)direction {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1];
[UIView setAnimationTransition:direction forView:[fromView view] cache:YES];
[toView viewWillAppear:YES];
[fromView viewWillDisappear:YES];
[[fromView view] removeFromSuperview];
[window addSubview:[toView view]];