I just released a web application for generating typos. This service exposes a resource that can simply be invoked by the browser or any http client (eg curl) and returns a list of strings that look like the original string. For now the request is not that much customizable, the next releases will allow you … Continue reading Typo generator online
Category: Dev
The Smith Project
The project The project starts from the desire to monitor the Internet in search of threats but also in search of situations that are not correlated with each other but which, with time or with support, may be at the basis of larger and currently unpredictable phenomena. The first phase of the project deals with … Continue reading The Smith Project
Always leave office on time
A List of MIME Types by Content Type
Wait for an event in a WaterfallDialog
Working on a Skill, I needed to block the execution of a WaterfallDialog while waiting for a specific event to arrive. The solution is simple and based on the use of EventPrompt. Below I show how to use it. Register EventPrompt in the constructor AddDialog(new WaterfallDialog(nameof(WaterfallDialog), new WaterfallStep[] { HelloAsync, WaitForEventAsync, DoneAsync })); AddDialog(new EventPrompt(nameof(EventPrompt), … Continue reading Wait for an event in a WaterfallDialog
Share data from Virtual Assistant to Skill
For some weeks I have been working on a project based on Bot Framework. Things were going well until I found myself in the position of having to share information between a Virtual Assistant and a Skill … Given that it gave me problems and that my requests made on Stackoverflow did not produce answers, … Continue reading Share data from Virtual Assistant to Skill
Azure Key Vault – Basic
Over time, I have used Key Vault several times. I think it's a great solution and I clearly recommend its use to everyone! Since every time I talk about it with something, after the enthusiasm I am asked how to use it, I have prepared a simple project that illustrates the basics of its use. … Continue reading Azure Key Vault – Basic
You must be logged in to post a comment.