Skip to content Skip to sidebar Skip to footer
Showing posts with the label C#

Running Python Script From Azure Webjob

I'm trying to run python script from Azure webjob. This is what I've done following this li… Read more Running Python Script From Azure Webjob

C# Regex "verbose" Like In Python

In Python, we have the re.VERBOSE argument that allows us to nicely format regex expressions and in… Read more C# Regex "verbose" Like In Python

C# Equivalent Of Rotating A List Using Python Slice Operation

In python, I can take a list my_list and rotate the contents: >>> my_list = list(range(10)… Read more C# Equivalent Of Rotating A List Using Python Slice Operation

How Can You Create A Signature Field For A Pdf Template?

I have been searching through itextsharp classes: http://api.itextpdf.com/itext/ And I found that y… Read more How Can You Create A Signature Field For A Pdf Template?

Publish With Python To Azure Iot Hub - Subscribe With C# Not Working

I publish with M2MQTT Paho Python library on the device as follows: msg = 'POS {} {} {} {} … Read more Publish With Python To Azure Iot Hub - Subscribe With C# Not Working

In Managed Code, How Do I Achieve Good Locality Of Reference?

Since RAM seems to be the new disk, and since that statement also means that access to memory is no… Read more In Managed Code, How Do I Achieve Good Locality Of Reference?

Convert String To Base 64 From Sha1 Hash In Python

I have a small C# function that I want to use in Python. However Im not sure how to use hashlib to … Read more Convert String To Base 64 From Sha1 Hash In Python

Advice For C# Programmer Writing Python

I've mainly been doing C# development for the past few years but recently started to do a bit o… Read more Advice For C# Programmer Writing Python