Israel
banner
uwemneku.bsky.social
Israel
@uwemneku.bsky.social
…..
Currently reading “There was a country” by Chinua Achebe.
October 25, 2025 at 9:49 PM
Easy to prototype solution. The reanimated library is able to produce smooth animations though
April 16, 2025 at 2:54 PM
Reminded of this when doing a challenge on codewars. Got frustrated for a long time only to realized I needed to use replaceAll and not replace
February 27, 2025 at 1:04 PM
What rust framework would you recommend for frontend?
February 2, 2025 at 9:08 PM
Amazing project, love the idea.
January 31, 2025 at 3:14 PM
```
type Wrap<T> = {
[Key in keyof T]: T extends {length:number} ? Promise<T[Key]> : null
};

// type _ = Wrap<['a', 'b']>;
// [Promise<"a">, Promise<"b">]

// type _ = Wrap<{0:"a", 1:"b"}>;
// { 0: null; 1: null }
```
January 25, 2025 at 7:24 PM