luveti

Results 11 comments of luveti

In case anyone else runs into this issue, you can use `rowexec` instead as it doesn't perform any splitting. It basically acts like `sqlite3_exec` but with less features.

The issue I was having was getting the packaged bootstrap styles to show. I managed to get this to work by adding this code to the style section of my...

Thanks for the suggestions @tvld! :)

It looks like a library that can create and manage TLS contexts now exists! https://github.com/neoxic/lua-mbedtls (docs links https://github.com/neoxic/lua-mbedtls/blob/master/doc/ssl.md)

Hey @daurnimator, looks like I forgot to mention that the device is sitting behind a captive portal, which hasn't been "signed into" yet. I set up a raspberry pi 3...

As a temporary work around, I ended up moving all my HTTP requests into threads (using a task queue I've had for a while). This worked pretty well for a...

I've been poking around at the internals of cqueues and I'm starting to think there may be a leak somewhere in the dns logic under `so_open`. If I pass an...

Hello, how do you go about detecting discontinuous sequences of raw frames? My company is using V4L2 to directly read the raw frames, but the sequence number returned by the...

That seems to have fixed the issue. Thank you!

Poking around a bit, it looks like using the following works: ```rust pub fn app() -> Element { let mut num = use_server_future(get_next_number); rsx! { div { onclick: move |e|...