How to connect to arbitary DOM elements using draggable in jQuery?
Date : March 29 2020, 07:55 AM
|
How do we trim text from arbitary start to arbitary end position?
Date : March 29 2020, 07:55 AM
it helps some times How do I obtain a trimmed down inputted text ? eg, , You can remove everything up to the comma using a regular exprssion: var txt = "Hello, how are you???";
alert(txt.replace(/^[^,]*,/,''));
var txt = "Hello, how are you???";
alert(txt.replace(/\?*$/,''));
var txt = "Hello, how are you???";
alert(txt.replace(/(^[^,]*,)|(\?*$)/g,''));
|
When to use Bots, FaaS, Runbooks and logic App
Tag : azure , By : RichAA
Date : March 29 2020, 07:55 AM
this will help YMMV, but here are some pretty good rule of thumbs: Are you doing PowerShell based Automation work? If Yes, consider Azure Automation Runbooks. Are you building a bot? If Yes, consider the Azure Bot Framework service. Are you build a workflow that executes on a timer, especially one that integrates with other services (etc.)? If Yes, consider Logic Apps. Are you writing generic application code? If Yes, consider Azure Functions.
|
Microservices vs functions as service (faas)
Date : March 29 2020, 07:55 AM
seems to work fine Yes, as long as the other microservices would not know or care that the Faas microservice is using this kind of technology. That's the beauty of the microservices architecture: you could have anything inside a microservice as long as it communicates to the outside world using a technology agnostic protocol that hides the underlying technology stack (yes to JSON, no to Sql protocol - database/table sharing).
|
how to return HTTP status code in Open FaaS?
Date : March 29 2020, 07:55 AM
|