Skip to content

Instantly share code, notes, and snippets.

@cojoj
cojoj / beer.md
Last active October 1, 2015 14:30
MobiConf iOS beer-time

Ok, if you're in Cracow for the #MobiConf2015 and if you want to try some fine beers insted of regular ones like Żywiec or Tyskie (which are fine BTW) you shoud visit something from the list (or maybe do a BAR CRAWL):

  • Let's start with House of Beer. I really enjoy this one as they have a lot of manufactured beers from small breweries all over the 🇵🇱.
  • There's also this cool place near the Main square called Tap House.
  • If you're really in need of something brewed in-house go to CK Browar.
  • You may be near Kazimierz, if so, go to Strefa Piwa or Omerta (Yeah, I know they've pretty cool website 😂).
  • Of course, you can be somewhere near the ICE and there's also something for you and it's called TEA Time.
  • Maybe your're just a Irishy-styled guy and you love a nice pint of Guinnes... [Irish Pub](http://www.podpapug
@AliSoftware
AliSoftware / Generics-Macros.h
Last active December 11, 2020 17:18
ObjCGenerics
// Allow to use generics even if not supported yet
#if __has_feature(objc_generics)
#define NSArrayOf(x) NSArray<x>
#define NSMutableArrayOf(x) NSMutableArray<x>
#define NSDictionaryOf(x,y) NSDictionary<x, y>
#define NSMutableDictionaryOf(x, y) NSMutableDictionary<x, y>
#define NSSetOf(x) NSSet<x>
#define NSMutableSetOf(x) NSMutableSet<x>
#else
#define NSArrayOf(x) NSArray
@alexcristea
alexcristea / install-manifest.plist
Last active January 31, 2023 11:53
Over-the-Air Ad Hoc Distribution manifest for iOS8. More about this subject you can find on http://www.informit.com/articles/article.aspx?p=1829415&seqNum=16
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- array of downloads. -->
<key>items</key>
<array>
<dict>
<!-- an array of assets to download -->
@staltz
staltz / introrx.md
Last active June 13, 2024 19:58
The introduction to Reactive Programming you've been missing
@benib
benib / hafasXMLInterface.xsd
Created April 5, 2012 10:35
hafasXMLInterface.xsd
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- edited with XMLSpy v2005 rel. 3 U (http://www.altova.com) by rhu@hacon.de (HaCon Ingenieurges. mbH) -->
<!-- ======================================================================= -->
<!-- location validation request/result -->
<!-- connection request/result -->
<!-- connection scroll request/result -->
<!-- ======================================================================= -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xs:element name="ReqC">
<xs:annotation>