Archives for Software Dev - Page 19
From Chrome, clear a specific site’s cached content
Type chrome://settings Basically, go into the advanced tab on the ‘clear browsing content’ – and pick ‘Site Settings’
Azure Cosmos DB
Azure Cosmos DB is Microsoft's globally distributed, multi-model database service. With a click of a button, Cosmos DB enables you to elastically and independently scale throughput and storage across any…
YAML syntax
The synopsis of YAML basic elements is given here: Comments in YAML begins with the (#) character. Comments must be separated from other tokens by whitespaces. Indentation of whitespace is…
Centralized databases versus Blockchain
Where Blockchain may not be a solution What non-monetary projects generally need, is a centralized, upgradeable and scalable system. Each of these needs is made greatly more difficult when utilizing…
ipconfig–virtual ethernets and real ethernets, docker networking daemon
When you run docker on your local host, you get a NAT network for free. This comes with a private address space. To view the details of this network, just…
Publishing to WordPress Blog Fails with 404 or 406 error
Resolution 0 Make sure there isn't a blank line as the first line of your wordpress post. This is a security exception and the post will not be published (via…
Firewall Rules using Powershell
I had to test something out where I needed to make sure the right ports were not being blocked by the windows firewall. In this example, I use port 8080.…
Questions to ask for an AD customer and AD Recommendations
How many domains in all, are in play? If there are multiple domains, what is the purpose of each domain? How may Domain Controllers per domain (in general, it is…
Docker Install Uninstall Issues
Installing / Uninstalling DockerIf docker engine (daemon) does not start up — Install-Package -Name docker -ProviderName DockerMsftProvider -verbose (from an admin PS prompt)To completely remove docker desktop from your Windows 10/…
Inspecting Running Containers (Docker Containers)
These are some of the shortcuts for inspecting running containers. First, of course, get the ID of the running containerdocker container ls -a (show me all the running containers on…