-
Friday links 131
Vunvulea Radu Tech Wall (Programing Issues): Comparison of different Azure messaging systems simple-test.jpg (453×1600) Agile Tour Bucharest 2013 | Agora.ro Locale::Maketext::TPJ13 – search.cpan.org Async and Await Windows Azure Website: Uploading/Downloading files over FTP and collecting Diagnostics logs – Avkash Chauhan’s Blog – Site Home – MSDN Blogs Enable diagnostic logging – Azure Websites
-
Friday links 130
Microsoft OneDrive – Access files anywhere. Create docs with free Office Online. 12 opensource and free asp.net MVC gridview contols Telerik Extensions For ASP.NET MVC – Home Implementing RoleManager in ASP.NET MVC 5 Performance – Stack Exchange Internet of Things: Programming IoT Devices,Web Services and IoT Clients – CodeProject ePub Bud – Sell your children’s…
-
Friday links 129
10 Articles Every Programmer Must Read – I am programmer The Netflix Tech Blog: Making the Netflix API More Resilient Circuit Breaking With Polly | jaywayco The Circuit Breaker – That Extra Mile Release It!: Design and Deploy Production-Ready Software (Pragmatic Programmers): Michael T. Nygard: 9780978739218: Amazon.com: Books Visual Studio 2013 – Expand Visual Studio…
-
Asynchronous code and exceptions
There are 2 kinds of coding when handling asynchronous code. The first one is calling Result: < [code lang="csharp"] t.TwoTask().Result [/code] The second is async /await As such,we will have 2 intercepting code. For the first one we will catch AggregateException For the second one we will catch the FIRST task exception ( or,more generic,Exception…
-
Friday links 128
700 Free eBooks for iPad,Kindle & Other Devices | Open Culture Falsehoods programmers believe about addresses Uwe Hermann on Twitter: ""Falsehoods programmers believe" series: http://t.co/HkhmU48fZ6,http://t.co/hZlB4kjjie,http://t.co/9MErWimCra,http://t.co/8zXFaSpmqm" WebAPI Generic ASP.NET MVC 6 attribute routing – the [controller] and [action] tokens – StrathWeb Ten Tips to Being a Great VB Developer Big Data Knows When You’re Going to…
-
Async / await transformation and pitfalls
/// <summary> /// please read first http://blog.stephencleary.com/2012/02/async-and-await.html /// </summary> Let’s say you want to transform this code to async / await public bool TwoTask() { var file= WriteToFile(); var console= ReadConsole(); return file & console; } The first version is public async Task<bool> TwoTask() { var file=await WriteToFile(); var console = await ReadConsole(); return file…
-
Friday links 127
Strip creator Born to Learn Applying NASA coding standards to JavaScript | Pixels Commander MSDN Blogs Monetization with PubCenter Ads – Creating App ID and Ad Unit ID – Quick Thoughts – Site Home – MSDN Blogs Lizard Stresser Runs on Hacked Home Routers — Krebs on Security Statisticians in World War II: They also…
-
Friday links 126
Comparing Go and .NET // Justin Beckwith » What is the Oxford comma and why do people care so much about it? » 8 of the Funniest,Most Sarcastic Greeting Cards of All Time How a Web Design Goes Straight to Hell – The Oatmeal Comics :: Popular – The Oatmeal You Don’t Have to Hate…
-
Friday links 125
5 Creative Design Ideas Using Grids – Design School 9 GIFs That Explain Responsive Design Brilliantly | Co.Design | business + design Pumpipumpe | a sharing community The AI Programmer’s Bookshelf Practical Tips for Web and Mobile Usability Tests Edward Reynolds on Twitter: "http://t.co/FjnCknj4CA" IT Pro New Year’s Honours List 2015 – TechNet UK Blog…
-
MVC-Planning Poker – Architecture versus unit testing fast
Now I have arrived to the moment when I want data to be persisted on disk. I choose SqlIte – because EF 7 is not yet on the market and SqlIte could work on Windows Phone / Android. So now I want to just serialize TableData and save . To serialize I have several options…
I am ok , you are ok