I hereby claim:
- I am cdemi on github.
- I am cdemi (https://keybase.io/cdemi) on keybase.
- I have a public key whose fingerprint is 93BF 5049 AF96 1E66 0D02 8ACE C917 2FCF 4219 44AC
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| using System.Security.Cryptography; | |
| namespace cdemi | |
| { | |
| public static class NicknameGenerator | |
| { | |
| public static string GetRandomNickname(bool includePrefix = false, int? maxLength = null, string delimeter = "") | |
| { | |
| string nickname; |
| lovinmalta.com | |
| www.lovinmalta.com |
I hereby claim:
To claim this, I am signing this object:
| #bs-example-navbar-collapse-1 > ul.nav.navbar-nav.donation { | |
| display: none; | |
| } |
| private static ConcurrentDictionary<string, object> concurrentDictionary = new ConcurrentDictionary<string, object>(); | |
| public static T CacheAside<T>(this ICacheManager cacheManager, Func<T> execute, TimeSpan? expiresIn, string key) | |
| { | |
| var cached = cacheManager.Get(key); | |
| if (EqualityComparer<T>.Default.Equals(cached, default(T))) | |
| { | |
| object lockOn = concurrentDictionary.GetOrAdd(key, new object()); | |
| lock (lockOn) |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <opml version="1.0"> | |
| <head> | |
| <title>Christopher subscriptions in feedly Cloud</title> | |
| </head> | |
| <body> | |
| <outline text="Design" title="Design"> | |
| <outline type="rss" text="Smashing Magazine" title="Smashing Magazine" xmlUrl="http://rss1.smashingmagazine.com/feed/" htmlUrl="http://www.smashingmagazine.com"/> | |
| <outline type="rss" text="A List Apart: The Full Feed" title="A List Apart: The Full Feed" xmlUrl="http://www.alistapart.com/rss.xml" htmlUrl="http://alistapart.com"/> |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq.Expressions; | |
| using System.Reflection; | |
| namespace System.Data | |
| { | |
| /// <summary> | |
| /// IDataReader that can be used for "reading" an IEnumerable<T> collection | |
| /// </summary> |