Sadeep Madurange
Sadeep Madurange
Hi, I have the following workflow definition: ``` { "Id": "AutomaticReply", "Steps": [ { "Id": "OnMoReceived", "StepType": "While", "Inputs": { "Condition": "1" }, "Do": [[ { "Id": "WaitForMo", "StepType": "WaitFor",...
Use case: In an email clieant, want to display the emails over the past 5 days. I want to show, say, the subject, from, date fields for those emails. Like...
Hi, I'm very new to vim and plugins, so this might be a stupid question. I'm using vam to install plugins but I can't seem to install this plugin. I...
Hi guys, I'm trying to run a script with the switch -m. My code looks like: ``` app.get('/test-scraper', (req, res, next) => { const { arg0, arg1 } = req.query;...
1. Is it okay (reliable) to set TTL to as large as '12h' or '1d'? 2. What is the longest recommended TTL value?
I tried to run the TestEsme project but I get the exception: ``` System.Net.Sockets.SocketException: 'No connection could be made because the target machine actively refused it 127.0.0.1:8080' ``` How come...
I'm using workflow in a AspNetCore web api. I setup services like ``` services.AddWorkflow(options => { options.UseMongoDB(mongoConnectionString, mongoDatabase); }); ``` I created a `HelloWorld` step like ``` public class HelloWorld...