-
Friday Links 344
morelinq/MoreLINQ: Extensions to LINQ to Objects apache/incubator-gobblin: Gobblin is a distributed big data integration framework (ingestion,replication,compliance,retention) for batch and streaming systems. Gobblin features integrations with Apache Hadoop,Apache Kafka,Salesforce,S3,MySQL,Google etc. Getting Started – Gobblin Documentation Monetize Electron Desktop Applications With CoinHive And Angular Part 2: How to stop me harvesting credit card numbers and passwords from…
-
Try to show the result online in docker with dotnet try- part 7
Trying to put the dotnet try in docker Each line from here is taking time – save this as docker.console file FROM mcr.microsoft.com/dotnet/core/sdk:3.0 RUN dotnet tool install -g –add-source “https://dotnet.myget.org/F/dotnet-try/api/v3/index.json” dotnet-try ENV PATH=”$PATH:/root/.dotnet/tools” #ENV ASPNETCORE_URLS=http://+:5000 CMD dotnet try –verbose –port 443 EXPOSE 443 I can run this by docker build -f ./console.docker . -t…
-
Show the software- artifacts and dotnettry –part 6
So I was about artifacts – what if I put the console as an artifact,to can show the work to other people ? Read about artifacts at Github Actions at https://help.github.com/en/github/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts . Seems easy. One indentation problem later and I have a 34 MB application that is attached to the current action and it is…
-
Running CI tests- part 5
Now I want that every time I commit the project,the tests should be run. I do not want all the test,but just the ones without external dependencies. For that,I decorate with [Trait(“External”,”0″)] and [Trait(“External”,”1″)] the ones that are using just local resources,respectively the internet. I modify the dotnetcore.yml from Github to run the test by…
-
Badge,tests–live and mock–part 4
(This is the result of 1 hour per day auto-challenge as a full cycle developer) Reading https://github.com/sdras/awesome-actions I discovered that I can easy add a badge that is building correctly. Not working ( shows “ no status” ). Thinking about spaces –but no. Maybe a bug ? Resolving later… Now it time to add some…
-
Friday Links 343
luigirizzo/dummynet: Automatically exported from code.google.com/p/dummynet Machine Learning Trick of the Day ← The Spectator A Custom Model Binder for Passing Complex Objects with Query Strings to Web API Methods – CodeProject Interactive Tutorials for R An Adventure in Statistics: adventr for R and RStudio Data Visualization jamesmontemagno/monkey-cache: Easily cache any data structure for a specific…
-
Source control and build–part 3
(This is the result of 1 hour per day auto-challenge as a full cycle developer) I need to put somewhere the sources – GitHub seems the obvious choice. So I created https://github.com/ignatandrei/infoValutar/ and put there the project. Now trying to help others to see the final result – and here GitHub actions can help build…
-
Reading from internet–part 2
(This is the result of 1 hour per day auto-challenge as a full cycle developer) After some searching,I have found this page https://bnro.ro/Cursurile-pietei-valutare-in-format-XML-3424.aspx where it says it has the latest BNR exchange rates in XML format – https://www.bnr.ro/nbrfxrates.xml – and it has also an xsd schema : https://www.bnr.ro/xsd/nbrfxrates.xsd ( Also I have discovered this page…
-
Exchange rates–start project – part 1
(This is the result of 1 hour per day auto-challenge as a full cycle developer) Long time ago I have made a site about exchange currency rates for National Bank of Romania( and l,later,also Central Europeean Bank ) . It was started on ~ 2004 – found image at https://web.archive.org/web/20041215090302/http://www.infovalutar.ro/ Then was passed via MVC1…
-
Angular Pipe to match and select words in a text
I needed two times the same pipe to match and select words in a text . I maybe put later in a npm package,but until then,here it is You can use by performing 3 steps: Creating a highPipe.ts and copying the code above In File : app.module.ts,at @NgModule,ad declarations add HighlightPipe ( also, import {HighlightPipe} from ‘./highPipe’;…
I am ok , you are ok