About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (21)
- Development (217)
- Security (19)
- Test (32)
- Tooling (175)
- Uncategorized (169)
Category Archives: Development
Video Mirroring IOS Apps with MonoTouch
For an on-stage demo of an iPad app I needed to build in video mirroring. Luckily I found this code and everything worked within 10 minutes, waiting for compile – package – deploy took that long 😉 This code is … Continue reading
Posted in Development
Tagged ios, iPad, Mirroring, mono, monotouch, tvoutmanager, vga adapter, video
Leave a comment
Microsoft Web Camp
Microsoft uses (boot)camps to promote new products. The website devcamps.ms contains the curriculum. At the writing of this post there is Windows Phone, Windows Azure, Web and Windows. It’s free so I registered for the Web Camp and signed up … Continue reading
Posted in Conference, Development
Tagged Accessibility, Conference, Fangs, HTMl5, pinned sites, SignalR, Web API, Web Camp, WebMatrix, websockets
Leave a comment
BasicHttpBinding blocking under Mono
Hosting services in Mono using the BasicHttpBinding will block incomming requests until the previous request is handled. In dotNET this is not the case. Another difference between dotNET and Mono. I’ll demonstrate this by using a self calling service. See … Continue reading
Mono.Data.Sqlite and filelocks
While porting my projects to Mono I noticed some file locking on databases. There were no problems with the dotNET code. Seems like a difference in behavior between the two frameworks. A simple query to a Sqlite database would look … Continue reading