I hereby claim:
- I am aaronhoffman on github.
- I am aaronhoffman (https://keybase.io/aaronhoffman) on keybase.
- I have a public key whose fingerprint is CA49 A892 C3FF 3F8B 95B4 8309 B693 4228 86D5 7E4F
To claim this, I am signing this object:
| ticker | min_date | max_date | |
|---|---|---|---|
| A | 1999-11-18 | 2017-11-06 | |
| AA | 2016-11-01 | 2017-11-06 | |
| AAL | 2005-09-27 | 2017-11-06 | |
| AAMC | 2012-12-13 | 2017-11-06 | |
| AAN | 1984-09-07 | 2017-11-06 | |
| AAOI | 2013-09-26 | 2017-11-06 | |
| AAON | 1992-12-16 | 2017-11-06 | |
| AAP | 2001-11-29 | 2017-11-06 | |
| AAPL | 1980-12-12 | 2017-11-06 |
| public static class AesKeyGenerator | |
| { | |
| public static string GenerateKey(int bitStrength) | |
| { | |
| // note: valid bit strength for aes: 128, 192, or 256 bits (16, 24, or 32 bytes) | |
| var random = new System.Security.Cryptography.RNGCryptoServiceProvider(); | |
| var keyArray = new byte[bitStrength / 8]; | |
| random.GetBytes(keyArray); | |
| var base64key = Convert.ToBase64String(keyArray); |
| public class MyAuthenticationMiddleware : AuthenticationMiddleware<MyAuthenticationOptions> | |
| { | |
| public MyAuthenticationMiddleware( | |
| IMyService myService, // inject service here?? (via Startup.ConfigureServices(), services.AddTransient() ) | |
| RequestDelegate next, | |
| IOptions<MyAuthenticationOptions> options, | |
| ILoggerFactory loggerFactory, | |
| UrlEncoder encoder) | |
| : base(next, options, loggerFactory, encoder) | |
| { |
| #!/bin/sh | |
| # prevent commit to local master branch | |
| branch=`git symbolic-ref HEAD` | |
| if [ "$branch" = "refs/heads/master" ]; then | |
| echo "pre-commit hook: Can not commit to the local master branch." | |
| exit 1 | |
| fi | |
| exit 0 |
| git config --global diff.tool bc | |
| git config --global difftool.bc.path "C:\Program Files\Beyond Compare 4\BComp.exe" | |
| git config --global merge.tool bc | |
| git config --global mergetool.bc.path "C:\Program Files\Beyond Compare 4\BComp.exe" | |
| git config --global alias.mydiff "difftool --dir-diff --tool=bc --no-prompt" |
| -- more info http://aaron-hoffman.blogspot.com/2017/02/iphone-text-message-sqlite-sql-query.html | |
| select | |
| m.rowid | |
| ,coalesce(m.cache_roomnames, h.id) ThreadId | |
| ,m.is_from_me IsFromMe | |
| ,case when m.is_from_me = 1 then m.account | |
| else h.id end as FromPhoneNumber | |
| ,case when m.is_from_me = 0 then m.account | |
| else coalesce(h2.id, h.id) end as ToPhoneNumber | |
| ,m.service Service |
I hereby claim:
To claim this, I am signing this object:
| public class KuduWebJobService | |
| { | |
| private string KuduUserName { get; set; } | |
| private string KuduPassword { get; set; } | |
| private string AzureWebsiteName { get; set; } | |
| public KuduWebJobService() | |
| { | |
| this.KuduUserName = ""; | |
| this.KuduPassword = ""; |
| provider | emailDomain | |
|---|---|---|
| AT&T | txt.att.net | |
| Verizon | vtext.com | |
| US Cellular | email.uscc.net | |
| Sprint | messaging.sprintpcs.com | |
| T-Mobile | tmomail.net |
| CountyName | District | |
|---|---|---|
| Adair | KY1 | |
| Allen | KY1 | |
| Anderson | KY6 | |
| Ballard | KY1 | |
| Barren | KY2 | |
| Bath | KY4 | |
| Bell | KY5 | |
| Boone | KY4 | |
| Bourbon | KY6 |