Alex Băluț

Results 61 comments of Alex Băluț

Maybe you can save the terminal paths on the FPC strips by adding some solder to each, to make them thicker.

Can be worked around with: ```rust use futures::stream::{empty, StreamExt}; use std::future::ready; use std::sync::Arc; fn send(_: T) {} fn main() { // send(async { empty().map(ready::).buffered(0).next().await }); let sem = Arc::new(tokio::sync::Semaphore::new(5)); send(async...

Is this an issue with Macs only? I can wake up my Linux from sleep just fine with a KB133+kintlc.

There is a `TextStyleBuilder`, see https://docs.rs/plotters/latest/plotters/style/trait.IntoTextStyle.html It can be confusing when typing by mistake `with_color` instead of `color`: ``` let text_style = plotters::style::text::TextStyle::from(("sans-serif", 20).into_font()) .with_color(&BLUE); ``` ..because you expect a...

> Looks like the code is there, but I don't know whether there are some bugs. > > https://github.com/go-gitea/gitea/blob/main/routers/web/repo/issue.go#L634-L644 https://github.com/go-gitea/gitea/blob/e962ade99cfd0471273f3dcf956c7cd222472758/routers/web/repo/issue.go#L634-L644 Which part of that code should allow me to remove...

If cost is a concern, it also works with Teensy LC.

You can have three leds controllable with Teensy LC. Teensy 4.1 would allow to control all four. What else can you do with it and not with LC? If "4.1...

"currently" is used incorrectly in the first paragraph. Also the title, maybe: "Support sending notification emails as the person who made the change"

Currently the notification emails are sent from a unique email address. (In my team we want the opposite)

The original description of the issue is confusing, the two paragraphs are contradicting each other.