samcragg.wordpress.com samcragg.wordpress.com

samcragg.wordpress.com

Samuel Cragg | Coding Scrapbook

Coding Scrapbook (by Samuel Cragg)

http://samcragg.wordpress.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR SAMCRAGG.WORDPRESS.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

November

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Saturday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.0 out of 5 with 15 reviews
5 star
6
4 star
5
3 star
3
2 star
0
1 star
1

Hey there! Start your review of samcragg.wordpress.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.7 seconds

FAVICON PREVIEW

  • samcragg.wordpress.com

    16x16

  • samcragg.wordpress.com

    32x32

CONTACTS AT SAMCRAGG.WORDPRESS.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Samuel Cragg | Coding Scrapbook | samcragg.wordpress.com Reviews
<META>
DESCRIPTION
Coding Scrapbook (by Samuel Cragg)
<META>
KEYWORDS
1 samuel cragg
2 coding scrapbook
3 menu
4 skip to content
5 articles/projects
6 reading
7 by samuel cragg
8 notifytaskcompletion isnotcompleted
9 property
10 contentcontrol
CONTENT
Page content here
KEYWORDS ON
PAGE
samuel cragg,coding scrapbook,menu,skip to content,articles/projects,reading,by samuel cragg,notifytaskcompletion isnotcompleted,property,contentcontrol,hubsection,datatemplate,public,sealed,class,asyncindicator,control { protected,override,static,double
SERVER
nginx
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Samuel Cragg | Coding Scrapbook | samcragg.wordpress.com Reviews

https://samcragg.wordpress.com

Coding Scrapbook (by Samuel Cragg)

INTERNAL PAGES

samcragg.wordpress.com samcragg.wordpress.com
1

Samuel Cragg – Page 2 – Coding Scrapbook

https://samcragg.wordpress.com/page/2

I was recently parsing a 43.3MB SVG file that was filled with polygons and it was taking a long time (around 3.6 seconds). I figured I was I/O bound and, for kicks, decided to see how long it took to simply count the Xml nodes in the file using the. It completed in only half a second, seven times faster. I wasn’t I/O bound but CPU bound. What could be taking so long? Turns out it was the parsing of the points that took so long, in particular converting text to numbers. I was using. That will parse as muc...

2

Articles/Projects – Samuel Cragg

https://samcragg.wordpress.com/articlesprojects

Here are some of the projects I have developed and released to the community, as well as some articles I have written:. SharpKML is an implementation of the Open Geospatial Consortium (OGC) KML 2.2 standard developed in C#, able to read/write both KML files and KMZ files. KML is the most commonly associated with Google Earth and the files created with this library are compatible with the application. WPF Map Control using openstreetmap.org Data. Using Direct2D with WPF. This is a short article that extra...

3

DataTemplates in WinRT – Samuel Cragg

https://samcragg.wordpress.com/2014/05/14/datatemplates-in-winrt

While I enjoy the simpler interfaces in WinRT, I’ve been spoiled by the power of WPF. One thing I missed recently was the automatic selection of a. Property; this property isn’t there in WinRT. The solutions I’ve seen use a custom. With various properties for each type. This certainly works but it felt a bit repetitive. Instead, the solution I came up with searches the resources for an item with the same key as the type name and returns that. Here’s the class:. Windows.UI.Xaml; using. Fill in your detail...

4

WeakEventManager for WinRT – Samuel Cragg

https://samcragg.wordpress.com/2014/06/15/weakeventmanager-for-winrt

When registering to an event with an instance method then a reference will be stored from the event source to the event handler. This is normally fine, however, there are situations when the event source may live longer than the event handler. An example I recently ran into was when I wanted to listen to the Clipboard.ContextChanged. Event, which is static. In WPF land you’d use the WeakEventManager TEventSource, TEventArgs. I’ve changed the API slightly, as I needed overloads to accept a. AddHandler TEv...

5

Reading – Samuel Cragg

https://samcragg.wordpress.com/reading

Here’s some of the blogs I read and some of the books I’ve read (that I would recommend):. Fabulous Adventures In Coding. Jon Skeet: Coding Blog. The Old New Thing. Don’t Make Me Think by Steve Krug. OpenGL 4.0 Shading Language Cookbook by David Wolff. Modern C Design by Andrei Alexandrescu. Practical Neural Network Recipies in C by Timothy Masters. Scrum and XP from the Trenches. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:.

UPGRADE TO PREMIUM TO VIEW 5 MORE

TOTAL PAGES IN THIS WEBSITE

10

OTHER SITES

samcraephotography.com samcraephotography.com

SAMcRAEphotography

LAND, SEA and SKYSCAPES. Fur, Fins, Feathers and Such. 2015 SmugMug, Inc.

samcraft.com samcraft.com

Sam Craft - Freelance - Advertising, Commercial, Sports, Photographer | Sam Craft - Freelance Photographer

I’m a full time photojournalist based in Central Texas working for the Bryan-College Station Eagle. Fully digital and able to transmit from the field, I’m available for weddings, portraits, editorial assignments, commercial work, sporting events and any other photography needs in Central Texas, the Houston area, Austin area and East Texas. All images Sam Craft - Freelance Photographer. For assignments email scraft@samcraft.com.

samcraftbuilders.com samcraftbuilders.com

Home Page

SamCraft Builders Co Ltd. 2071 N Collins Blvd, Suite 200. Tell: 972 423 2714. Fax: 972 423 2483. SamCraft Builders Ltd. Co., a design built luxury custom builder, was created with a passion to design and build unique living environments for customers of distinguished taste. Please call us today for initial consultation at. We are located at:. 2071 N. Collins Blvd. Suite # 200,. Richardson, Texas 75080. Website Designed and Maintained by Tarek C.

samcrafting.wordpress.com samcrafting.wordpress.com

samcrafting | Card making and all kinds of Craft Elements

Card making and all kinds of Craft Elements. It seems we can’t find what you’re looking for. Perhaps searching can help. Create a free website or blog at WordPress.com.

samcraftstudio.co.nr samcraftstudio.co.nr

samcraftstudio

Design, css3, html5, website design, development.

samcragg.wordpress.com samcragg.wordpress.com

Samuel Cragg | Coding Scrapbook

Samuel Cragg Coding Scrapbook. Loading indicator for content controls. With C# 5 (.NET 4.5) it became a lot easier to create asynchronous methods. There’s also a great MSDN article. On how to leverage this using MVVM so that you can have properties update the view when they’ve finished loading. What I wanted was a simple control that would indicate to the user that the content was being fetched (via binding to the. What I wanted though was a simple attached property on a. Desired : available; } }. Like I...

samcraig.ca samcraig.ca

samcraig.ca Opening Page

Medicine Hat Band Reunion. Lacombe Composite High School. Grad Class of 1970.

samcraig.net samcraig.net

Home!

Welcome to our website. View our new baby page "Introducing LilyAnn Marie". Our Prayer To You. Our prayer is that all who view this site will realize that we are ordinary people with our individual weaknesses and imperfections but we serve an extraordinary GOD who delights in demonstrating His great power! Our Prayer to all who visit this site is that you will find strength and encouragement from HIM who is able to do exceeding abundantly above all that we ask. To view LeeAnn Craig's Memory Page.

samcraiglawnsprinklersandleaks.com samcraiglawnsprinklersandleaks.com

Lawns, Sprinklers, and Leaks.com

Sam Craig Lawn, Sprinklers, and Leaks. Discount Sprinklers and Drip Systems/Leaks, etc. Rates: Start as low as $20.00/ but if it is an emergency or more than (1) leak the job would cost more. During the troubleshooting process I perform a Diagnostic Needs Analysis; to determine the exact problem cause of the system malfunction, and a service fee may be applicable in that case. Please contact me by phone, (520) 494-4623 text-message, and/or email:.

samcraigmusician.com samcraigmusician.com

Sam Craig - Musician

samcrain.com samcrain.com

SamCrain.com

Join the email list! Sam's F.A.Q. Welcome to my site!