This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1><a href="https://yournextdomain.com">YourNextDomain.com</a></h1> | |
<table border="1" class="dataframe"> | |
<thead> | |
<tr style="text-align: right;"> | |
<th>Domain</th> | |
<th>Price</th> | |
<th>Estimate</th> | |
<th>Bids</th> | |
<th>Age</th> | |
<th>Expires In</th> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Quick and dirty script to get sense of Go versions for Cosmos chains. | |
# Must be run at root of chain registry: git clone https://github.com/cosmos/chain-registry.git | |
REPOS=$(cat $(find . -name "chain.json") | jq '.codebase.git_repo') | |
results="" | |
for repo in $REPOS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// A common effect when you press a hamburger button. | |
public class SlideRevealTransitioner: NSObject { | |
private let percentage: CGFloat | |
public init(percentage: CGFloat) { | |
self.percentage = percentage | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef id (^FnMapHandler)(id element, NSInteger index); | |
@interface NSArray (Functional) | |
- (NSArray *)fn_mapAndCompact:(FnMapHandler)mapHandler; | |
@end | |
@implementation NSArray (Functional) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static void LogNSNotifications(CFNotificationCenterRef center, | |
void *observer, | |
CFStringRef name, | |
const void *object, | |
CFDictionaryRef userInfo); | |
void LogNSNotifications(CFNotificationCenterRef center, | |
void *observer, | |
CFStringRef name, | |
const void *object, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
My name is {{.Name}} and I'm {{.Age}} years old!! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Obfuscator = function (selector) { | |
var $el = $(selector); | |
var prefix = "mailto:"; | |
var name = "test"; | |
var domain = "@example.com"; | |
var href = prefix + name + domain + href; | |
$el.on("click", function () { | |
$el.attr("href", href); | |
setTimeout(function () { |