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

  • Friday links 252

    BuzzJob:  Open Doors Wipro PostSharp Blog | New in PostSharp 4.3 Preview – An alternative to NuGet Introducing Regulazy: Point & Click Regular Expression – Blog – Osherove Here are the most well-designed apps of 2016,according to Apple | TechCrunch How some mentors take advantage of startups they are meant to be helping — Tech…

  • License plate number from image

    One feature to implement is to have the plate number recognized from image – the user,instead of entering the number,take a picture of the plate and sends to the application. So I decided to do this. Roxana Beloiu pointed me to https://github.com/openalpr/openalpr   –  that can recognize the plate number. I have had some problems with…

  • Friday links 251

    paulbatum/WebSocket-Samples LINQ: Enhancing Distinct With The PredicateEqualityComparer – CodeProject graphviz – Create Image From .dot file in C# – Stack Overflow Six ways to declare JavaScript functions 15 Ways to Write Self-documenting JavaScript perf_scale_cheatsheet.pages Bimodal IT smore-inc/clippy.js: Add Clippy or his friends to any website for instant nostalgia. Adding Facial Recognition to Your Mobile Apps…

I am ok , you are ok