6 Discussion / Question Topics

Remove Filter
Member Avatar for
Member Avatar for screenedcreamy

Implement a very basic scheduler for a multi-tenant solution using AWS lambda. Tenant A - Execution frequency - 5mins - calls(doMyJob - lambda function) Tenant B - Execution Frequency - 10mins - calls(doMyJob - lambda function) Tenant C - Execution Frequency - 10mins - calls(doMyJob - lambda function) This schedule …

0
47
Member Avatar for M.Waqas Aslam

Dear All , Hope everyone is fine. I have little question. We use this query normally in MSSQL select * from emp where empid in (1,2,3,4) How to write this query in lambda expression. Is there any way to perfrom above mentioned operation ? Best Regards

Member Avatar for pritaeas
0
165
Member Avatar for chophouse

I'm trying to design a lambda function that returns any line in a file that begins with any digit [0-9]. The point would be to return the whole line if it does, and skip any line if it doesn't. This is for log analysis where I want all the lines …

Member Avatar for Gribouillis
0
338
Member Avatar for Sifiso21031085

a method on how to return a boolean using lambda and its conditioned by two parameters

Member Avatar for ddanbe
0
124
Member Avatar for luofeiyu

[code] from Tkinter import * fields = 'Name', 'Job', 'Pay' def fetch(event,entries): for entry in entries: print 'Input => "%s"' % entry.get() # get text print event.widget def makeform(root, fields): entries = [] for field in fields: row = Frame(root) # make a new row lab = Label(row, width=5, text=field) …

Member Avatar for Tech B
0
236
Member Avatar for JoshuaBurleson

so I recently wrote a function that sorted using the last value in a tuple. Obviously this couldn't be done simply say sorted(tuples, key=tuples[-1]) because that is not a "legal" call. However I did run across, while trying to figure out how to make things like this work, the utilization …

Member Avatar for nabla2
0
578

The End.