• 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/

  • Friday links 257

    http://www.mikesdotnetting.com/Article/301/loading-asp-net-core-mvc-views-from-a-database-or-other-location https://medium.com/@cscalfani/goodbye-object-oriented-programming-a59cda4c0e53#.995ytcgmz https://blogs.windows.com/buildingapps/2016/07/22/fun-with-the-windows-subsystem-for-linux/ https://techcrunch.com/2016/07/22/dear-google-the-future-is-fewer-people-writing-code/ Interview Techniques – Technical Questions | Func(Of Inspiration) – Joshua Lewis’s Blog Implementing a Markdown Engine for .NET | xoofx ASP.NET Core 1.0 built-in Logging Framework Avoid ClickJacking in ASP.Net Core 1.0 The Business-Personal Value Continuum – DaedTech Download SQL Server Management Studio (SSMS) 4 Reasons To Drop MVVM Defend ASP.NET…

  • Design Patterns Class

      For anyone interested I propose a class on Design Patterns and their practical use in .NET Core / .NET Framework. The tutorial  will take 2  days . After that,you will have a practical knowledge about some of Design Patterns and their practical use in any framework construction. The design patterns shown will be: Visitor Strategy…

  • Friday links 256

    FeroxRev/Pokemon-Go-Rocket-API: Client API Library Introducing Stack Overflow Documentation | Xamarin Blog Teaching JavaScript for a Living: Lessons Learned Through Teaching Thousands of Developers | appendTo Web Development Training Courses for Teams What is solution domain The fall of Open Source – Command Prompt,Inc. https://blog.scottnonnenberg.com/carrots-not-sticks/ https://github.com/SeleniumHQ/selenium http://www.petermorlion.com/my-own-joel-test/ Microservices With Spring Boot,Axon CQRS/ES,and Docker – DZone Integration…

  • Fertility Rate on European Countries with R

    This is the source from https://notebooks.azure.com/ignatandrei/libraries/EuropeStatData – FertitlityRate Preload packages¶ Pacman¶ First install pacman to install once In [1]: if (!require("pacman")) install.packages("pacman") Loading required package: pacman Load the necessary packages¶ In [2]: pacman::p_load(‘XML’, "magrittr","ggplot2", "RCurl", "rlist", "rvest", "dplyr", "devtools","assertthat","XLConnect","tidyr") Use the functions in the packages¶ In [3]: library(stringr) library(magrittr) library(XML) library(RCurl) library(rlist) library(ggplot2) library(rvest) library(tidyr)…

  • Friday links 255

    Making Money by Abusing Phone-Based Two-Step Verification | On the Wire How I built an app with 500,000 users in 5 days on a $100 server — Unboxd — Medium DHTMLX JavaScript UI Library for Building Ajax-Powered Web Apps Where’s DNVM? Safely running multiple versions of the .NET Core SDK and Tooling with global.json –…

  • Download large files with R and RCurl

    First,read documentation. Try with #getCurlOptionTypes(opts = getCurlOptionsConstants()) #print (getCurlOptionTypes) #listCurlOptions() #getCurlOptionsConstants() #getCurlOptionTypes(opts = getCurlOptionsConstants()) Then,this is the code ( pretty self explanatory) downloadFile <-function(url,file){      curl = getCurlHandle() curlSetOpt( .opts = list(http.version =HTTP_VERSION_1_0,verbose = TRUE),                curl = curl)          f = CFILE(file,mode=”wb”)     a = curlPerform(url = url,curl=curl,writedata = f@ref,noprogress=FALSE)     close(f) }

  • Friday links 254

    Microsoft R Client provides a free taste of R Server | InfoWorld Introducing the free Microsoft R Client Microsoft R Server and R Client Getting Started Guide præclarum – Continuous – C# and F# IDE for the iPad RevoScaleR Getting Started Guide Programming Error in Citigroup Banking Software Goes Undetected for 15 Years .NET Core…

  • Github as a repository for database (sqlite)

    In making http://isthistaxilegal.apphb.com I neede to have a database. I decided to have sqlite,since it needs just a file and the dll’s.( Side Note: The good dll’s for sqlite and .net core are not the original ones,that have a dependency of .NET Framework – but Microsoft.Data.Sqlite ) . But how to deploy this every time?…

I am ok , you are ok