Ricardo Costa
WLED – Check how I built my first TV led strip...
WLED is a really cool project found here. It's a web server to run on ESP8266/ESP32 that can control a lot of different kind...
Home Assistant template sensor, adding two sensor explained
This post explain how to add a template sensor in Home Assistant that is the sum of two other sensors that measure the power.
Home Assistant with Shelly 2.5 switch the easy way
How-to configure Home Assistant configuration.yaml file for your Shelly 2.5 switch. The 2.5 switch is a double relay switch and roller shutter.
Raven.Studio.zip Index.html not available
I had RavenDb embedded in a aspnet.core web api and I was getting this error when I tried to reach Raven Studio: The following...
git-askpass.exe: No such file or directory. Visual Studio
I was getting an error when I tried to sync to my Git BitBucket repository with Visual Studio 2017:
git-askpass.exe: No such file or directory.
To...
RavenDB embedded with ASP NET Core web API
This post describes how you can set up a simple ASP NET Core web API with Visual Studio 2017 to use an embedded RavenDB....
Azure Search Index with 2 datasources
Recently I had the need to index documents stored in Azure Storage Blobs. Additionally I wanted to use the blob storage metadata also to...
Azure Blob Storage Metadata 400 Bad Request
I was getting a 400 Bad Request when inserting blobs in Azure Blob Storage because I was setting metadata with non-ASCII characters.
// Retrieve storage account...
Using KeywordQuery with CSOM SharePoint Online
string username = "***********";
string pwd = "*********";
string siteURL = "**********";
ClientContext context = new ClientContext(siteURL);
Web web = context.Web;
SecureString pass = new SecureString();
foreach (char c in...
Move modules – Remove IPP – OutSystems
I needed to move some modules from one infrastructure to another so first I needed to remove IPP (Intellectual Property Protection).
1 - In Service...