UiPath

How to use Invoke Method in UiPath

The InvokeMethod activity is another way to implement a code which is outside of the standard built-in activities. You can use this activity to invoke a method of a class. The class does not need to be part of the workflow or use any of the workflow base classes. The InvokeMethod calls a public method of…

Data AnalysisPostgresql

Connect to Heroku postgres with pgAdmin

pgAdmin is the most popular Open Source administration and development platform for PostgreSQL. How to set up pgAdmin 1.Install the software here. Create Heroku server connection 2. Right click on server, select Create and Server 3. Add in name for your connection. 4. Navigate to Connection tab. Fill in the credentials from Heroku as documented…

Email Marketing
0

Removing extra bullet in Outlook email

It’s a known issue that some of the outlook versions is displaying extra bullet at the end of unordered list. This issue can be resolved by adding code below as the last element before closing tag <div style=”display:none;”>&nbsp;</div> <ul> <li>item 1</li> <li>item 2</li> <div style=”display:none;”>&nbsp;</div> </ul>