Skip to content

Instantly share code, notes, and snippets.

View adriantofan's full-sized avatar

Adrian Tofan adriantofan

View GitHub Profile
<details>
<summary>Results</summary>
```
```
</details>
@adriantofan
adriantofan / edge-lb-api.json
Created December 16, 2019 14:11
edge-lb-api
{
"data": [],
"meta": { "count": 0 },
"links": {
"first": "/1/edges?page=1&page_size=65535",
"last": "/1/edges?page=1&page_size=65535",
"next": null,
"prev": null,
"self": "/1/edges?page=1&page_size=65535"
}
@adriantofan
adriantofan / gist:a17e80030e48cc44392755398f3df49a
Created December 20, 2018 13:46
how to process bash params
#!/bin/bash
if [ "$#" -lt 3 ]; then
echo "Usage: ./run_oncloud.sh project-name bucket-name classname [options] "
echo "Example: ./run_oncloud.sh cloud-training-demos cloud-training-demos CurrentConditions --bigtable"
exit
fi
PROJECT=$1
shift
BUCKET=$1
shift
import Foundation
extension NSMutableOrderedSet {
struct rb {
static func insertSorted<T>(element: T, inTo set:NSMutableOrderedSet, isLessThan: (_ lhs:T,_ rhs:T) -> Bool){
for i in 0 ..< set.count {
let x = set[i] as! T
if !isLessThan(x,element) {
set.insert(element, at: i)
return
@adriantofan
adriantofan / gist:8c0cfc8872df54446476
Last active August 9, 2016 14:34
show custom fonts family names
for(NSString *fontfamilyname in [UIFont familyNames])
{
if (![fontfamilyname containsString:@"elvetica"]) {
continue;
}
NSLog(@"family:'%@'",fontfamilyname);
for(NSString *fontName in [UIFont fontNamesForFamilyName:fontfamilyname])
{
NSLog(@"\tfont:'%@'",fontName);
}
no separators for empty cells
tableView.tableFooterView = UIView(frame: CGRectZero)
//http://stackoverflow.com/questions/25770119/ios-8-uitableview-separator-inset-0-not-working
// From End To end
cell.separatorInset = UIEdgeInsetsZero;
cell.layoutMargins = UIEdgeInsetsZero;
cell.preservesSuperviewLayoutMargins = NO;
// invisible
@adriantofan
adriantofan / outputStreamToFileAtPathDemo.m
Last active August 29, 2015 14:26 — forked from mingchen/outputStreamToFileAtPathDemo.m
How to use NSOutputStream's outputStreamToFileAtPath
- (void)outputStreamToFileAtPathDemo
{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *file = [documentsDirectory stringByAppendingPathComponent:@"foo.dat"];
NSLog(@"file: %@", file);
NSOutputStream *output = [NSOutputStream outputStreamToFileAtPath:file append:NO];
[output open];
@adriantofan
adriantofan / gist:ca867ce2f537996ec1bc
Created June 25, 2015 12:43
preprocessor objective-c
The ' ## ' preprocessing operator performs token pasting.
#define macro(x) ## x \\gets replaced by the value of x
Stringification # x makes x in to a string so @#x in objective-c
git show-ref --tags
git format-patch -n --stdout sha >file
git am file