celsowm

Results 26 comments of celsowm

> This is the same issue as #16588 Any suggestion for a quick fix? (In my case)

> Why do you need the connection from C => A? Can't you get the the associated A record from C via C->B->A? This A,B,C situation is just a simplified...

We could remove all ...join... Methods from Query and put them in a Trait and use/import them in Query

> Why can't you use call this with the existing `FunctionsBuilder`? I thought would by nice since sqlite does not have a native one and Cake's ORM would help the...

> I think having a function wrapper for this seems reasonable if we can come up with a solution for SQLite. I would add something like: ```php public function concatWithSeparator(string...

> ```sql > PARTITION > ``` Which SGBD is it? Is there an equivalent for all main SGBDs (mysql, sqlserver, postgres and sqlite) ?

I've tried this: ``` import pdf2textlib, os, sys from pathlib import Path poppler_path = os.path.join(Path().absolute(),'vendor','poppler','bin') env = os.environ.copy() if env.get("LD_LIBRARY_PATH") is None: os.environ["PATH"] = poppler_path sys.path.append(poppler_path) print(env.get("LD_LIBRARY_PATH")) print(pdf2textlib.getText("pdfa.pdf","por")) ```

> Olá, @celsowm! Bom te ver por aqui novamente. Espero que esteja tudo bem contigo! > > It seems like you're trying to replicate the same behavior from LlamaCPP in...

Hi ! Is it possible to add header and footer without the risk of "overlapping" the original content? Something like php's mpdf? Thanks in advance !