copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
How to get a list of images on docker registry v2 - Stack Overflow This threads dates back a long time, the most recents tools that one should consider are skopeo and crane skopeo supports signing and has many other features, while crane is a bit more minimalistic and I found it easier to integrate with in a simple shell script
docker - DockerHub: sha digest doesnt match - Stack Overflow To get that digest, tools like regclient, crane, and skopeo can be used And buildx also includes docker buildx imagetools inspect that can do this, but note that it pulls the manifest which counts as an image pull for rate limits
How to execute a stored procedure within C# program I want to execute this stored procedure from a C# program I have written the following stored procedure in a SqlServer query window and saved it as stored1: use master go create procedure dbo
Convert a string to datetime in PowerShell - Stack Overflow If like me, you get the time string like this 20190720170000 000000+000 An important thing to note is you need to use ToUniversalTime() when using [System Management ManagementDateTimeConverter] otherwise you get offset times against your input
What is idempotency in HTTP methods? - Stack Overflow Idenpotent methods (GET,OPTIONS) don't change anything at the server (other than possibly adding log entries) Non-idempotent (PUT,POST,DELETE) methods change the data which is used to populate content in the web pages or effect change elsewhere (such as moving a crane, transferring funds, sending an email)
Displaying Windows command prompt output and redirecting it to a file Unfortunately there is no such thing Windows console applications only have a single output handle (Well, there are two STDOUT, STDERR but it doesn't matter here) The > redirects the output normally written to the console handle to a file handle
How to create a GUID UUID in Python - Stack Overflow If you're not going to bother using it in any UUID contexts, you may as well just use random getrandbits(128) to_bytes(16, 'little') or (for crypto randomness) os urandom(16) and get a full 128 bits of random (UUIDv4 uses 6-7 bits on version info)