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 9FE8 C81D BB6E 5E39 B9FA 4946 4773 B0EE 63C9 B96A
To claim this, I am signing this object:
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> |
<?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"/> |
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) |
#bs-example-navbar-collapse-1 > ul.nav.navbar-nav.donation { | |
display: none; | |
} |
I hereby claim:
To claim this, I am signing this object:
lovinmalta.com | |
www.lovinmalta.com |
using System.Security.Cryptography; | |
namespace cdemi | |
{ | |
public static class NicknameGenerator | |
{ | |
public static string GetRandomNickname(bool includePrefix = false, int? maxLength = null, string delimeter = "") | |
{ | |
string nickname; |