Gianguido Sorà

Results 12 issues of Gianguido Sorà

### Version 1.10.0 ### What happened? Given the following query: ```sql WITH q AS ( SELECT authors.name, authors.bio FROM authors LEFT JOIN fake ON authors.name = fake.name ) SELECT *...

bug
:books: postgresql
:wrench: golang
:computer: linux

The following program `sample.go` triggers a panic: ```go package main import ( "github.com/containous/yaegi/interp" "github.com/containous/yaegi/stdlib" ) var a = ` package main import ( "fmt" "reflect" ) type f struct{} func...

bug
area/core

Right now Spotify groups user's music under the "Your Music" tab. A similar implementation could be useful, since not everyone keeps all of its preferred music in playlists.

enhancement
ui

This PR draws a Wi-Fi signal bar with 5 bars (lowest to highest signal), to the right of SSID name. Signal power is calculated from a lowest of -90dBm to...

Doing a suspend/resume cycle in Renode most of the times results in the following error, followed by a system reset: ``` 11:48:59.5546 [ERROR] SoC/wdt: Watchdog timer expired -- requesting system...

As part of the USB mass storage exploration, I built a proof of concept app that ties PDDB keys to a mass storage disk's LBA: https://github.com/gsora/xous-core/tree/gsora/pddbdisk. Each read/write call to...

I added swiftformat as a linting target in my Xcode (version 15) project, as a Swift package. While the target runs fine, I see the following error: `warning: 'buildtools': Source...

Hi! Due to a third-party dependency, a software I work on needs at least Debian Bookworm to compile correctly (C++ stdlib fails to link otherwise). Is there a way I...

Given a codec, users might want to know what's the Amino type associated with a given struct instance. This commit adds the functionality needed to do that, for both instance...