Rémy F.

Results 99 comments of Rémy F.

I'm currently porting wttr.in to an embedded platform which have a 80*68 terminal but does no binutils. Since it does not rely on Curl but on a custom HTTP client,...

@chubin Yeah, I found a way to tweak the font in order to get a narrow output (while keeping the Morning/Noon/Evening/Night). https://github.com/vitasdk/samples/pull/38 So now wttr.in work on the PSvita.

@chubin ### Photo: ![](https://user-images.githubusercontent.com/5113053/33538961-4f105006-d8c4-11e7-81b4-b032a2940af2.jpg) ### Screencap: ![](https://user-images.githubusercontent.com/5113053/33193681-b5b0e7d2-d0ca-11e7-846b-8a4b071ef49d.jpg) Sorry for derailing this thread

no Idea, maybe one of the CSI code was misunderstood, I'll investigate later :)

The PSVita does not have any "terminal emulator" (because it's a game console, and because debug are supposed to be send to the development host machine). So in order to...

@MightyPork Thanks for clearing that up, and for your patience. I've opened an issue https://github.com/chubin/rate.sx/issues/3 to ask for a unified unicode usage across all @chubin applications. I'll continue the discussion...

The webapp use `https://pipe.deezer.com/api` graphql endpoint to fetch it lyrics ```js await fetch("https://pipe.deezer.com/api", { headers: { authorization: "Bearer ...", "content-type": "application/json" }, method: "POST", body: JSON.encode({ operationName: "SynchronizedTrackLyrics", query: "...see...

More compact version ```sh ARL=abcdef12345678... JWT=$(curl -s 'https://auth.deezer.com/login/arl?i=c&jo=p&rto=n' -Hcookie:arl=$ARL -d '' | jq -r .jwt) curl -s https://pipe.deezer.com/api -H "authorization: Bearer $JWT" -Hcontent-type:application/json -d '{ "variables":{"trackId":"370334421"}, "query":"query($trackId:String\u0021){track(trackId:$trackId){lyrics{text}}}" }' | jq...

Yes, in your file example, channel number is made of 5 character `aaaaa` wich mean up to 7339040224 entries The only solution would be to store [the channel list](https://github.com/yne/vcd/blob/master/vcd.c#L47) as...

I made a [hashmap](https://github.com/yne/vcd/tree/hashmap) based version, but the ordering are not kept during listing so I won't merge https://github.com/yne/vcd/pull/19 for now but here is a built asset: [vcd.zip](https://github.com/yne/vcd/files/8784792/vcd.zip)