Skip to content

Instantly share code, notes, and snippets.

@bestimmaa
bestimmaa / wanted.xml
Created January 30, 2021 14:38
Upgrade Mindstorms EV3 Home to Education - Bricklink XML
<INVENTORY><ITEM><ITEMID>3705</ITEMID><ITEMTYPE>P</ITEMTYPE><MINQTY>4</MINQTY></ITEM>
<ITEM><ITEMID>3707</ITEMID><ITEMTYPE>P</ITEMTYPE><MINQTY>2</MINQTY></ITEM>
<ITEM><ITEMID>3708</ITEMID><ITEMTYPE>P</ITEMTYPE><MINQTY>2</MINQTY></ITEM>
<ITEM><ITEMID>3737</ITEMID><ITEMTYPE>P</ITEMTYPE><MINQTY>2</MINQTY></ITEM>
<ITEM><ITEMID>32013</ITEMID><ITEMTYPE>P</ITEMTYPE><MINQTY>4</MINQTY></ITEM>
<ITEM><ITEMID>32014</ITEMID><ITEMTYPE>P</ITEMTYPE><MINQTY>2</MINQTY></ITEM>
<ITEM><ITEMID>32034</ITEMID><ITEMTYPE>P</ITEMTYPE><MINQTY>4</MINQTY></ITEM>
<ITEM><ITEMID>6629</ITEMID><ITEMTYPE>P</ITEMTYPE><MINQTY>4</MINQTY></ITEM>
<ITEM><ITEMID>32184</ITEMID><ITEMTYPE>P</ITEMTYPE><MINQTY>8</MINQTY></ITEM>
<ITEM><ITEMID>32291</ITEMID><ITEMTYPE>P</ITEMTYPE><MINQTY>4</MINQTY></ITEM>
@bestimmaa
bestimmaa / scenery_packs.ini
Created December 21, 2019 22:24
X-Plane 11 scenery_packs.ini for X-Europe / VFR Objects / HD-Mesh
I
1000 Version
SCENERY
SCENERY_PACK Custom Scenery/Aerosoft - EBBR Brussels/
SCENERY_PACK Custom Scenery/Aerosoft - LSGG Genf/
SCENERY_PACK Custom Scenery/Aerosoft - EDLP Paderborn-Lippstadt/
SCENERY_PACK Custom Scenery/Aerosoft - EGLL Heathrow/
SCENERY_PACK Custom Scenery/Aerosoft - LFMN Nice Cote d Azur X/
@bestimmaa
bestimmaa / apache_force_type
Created November 7, 2016 11:07
How to add Content/Type header to file without extension on Apache2
<Files "FILENAME">
ForceType application/json
</Files>
@bestimmaa
bestimmaa / ocmock-cheatsheet.m
Created September 19, 2016 09:06 — forked from kharmabum/ocmock-cheatsheet.m
OCMock cheatsheet
/*----------------------------------------------------*/
#pragma mark - XCTAsserts
/*----------------------------------------------------*/
XCTAssert(expression, format...);
XCTAssertTrue(expression, format...);
XCTAssertFalse(expression, format...);
XCTAssertEqual(expression1, expression2, format...);
XCTAssertNotEqual(expression1, expression2, format...);
XCTAssertNil(expression, format...);
@bestimmaa
bestimmaa / ReusableCellExample.m
Created August 16, 2016 19:40 — forked from bunnyhero/ReusableCellExample.m
Example of Reactive Cocoa binding for a reusable cell.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell =
[tableView dequeueReusableCellWithIdentifier:REUSABLE_CELL_ID];
UILabel *label = (UILabel *)[cell viewWithTag:VIEW_TAG];
Model *someModel = [self getModelFromIndexPath:indexPath];
// `takeUntil:` makes the RACObserve() signal complete (and thus breaks the subscription)
// when the cell is recycled.
@bestimmaa
bestimmaa / keyboard.swift
Created July 22, 2016 12:16
Handle UIKeyboard for form screens on iOS
func keyboardShow(notification: NSNotification) {
let info: NSDictionary = notification.userInfo!
let frameV: NSValue = info[UIKeyboardFrameEndUserInfoKey] as! NSValue
let frame: CGRect = frameV.CGRectValue()
UIView.animateWithDuration(0.2, animations: {
() in
self.sview.contentInset = UIEdgeInsetsMake(0, 0, frame.size.height, 0)
})
}
@bestimmaa
bestimmaa / random.c
Last active December 31, 2015 14:49 — forked from hfadev/random.c
Generating a random float between 0 and 1
//set seed
srand(time(NULL));
// random number in range [0,1]
float r = (float)rand()/RAND_MAX;
printf("%f\n", r);
@bestimmaa
bestimmaa / opencv_qt.pro
Created October 17, 2013 22:29
Import OpenCV in Qt Creator project
#-------------------------------------------------
#
# Add OpenCV to QT Creator on Mac OS X
#
# This pro file assumes that opencv was installed
# by homebrew or manually in /usr/local/
#
#-------------------------------------------------
QT += core gui
@bestimmaa
bestimmaa / freeimage make
Last active December 24, 2015 05:49
FreeImage makefile for Mac OS X 10.8
# -*- Makefile -*-
# Mac OSX makefile for FreeImage
# This file can be generated by ./gensrclist.sh
include Makefile.srcs
# General configuration variables:
CC_X86_64 = gcc -4.2
CPP_X86_64 = g++ -4.2
COMPILERFLAGS = -Os -fexceptions -fvisibility=hidden -DNO_LCMS
@bestimmaa
bestimmaa / custom_seperator.m
Created November 11, 2015 09:04
iOS Custom UITableViewCell Seperator
// Use a custom seperator of full width
UIView *lineView = [[UIView alloc] init];
lineView.backgroundColor = kColorSeperator;
lineView.translatesAutoresizingMaskIntoConstraints = NO;
[self.contentView addSubview:lineView];
[lineView autoPinEdge:ALEdgeBottom toEdge:ALEdgeBottom ofView:self.contentView];
[lineView autoPinEdge:ALEdgeLeft toEdge:ALEdgeLeft ofView:self.contentView];
[lineView autoMatchDimension:ALDimensionWidth toDimension:ALDimensionWidth ofView:self];
[lineView addConstraint:[NSLayoutConstraint constraintWithItem:lineView attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeHeight multiplier:1.0 constant:1]];