@cnx Make me a favor please, open an issue in #guix and send me an email in copy. I'll try to fix.
@pjotrprins @civodul
Notices by Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social), page 19
-
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Sunday, 22-Oct-2023 20:37:39 CEST Ekaitz Zárraga 👹
-
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Sunday, 22-Oct-2023 16:34:12 CEST Ekaitz Zárraga 👹
@jartigag @zital La flecha es un acceso a un miembro de la estructura a la que el puntero state apunta.
typedef struct {int a;} STRUCTURA;
STRUCTURA my_struct;
my_struct.a // es el campo a de la estructura.STRUCTURA *puntero;
puntero = &my_struct;
puntero->a // es el campo a de la estuctura`state` en el programa es el estado de tu watch-face. Te lo dan ellos como argumento de entrada a la funcion, pero es un puntero a tu estructura de datos.
-
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Saturday, 21-Oct-2023 16:39:32 CEST Ekaitz Zárraga 👹
@gorka_bm poliziaren logoa inkautatutako elementua da edo polizaren zigilua jartzeko da?
-
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Saturday, 21-Oct-2023 01:39:49 CEST Ekaitz Zárraga 👹
@jartigag https://github.com/joeycastillo/Sensor-Watch/pull/305
cc @zital
-
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Saturday, 21-Oct-2023 01:17:18 CEST Ekaitz Zárraga 👹
@civodul Even with the thousands of ideas you probably have, you are the nicest person in the earth.
I've seen the mailing list. ❤️
-
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Friday, 20-Oct-2023 18:49:42 CEST Ekaitz Zárraga 👹
@arnelson This helps to be used later and you don't need comments because almost everything is obvious.
(the algorithm here is horrible, but anyway... it's readable)
-
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Friday, 20-Oct-2023 18:44:19 CEST Ekaitz Zárraga 👹
@arnelson
Probably something like this: short functions with obvious names. -
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Friday, 20-Oct-2023 17:46:45 CEST Ekaitz Zárraga 👹
Writing #C code like if it was #scheme.
Everything is more understandable. -
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Friday, 20-Oct-2023 17:46:32 CEST Ekaitz Zárraga 👹
Writing #C code as if was #scheme.
Everything is more understandable. -
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Friday, 20-Oct-2023 17:29:00 CEST Ekaitz Zárraga 👹
-
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Friday, 20-Oct-2023 17:27:37 CEST Ekaitz Zárraga 👹
@jartigag http://www.c25k.com/ eso pero en el reloj:
-
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Friday, 20-Oct-2023 15:19:21 CEST Ekaitz Zárraga 👹
@daviwil @abcdw Next, if you want to try it, interview me about the RISC-V bootstrapping process lol
-
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Friday, 20-Oct-2023 11:18:56 CEST Ekaitz Zárraga 👹
@pancake Good question!
I think it's they are invested in some kind of rubbish like m4a or something. -
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Thursday, 19-Oct-2023 21:46:39 CEST Ekaitz Zárraga 👹
@postroutine @abcdw @daviwil i think they mean 17.3 or more recent.
-
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Thursday, 19-Oct-2023 21:42:43 CEST Ekaitz Zárraga 👹
@postroutine @abcdw @daviwil Yes I just read it!
Thanks for the correction! -
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Thursday, 19-Oct-2023 21:42:00 CEST Ekaitz Zárraga 👹
@postroutine @abcdw @daviwil Yes, for WebRTC you need a server but is *any* server ok?
-
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Thursday, 19-Oct-2023 21:20:27 CEST Ekaitz Zárraga 👹
@postroutine @abcdw @daviwil I don't know very well how it works. If you know better, please tell!
-
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Thursday, 19-Oct-2023 21:18:53 CEST Ekaitz Zárraga 👹
-
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Thursday, 19-Oct-2023 20:27:46 CEST Ekaitz Zárraga 👹
@zital erlojurako app bat garatu dut.
Ez dakit ondo ibiliko den baina egin dut... instalatu behar dut jakiteko... Simulatzaile bat dago baina emscripten ez dago #guix-entzat paketizatuta eta ez daukat denborarik mierdetan xahutzeko.Egingo dut zuzeneko bat (ez dakit noiz oraindik) eta ikusiko dugu ea nola doan.
-
Ekaitz Zárraga 👹 (ekaitz_zarraga@mastodon.social)'s status on Thursday, 19-Oct-2023 20:25:16 CEST Ekaitz Zárraga 👹
@mdhughes @brokenix yes!
It's just recursion on a tail call:This is a tail call:
function f(){
return f();
}This is not:
function f(){
return 1 + f();
}The concept is easy.