Alexander Tesfamichael

Results 103 comments of Alexander Tesfamichael

It does. I was talking about interactive mode. Should've clarified this. After thinking about this more, I believe that you're precisely right. 1. Either you know what you're looking for...

@stroncium I would say let's start with figuring out what the value is for the user here. That should be both simpler and more valuable than working backwards from how...

We have a deploy flow where anything tagged with `stag-` or `prod-` is deployed to those respective environments. That means that every time we need to build an image to...

@rturrado if you mean "what has been built" no, you'd have to upload and download it yourself. In my case we build and push a docker image, later steps just...

aha, this library can animate strings with numbers, even something like `rgb(0,100,0)`. Well, that explains. Definitely parsing the number out of the string and updating with what is thought to...

Woohooo, found a workaround 🙌 . I doubt anyone else is troubled by this haha, but after days and days of incredibly hard work I'm v. glad the next version...

this solves it for me, perhaps it can help others or even update the imports so they work with ts/ESM. ```ts import urlcatM from "urlcat"; const urlcat = (urlcatM as...

This is getting annoying 🙁 . This is a great lib but importing it is kinda the minimum, and it doesn't work with the modern TS + ESM setup (unless...

I see some 👍 have piled up 😅 . For others in need, I wrote a lib that does the bare minimum. https://github.com/alextes/url-sub I wouldn't recommend getting behind that one...

Sure @chanks and others landing here. How's this? [playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=242f648393ad95f0143988d29300c345) ```rust use serde::{Deserialize, Deserializer}; pub fn from_u128_str, { let s: String = Deserialize::deserialize(deserializer)?; Ok(u128::from_str_radix(&s, 10).unwrap()) } #[derive(Debug, Deserialize)] pub struct Block...