My Blog 160 posts
notes & snippets
http://stackoverflow.com/questions/21335136/re-enable-right-click-so-that-i-can-inspect-html-elements-in-chrome
window.oncontextmenu = null;
var elements = document.getElementsByTagName("*");
for(var id = 0; id < elements.length; ++id) { elements[id].oncontextmenu = null; }
window.oncontextmenu = null;
var elements = document.getElementsByTagName("*");
for(var id = 0; id < elements.length; ++id) { elements[id].oncontextmenu = null; }
Remove and ignore dreamweaver dwsync.xml files from your GIT repo
http://www.lazydada.com/2011-08-30/remove-and-ignore-dreamweaver-dwsync-xml-files-from-your-git-repo/
http://www.lazydada.com/2011-08-30/remove-and-ignore-dreamweaver-dwsync-xml-files-from-your-git-repo/
Font Awesome
http://fontawesome.io
Font Awesome Cheatsheet
http://fortawesome.github.io/Font-Awesome/cheatsheet/
Genericons
http://genericons.com/
Iconic
https://useiconic.com/open/
GLYPHICONS
http://glyphicons.com
http://fontawesome.io
Font Awesome Cheatsheet
http://fortawesome.github.io/Font-Awesome/cheatsheet/
Genericons
http://genericons.com/
Iconic
https://useiconic.com/open/
GLYPHICONS
http://glyphicons.com
Rendering Text with OpenType Fonts Using GDI
http://www.codeproject.com/Tips/557423/Rendering-Text-with-OpenType-Fonts-Using-GDI
http://msdn.microsoft.com/en-us/library/aa984365(v=vs.71).aspx
http://www.codeproject.com/Tips/557423/Rendering-Text-with-OpenType-Fonts-Using-GDI
http://msdn.microsoft.com/en-us/library/aa984365(v=vs.71).aspx
With AFNetworking
NSString *imageUrl = [NSString stringWithFormat:@"http://graph.facebook.com/%@/picture?type=square", @"100003703755434"];
[self.imageView setImageWithURL:[NSURL URLWithString:imageUrl] placeholderImage:[UIImage imageNamed:@"profile.jpg"]];
Image load Sync
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://graph.facebook.com/%@/picture?type=square", @"100003703755434"]];
UIImage *image = [UIImage imageWithData: [NSData dataWithContentsOfURL:url]];
[self.imageView setImage:image];
NSString *imageUrl = [NSString stringWithFormat:@"http://graph.facebook.com/%@/picture?type=square", @"100003703755434"];
[self.imageView setImageWithURL:[NSURL URLWithString:imageUrl] placeholderImage:[UIImage imageNamed:@"profile.jpg"]];
Image load Sync
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://graph.facebook.com/%@/picture?type=square", @"100003703755434"]];
UIImage *image = [UIImage imageWithData: [NSData dataWithContentsOfURL:url]];
[self.imageView setImage:image];
Entity Framework - Eager load two many-to-many relationships
http://stackoverflow.com/questions/21065177/entity-framework-eager-load-two-many-to-many-relationships
http://stackoverflow.com/questions/21065177/entity-framework-eager-load-two-many-to-many-relationships
Facebook Photos Size Guide: Dimensions & Types (2014 Edition)
http://havecamerawilltravel.com/photographer/images-photos-facebook-sizes-dimensions-types
http://havecamerawilltravel.com/photographer/images-photos-facebook-sizes-dimensions-types
