-
Task and generic list
Could you spot the problem in transforming one code that is sequential into a Task ( threaded ) one? First,this is the sequential one: This is the modified with task: Ok. If you do not know,here is a helper: Sometimes,at line it gives the error: System.Reflection.TargetInvocationException: Exception has been thrown by the…
-
Friday links 217
Microservices at Netflix: Lessons for Architectural Design http://blog.cleancoder.com/uncle-bob/2016/01/04/ALittleArchitecture.html Windows 10 – Using the OneDrive REST API in a Windows 10 App Cutting Edge – Don’t Gamble with UX—Use Wireframes Linux and open source have won,get over it | ZDNet Doing One Thing with Microservices The 13 best Google Chrome hacks – Business Insider
-
InternalsVisibleTo usage
I do not know if you know InternalsVisibleToAttribute https://msdn.microsoft.com/en-us/library/system.runtime.compilerservices.internalsvisibletoattribute%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396 . I have used on a project https://github.com/ignatandrei/WorldBankAPi,that deals with World Bank API to get information Let’s take an example: Countries: http://api.worldbank.org/countries?format=json I have had a class CountriesRepository,that deals with transforming countries Json from WorldBank to Country classes. How can I test it WITHOUT relying on…
-
Friday links 216
Leveraging existing code across .NET platforms – .NET Blog – Site Home – MSDN Blogs PowerShell Script Encrypter | Precision Computing Embedding files in powershell scripts Make-PS1ExeWrapper | Keith Hill’s Blog Lucene’s Practical Scoring Function 12 Clever Ways to Use More Visuals on Social Media 5 Great Online Tools for Creating Infographics | Randy Krum…
-
Maintaining history of data
What is this about? I tend to quote Fowler: “Usually when we see properties on a class,they represent questions we can ask of an object now. However there are times when we don’t want to just ask questions about a property of an object now,we also want to ask these questions about some point…
-
Friday links 215
modeln.github.io/sDashboard/example/ex.html NuGet Package Explorer – Download Release File How to Create Amazing Infographics – Design School To .NET or not to .NET,That is the Question – FullStack – Ofer Zelig’s Blog 7 Blogs You Should Really Read If You Are A Student Programmer HangfireIO/Hangfire TSqlParser.ParseStatementList Method (TextReader,IList(ParseError)) (Microsoft.SqlServer.TransactSql.ScriptDom) 25 Life Lessons I Have Learned Over…
-
Friday links 214
Releases · EWSoftware/SHFB The Expert (Short Comedy Sketch) – YouTube John L. Miller’s answer to What is the best career advice for a software developer to earn a higher salary? – Quora Ching Ho Li’s answer to Do Jedi Knights have a good technique as swordsmen? – Quora VerbalExpressions/JSVerbalExpressions Angular 2 versus React: There Will…
-
Friday links 213
ChrisMissal/Formo Up For Grabs ASP.NET Web API Contrib WebApiContrib/WebAPIContrib WebApiContrib.Formatting.Xlsx ChrisMissal/Quiche GettingStarted · chucknorris/roundhouse Wiki How to Write Good Code – CodeProject Hard Truths About Life That You Need To Realize Decoding DevOps: a Management Primer | Data Center Knowledge Microsoft – The Sleepover Hackathon 2015 The Free Microsoft Visual Studio Dev Essentials Tools Explained…
-
Friday links 212
Breakpoint Generator Extension – Microsoft Application Lifecycle Management – Site Home – MSDN Blogs RolandPheasant/TailBlazer MotzCod.es by James Montemagno — How To Deliver a Great Technical Presentation SqlDiffFramework-A Visual Differencing Engine for Dissimilar Data Sources – Home Using SignalR to Create Mobile Applications Print preview: Using SignalR to Create Mobile Applications SqlDiffFramework-A Visual Differencing Engine…
-
Powershell vs console application
I have decided to make the utilities that I use in form of Powershell applications instead of Windows / Console applications Pros: There are simpler to use – just run the powershell The parsing of command line is powerfull in powershell There are simpler to maintain ( just text scripts files) There are no big…
I am ok , you are ok