Category: stankins
-
Obtaining list of videos from a youtube playlist with Stankins
Because Stankins has a parser to html,you can have this kind of macro #see all href Stankins.HTML.ReceiverHtmlAHref file=https://www.youtube.com/playlist?list=PL4aSKgR4yk4OnmJW6PlBuDOXdYk6zTGps #retain href column StankinsObjects.FilterRetainColumnDataContains namecolumn=href stringToHave=PL4aSKgR4yk4OnmJW6PlBuDOXdYk6zTGps #retain just videos which title contains 5Min StankinsObjects.FilterRetainColumnDataContains namecolumn=a_text stringToHave=5Min #remove column a_html StankinsObjects.FilterRemoveColumn namecolumn=a_html #transform column to li a href StankinsObjects.TransformerAddColumnExpressionByTable expression=”‘<li><a href=’+ href+’>’ + a_text+'</a></li>’” newcolumnname=test nametable=TableLinks #remove column…
-
.NET Core Alphabet
What I wanted is a simple application ( Web,Mobile,Desktop) that can list,alphabetically,the .NET Core keywords. What is the purpose? For interviews – suppose you want to test the people knowledge in C#. You start the application( again: Desktop or Web or Mobile) and let the candidate choose a letter. Then you see the keywords for…
-
Dynamic loading controllers in .NET Core
I needed to load dynamically some controllers to the Stankins application .Dynamic like in – written in some text file,then loading them,The best reference was https://www.strathweb.com/2018/04/generic-and-dynamically-generated-controllers-in-asp-net-core-mvc/ . But it was not enough : what I wanted is to write the controller in some text file and compile and load them. First problem ; What about…