Lets move on from 5 min Logic App Azure Table Storage Connector Azure Table Storage – Connectors | Microsoft Docs Azure Table storage is a service that stores structured NoSQL data in the cloud, providing a key/attribute store with a schemaless design https://docs.microsoft.com/en-us/rest/api/storageservices/understanding-the-table-service-data-model PartitionKey Property: A table’s entities are organized by partition. A partition is…
Blog
5 min Logic App PSQL
If we move on from 5 min Logic App – e-lo [IT Engineer life] (follow-e-lo.com) Lets add a Postgres Database. Install from market, then we get Now let’s edit the logic app, and postgres connector You get, delete, get, insert and much more. lets do insert, but first set connection I have already create a…
5 min Logic App
https://docs.microsoft.com/en-us/azure/logic-apps/logic-apps-overview#key-terms Azure Logic Apps is a cloud-based platform for creating and running automated workflows that integrate your apps, data, services, and systems. With this platform, you can quickly develop highly scalable integration solutions for your enterprise and business-to-business (B2B) scenarios. Key terms A logic app is the Azure resource you create when you want to…
5 MIN Azure Data Explorer
Azure Data Explorer documentation | Microsoft Docs
TODO Build a Hash Table in Python With TDD Real Python
Build a Hash Table in Python With TDD Real Python https://realpython.com/python-hash-table/ Classic data structure Indexing database tables Caching computed values Implementing sets O(1) Python own hash table dict O(n) or O(1), you might say…. https://stackoverflow.com/questions/9214353/hash-table-runtime-complexity-insert-search-and-delete
RFC-6125 TLS, MTLS
Representation and Verification of Domain-Based Application ServiceIdentity within Internet Public Key Infrastructure Using X.509 (PKIX)Certificates in the Context of Transport Layer Security (TLS) Likewise, during TLSnegotiation, the server presents its notion of the service’s identityin the form of a public-key certificate that was issued by acertification authority (CA) in the context of the Internet PublicKey…
5 Min DocuWiki
dokuwiki [DokuWiki] DokuWiki is a simple to use and highly versatile Open Source wiki software that doesn’t require a database. It is loved by users for its clean and readable syntax. The ease of maintenance, backup and integration makes it an administrator’s favorite. Built in access controls and authentication connectors make DokuWiki especially useful in…
SSL Self signed OpenSSL (and online cryptography with key)
https – How to create self signed SSL certificate for test purposes? – Stack Overflow You can do this via openssl: Install openssl package (if you are using Windows, download binaries here). Generate private key: openssl genrsa 2048 > private.pem Generate the self signed certificate: openssl req -x509 -days 1000 -new -key private.pem -out public.pem If needed, create…
5 min Azure AD service accounts
Remember 5 min Security Management Identity Azure System assigned management identity User assigned management identity Now Lets look at: Governing Azure AD service accounts There are three types of service accounts in Azure Active Directory (Azure AD): managed identities service principals user accounts employed as service accounts. As you create these service accounts for automated…
Rabbitmq bidirectional shovel (GET/PUT) from VM1. VM2 server using SSL (VM1 SSL, client)
https://stackoverflow.com/questions/50045150/how-to-configure-rabbitmq-bidirectional-shovel-and-avoid-infinite-loop To simulate the scenario: VM1 setup:Deny inbound AMQP 5672 (NON-SSL) added to FWVM1 initiate connection over AMQP to VM1 (advanced.config file) (uses outbound 5672 to VM2) With two shovel in the advanced config VM2 setup:Allow inbound AMQP 5672 (NON-SSL) added to FWJust listener with empty advanced config Result:We can send data to VM2 from…