Python

5 min Azure Functions compute with powershell 4 steps (az login)

Can multiple azure functions be created in the same project? – Microsoft Q&A Yes, you can have multiple functions inside the same functionApp. One thing is, the functions will share the same resources e.g., pricing plan, runtime version, storage, appInsights, deployment method, etc. Our old function project Lets add another function, for reading messages in

5 min Azure Functions compute with powershell 4 steps (az login) Read Post »

5 min Python

Callback

Python Callback Function – Python Examples A callback is a function that is passed as an argument to other function. This other function is expected to call this callback function in its definition. The point at which other function calls our callback function depends on the requirement and nature of other function. Callback Functions are

Callback Read Post »

5 min Python

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

TODO Build a Hash Table in Python With TDD Real Python Read Post »

Azure Python

Measure your VM with typeperf (Pandas py) perfmon

Azure disk-types https://docs.microsoft.com/en-us/azure/virtual-machines/disks-types Ultra, Premium SSD, Standard SSD, Standard HDD. Max disk size 65,536 gibibyte (GiB) 32,767 GiB 32,767 GiB 32,767 GiB Max throughput 2,000 MB/s 900 MB/s 750 MB/s 500 MB/s Max IOPS 160,000 20,000 6,000 2,000 Premium SSD Azure premium SSDs deliver high-performance and low-latency disk support for virtual machines (VMs) with input/output

Measure your VM with typeperf (Pandas py) perfmon Read Post »

Scroll to Top