program | subcriterion_2_2_2 | Count | methodology | hostCountry | projectType | |
---|---|---|---|---|---|---|
0 | ACR_ERTs | 1.0 | 118 | {ACR_AfforestationReforestation_Methodology_V1.2} | {RWA, SLV, ETH, GIN, PER, TZA, BEN, IDN, MMR, THA, BGD, AGO, LBR, SOM, COM, PNG, MDG, MEX, SDN, VUT, NPL, NAM, TGO, BDI, BRA, SEN, KEN, MWI, COD, NIC, BOL, TCD, NGA, LSO, ZAF, ERI, SLE, ZWB, CMR, ... | {CAF, ENF} |
1 | ACR_ERTs | 5.0 | 462 | {ACR_AfforestationReforestation_Methodology_V1.2, ACR_Landfill_Project_Methodology_V2, ACR_IFM_non-Federal_US_Forestlands_V2} | {EGY, MMR, SYC, MHL, URY, COM, MEX, YEM, SWZ, USA, SEN, NRU, GBR, CHL, NGA, CAF, ROU, MNG, FSM, LCA, CYP, SYR, ZWE, LUX, ATG, ISR, BIH, FJI, GNB, IRQ, HTI, UGA, LIE, HRV, AUS, ALB, SGP, GIN, ETH, ... | {CAF, IFM, ENF, LFGU} |
2 | CAR_CRTs | 5.0 | 7 | {CAR_Landfill_Project_Protocol_V5, CAR_Forest_Project_Protocol_V4, CAR_Mexico_Livestock_Protocol_V2, CAR_US_Livestock_Protocol_V4, CAR_Forest_ |
This file contains 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
*Version : x.x.x (Build xxxx)* | |
*_TITLE OF THIS RELEASE_* | |
*Description:* | |
• *Section:* change | |
• ... | |
*Bug fixes:* | |
• Fixed ... |
This file contains 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
// create a chache with 60 seconds expiration time | |
var cache: InMemoryCache = InMemoryCache<LocalUrl>(expirationInSeconds: 60) | |
// data will either be returned from cache or created via callback and then returned | |
let data = cache.cachedData { | |
// do the heavy object creation here | |
return MyHeavyObject() | |
} | |
// invalidate the cache, next call will have to re-create the heavy object |
This file contains 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
import QuartzCore | |
enum BezierType { | |
case Default | |
case Linear | |
case EaseIn | |
case EaseOut | |
case EaseInOut |
This file contains 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
desc 'Build' | |
task :build do | |
run("xbuild Project.sln", "Build failed") | |
run("nunit-console Tests/bin/Debug/Project-Tests.dll", "Tests failed") | |
run("mono Tests/vendor/NSpecRunner.exe Tests/bin/Debug/Project-Tests.dll", "Specs failed") | |
end | |
task :default => :demo | |
# This is the important method |
This file contains 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
#!/bin/sh | |
# find and unmount volume (change 'BOOTCAMP' name accordingly) | |
amount=`diskutil list | grep BOOTCAMP | wc -l` | |
if [ $amount = 1 ] | |
then | |
path=`diskutil list | grep BOOTCAMP | sed -e 's/^\(.*\)\(disk0s.\)$/\/dev\/\2/g'` | |
sudo chmod 777 $path | |
diskutil unmount $path | |
fi |
This file contains 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
# http://www.mono-project.com/Compiling_Mono_on_OSX | |
require 'formula' | |
class Mono < Formula | |
url 'http://download.mono-project.com/sources/mono/mono-3.2.3.tar.bz2' | |
homepage 'http://www.mono-project.com/' | |
sha1 'e356280ae45beaac6476824d551b094cd12e03b9' | |
def install |
This file contains 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
[[[user1Dict[@"highscores"] valueForKey:@"fb_id"] should] contain:fbId_user2]; | |
[[[user2Dict[@"highscores"] valueForKey:@"fb_id"] should] contain:fbId_user1]; |
This file contains 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
#import <Foundation/Foundation.h> | |
@interface UIImageView (Mask) | |
- (void)applyMask:(NSString *)maskName; | |
@end |
This file contains 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
#import "KWHCMatcher.h" | |
#import "KWMessageTracker.h" | |
#import "Kiwi.h" | |
@interface NSNotificationMatcher : NSObject <HCMatcher> | |
{ | |
NSDictionary *_userInfo; | |
} | |
+ (id)matcherWithUserInfo:(NSDictionary *)dictionary; |
NewerOlder