std::set phoenix;
phoenix.key_comp();
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
#!/bin/sh | |
echo | |
echo "Redmine gitolite Post Receive Hook" | |
echo | |
HOOK_URL=gitolite_hook | |
FETCH_URL=sys/fetch_changesets | |
LOG=/home/git/logs/post-receive.log |
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
// clang -framework Foundation -fobjc-arc -O3 test.m | |
#import <Foundation/Foundation.h> | |
@interface Slice : NSObject | |
@property NSInteger start; | |
@property NSInteger length; | |
@end | |
@implementation Slice |
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
#!/bin/bash | |
############################################################################### | |
## ## | |
## Build and package OpenSSL static libraries for OSX/iOS ## | |
## ## | |
## This script is in the public domain. ## | |
## Creator : Laurent Etiemble ## | |
## ## | |
############################################################################### |
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
''' | |
This is a script that tries to convert Roam Daily Notes to Noteplan Calendar | |
Notes. All it does is find files in the current directory that have a name | |
matching the Roam Daily Notes format (e.g. "August 8th, 2020.md"), rename them | |
to the Noteplan Calendar Notes format (YYYYMMDD, e.g. "20200808.md") and move | |
them into a subfolder of the current directory: 'renamed_daily_notes'. | |
I recommend you read this blog post before going any further: |