Year: 2018
-
Obtain data from ANAF(local IRS)
In ROmania ANAF is providing a WebAPI that allows access to some of the information that any enterprise should provide. The API is described at https://webservicesp.anaf.ro/PlatitorTvaRest/api/v3/, I have made a C# console and a node,js script. The differences: 1.it is easiear in node to make an http request. 2. For C# – I think in…
-
Friday links 261
Cold vs Hot Observables How to Implement Internationalization (i18n) in JavaScript FAQ – Frequently Asked Questions | MQTT .NET Standard Library OneTab Performing OCR for iOS,Android,and Windows with Microsoft Cognitive Services | Xamarin Blog Thinking About TypeScript,Dependency-Injection Tokens,Type-Checking,And Architecture In Angular 2 RC 4 Configuring ASP.NET Core for Angular 2 Deep Linking – Sergey Barskiy’s…
-
Tiny Types–documentation–part 4
This is a series http://msprogrammer.serviciipeweb.ro/2018/03/12/tiny-types-in-cpart-1/ http://msprogrammer.serviciipeweb.ro/2018/03/19/tiny-types-part-2adding-iequatable/ http://msprogrammer.serviciipeweb.ro/2018/03/26/tinytypesadding-equality-operatorpart-3/ http://msprogrammer.serviciipeweb.ro/2018/04/02/tiny-typesdocumentationpart-4/ tiny types in C# Tiny types is a NuGET dll,https://www.nuget.org/packages/TinyTypesObjects/ Also,you can find the construction here: http://msprogrammer.serviciipeweb.ro/category/tinytypes/ The documentation is copied shameless from https://github.com/jan-molak/tiny-types Installation To install the module from nuget : … Install-Package TinyTypesObjects … Defining Tiny Types An int on its own is just a…
-
Friday links 260
David Bailey’s answer to How do I quickly and efficiently learn a new language? – Quora Creating PowerShell Stacks and Expression Evaluators – Simple Talk Introducing Postman for Windows – Postman Blog A Comprehensive Look at jQuery Selectors Finding Opportunities in the Mistakes We Make · An A List Apart Article How To Protect Your…
-
TinyTypes–adding equality operator–part 3
This is a series http://msprogrammer.serviciipeweb.ro/2018/03/12/tiny-types-in-cpart-1/ http://msprogrammer.serviciipeweb.ro/2018/03/19/tiny-types-part-2adding-iequatable/ http://msprogrammer.serviciipeweb.ro/2018/03/26/tinytypesadding-equality-operatorpart-3/ http://msprogrammer.serviciipeweb.ro/2018/04/02/tiny-typesdocumentationpart-4/ Now we have come to the interesting part – the equality operator. We have already operator equals,but not == Because we primary want this TinyTypes for structs( int,double,bool,and so on) we can define a new class For this we could implement operator == by using the Equals…
-
Friday links 259
Using Sessions and HttpContext in ASP.NET Core and MVC Core TagHelpers : Authoring Nested TagHelpers in ASP.NET Core MVC – Our ComponentOne Turning Natural Language into Meaning with LUIS (Natural Language Understanding) Sift String Distance and Similarity algorithm – Home ASP.NET Core – Real-World ASP.NET Core MVC Filters Cutting Edge – Beyond CRUD: Commands,Events and…
-
Tiny Types part 2–adding IEquatable
This is a series http://msprogrammer.serviciipeweb.ro/2018/03/12/tiny-types-in-cpart-1/ http://msprogrammer.serviciipeweb.ro/2018/03/19/tiny-types-part-2adding-iequatable/ http://msprogrammer.serviciipeweb.ro/2018/03/26/tinytypesadding-equality-operatorpart-3/ http://msprogrammer.serviciipeweb.ro/2018/04/02/tiny-typesdocumentationpart-4/ As always,the bigger problem is adding equality. The Tiny Type should be equal with the inner value – and with the other type with the same value. And,in C#,when you implement equality,there is a whole theory – see https://msdn.microsoft.com/en-us/library/336aedhh(v=vs.100).aspx . So the code to define equality is…
-
Friday links 258
The traits of a proficient programmer – O’Reilly Media As a software developer,how can I ensure I remain employable after age 50? – Quora 25 Cool Websites to Look at When Bored How To Develop Technical Skills – Simple Programmer Offline Apps: what to do when your user disconnects | Building Apps for Windows List…
-
Tiny types in C#–part 1
This is a series http://msprogrammer.serviciipeweb.ro/2018/03/12/tiny-types-in-cpart-1/ http://msprogrammer.serviciipeweb.ro/2018/03/19/tiny-types-part-2adding-iequatable/ http://msprogrammer.serviciipeweb.ro/2018/03/26/tinytypesadding-equality-operatorpart-3/ http://msprogrammer.serviciipeweb.ro/2018/04/02/tiny-typesdocumentationpart-4/ I have read about tiny types in Javascript – at https://darrenhobbs.com/2007/04/11/tiny-types/ and at https://janmolak.com/tiny-types-in-typescript-4680177f026e . It was an interesting idea – especially in this world of REST API . I decided to make the same on C# – so here it is: https://github.com/ignatandrei/tinyTypes and at https://www.nuget.org/packages/TinyTypesObjects .…
-
Several DesignPatterns and Introduction to R
On Tuesday I will make 2 presentations : 1. Several Design Patterns in .NET FrameworkWe will pass to Prototype,Iterator,Builder,Adapter,NullObject and we will show their use in .NET Framework2. Introduction in RHow to get started,what can do,small application and how to run on Azure. The link is https://www.meetup.com/Bucharest-A-D-C-E-S-Meetup/events/247801047/ . For more design pattens,please see http://msprogrammer.serviciipeweb.ro/2018/03/05/design-patterns-class/