powellnorma

Results 75 issues of powellnorma

For e.g. better interoperability with other tools, it would be helpful if one could just click a link like https://bettergpt.chat/import?messages=[{..},..] and it then opens that conversation in BetterChatGPT - What...

### Related problem https://github.com/AllenDang/giu/issues/170#issue-863120297 https://github.com/AllenDang/giu/issues/147#issuecomment-789963826 ### Your request It would be useful to be able to use the DirectX renderer, so that the GUI starts even if no "real" GPU...

enhancement

When I trigger a kernel crash via `echo c > /proc/sysrq-trigger`, normally `/sys/fs/pstore` gets filled with 3 files: ``` sunfish:/ # ls /sys/fs/pstore/ console-ramoops-0 dmesg-ramoops-0 pmsg-ramoops-0 ``` But when Magisk...

confirmed
core

Is it possible to preload a model without actually using it? For example if the users starts typing his request, it would be useful to be able to "preload" the...

documentation

This causes Window to display `0.0.0.0` under "Details > File Version". For some reason `--product-version` "works", even though it doesn't set `fixed.product_version` either (checked via resource hacker)

With code like this: ``` async with DB.transaction(): await Band.insert(Band(name="test1")) assert False await Band.insert(Band(name="test2")) ``` Band "test1" is still inserted. Is there a way to make the transaction "really atomic"?...

Hi, sometimes I get the above exception. Once it happens, all following DB Queries are raising this exception, so I have to restart the entire web app. The Trace-Back looks...

Let's say I have ```python class Subject(Table): name = Varchar() class Event(Table): subject = ForeignKey(Subject) timestamp = Timestamptz() data = JSONB() ``` How can I fetch all Subject with corresponding...

When storing a string into a JSONB column I get: ``` asyncpg.exceptions.InvalidTextRepresentationError: invalid input syntax for type json ``` I guess it is because somewhere piccolo assumes that if the...

I noticed that when multiple concurrent executions of my `add_list` coroutine overlap, occasionally I get `UniqueViolationError`. I initially thought this was protected against by using a transaction. But it seems...