Year: 2018

  • 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?…

  • Friday links 253

    Understanding Routing Precedence in ASP.NET MVC and Web API – CodeProject Nike Inc. Visual Studio SDKs | Visual Studio Extensibility (VSX) Home – Ultimate Coder The Value of Web APIs Response Caching and In Memory Caching in ASP.NET Core 1.0 – CodeProject Bugsnag Blog – A Warning About jQuery 3 Authoring Tag Helpers — ASP.NET…

  • Interpreting pdf to database(sqlite)

    In making the http://isthistaxilegal.apphb.com I have had the need to parse pdf files,that contains tables inside. A more daunting task is hard. I have investigating the existing software – and the most used one was https://github.com/tabulapdf – however,not even him was closed to achieve . The problem was not transforming the pdf into text. The…