martin-foka

Results 5 comments of martin-foka

Hi, tabnine does not work for jupyter notebooks on VSCode? Have you guys find a workaround?

I use Alpine.js as a **workaround** for my Jinja templates. All you need for your loop are alpine attributes: ```python import eel @eel.expose def b(): return ["1", "2", "3"] @eel.expose...

I use tkinter and alpinejs to "upload files": hello.py: ```python import eel import tkinter from tkinter import filedialog as fd eel.init('web') @eel.expose def choose_file(): tkinter.Tk().withdraw() filename = fd.askopenfilename() return filename...

I encountered the same issue on my Linux server. Renaming the configuration folder to uppercase letters resolved the problem. The path to the config files on my virtual machine is...

I encountered the same issue and found a workaround. Here’s what I did: ```python workers = [ HelloWorker(task_definition_name='hello_task') ] configuration = Configuration() with TaskHandler(workers=workers, configuration=configuration) as task_handler: task_handler.start_processes() task_handler.join_processes() ```