I hereby claim:
- I am aspnetde on github.
- I am asp_net (https://keybase.io/asp_net) on keybase.
- I have a public key whose fingerprint is 5E95 3A7E B10F E125 FC26 26CC 9F48 9E63 D6AD FAFB
To claim this, I am signing this object:
#!/bin/bash | |
set -ex | |
# Originally from https://gist.github.com/jedi4ever/b1f8b27d4a803d487fa4 | |
# This scripts allows you to upload a binary to the iTunes Connect Store and do it for a specific app_id | |
# Because when you have multiple apps in status for download, xcodebuild upload will complain that multiple apps are in wait status | |
# Requires application loader to be installed | |
# See https://developer.apple.com/library/ios/documentation/LanguagesUtilities/Conceptual/iTunesConnect_Guide/Chapters/SubmittingTheApp.html |
I hereby claim:
To claim this, I am signing this object:
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using MonoTouch.MessageUI; | |
using MonoTouch.UIKit; | |
namespace MyApp | |
{ | |
public interface ICanCleanUpMyself | |
{ |
var bcrypt = require("bcrypt"); | |
var clearPassword = "test"; | |
bcrypt.genSalt(10, function(err, salt) { | |
bcrypt.hash(clearPassword, salt, function(err, hash) { | |
bcrypt.compare(clearPassword, hash, function(err, res) { | |
if (res === true && !err) { | |
console.log("Hashed password: " + hash); | |
} else { |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using MonoTouch.Foundation; | |
using MonoTouch.UIKit; | |
using MonoTouch.Dialog; | |
using BigTed; | |
namespace iOS.ProgressHUD.Demo | |
{ |