home.social

#key — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #key, aggregated by home.social.

  1. [#TRADESHOW] The 2026 #China (#Taizhou) #International #Auto #Parts & #Aftermarket #Service #Fair (#TAPAS) will be held from May 22 to 24, 2026, at Taizhou International #Exhibition #Centre. The #expo #event is positioned as a #key #trade #platform for the #auto parts, aftermarket services, new energy vehicles, and #motorcycle parts #sectors, bringing together #leading #manufacturers and #industry professionals in one of China’s #important #automotive production regions. cnbusinessforum.com/event/2026

  2. [#TRADESHOW] The 2026 #China (#Taizhou) #International #Auto #Parts & #Aftermarket #Service #Fair (#TAPAS) will be held from May 22 to 24, 2026, at Taizhou International #Exhibition #Centre. The #expo #event is positioned as a #key #trade #platform for the #auto parts, aftermarket services, new energy vehicles, and #motorcycle parts #sectors, bringing together #leading #manufacturers and #industry professionals in one of China’s #important #automotive production regions. cnbusinessforum.com/event/2026

  3. Following the meeting of the Coalition Committee, Dirk Wiese, Director of Parliamentary Affairs for the SPD, stated that the alliance between the Union and the... news.osna.fm/?p=45835 | #news #after #coalition #discussions #key

  4. Following the meeting of the Coalition Committee, Dirk Wiese, Director of Parliamentary Affairs for the SPD, stated that the alliance between the Union and the... news.osna.fm/?p=45835 | #news #after #coalition #discussions #key

  5. Following the meeting of the Coalition Committee, Dirk Wiese, Director of Parliamentary Affairs for the SPD, stated that the alliance between the Union and the... news.osna.fm/?p=45835 | #news #after #coalition #discussions #key

  6. Following the meeting of the Coalition Committee, Dirk Wiese, Director of Parliamentary Affairs for the SPD, stated that the alliance between the Union and the... news.osna.fm/?p=45835 | #news #after #coalition #discussions #key

  7. Global Warming Facts: Key Impacts on Nature and Human Life

    Global warming is no longer a distant problem people only hear about in documentaries or science reports. It…
    #Climate #ClimateChange #Climate-Change #And #climatechange #facts #global #globalwarming #human #impacts #key #life #nature #ON #warming
    europesays.com/2983407/

  8. Key最新作『anemoi』の浴びるほど濃厚な家族愛で超泣いてる。ブランド初となる実妹メインヒロインの「重すぎる愛」で、兄としての自覚を叩き込まれる日々。やっぱりKeyの描く家族は最高だ
    news.denfaminicogamer.jp/kikak

    #denfaminicogamer #PC #Key #レビュー #ビジュアルアーツ #anemoi #アネモイ #特集記事 #インプレッション

  9. Key最新作『anemoi』の浴びるほど濃厚な家族愛で超泣いてる。ブランド初となる実妹メインヒロインの「重すぎる愛」で、兄としての自覚を叩き込まれる日々。やっぱりKeyの描く家族は最高だ
    news.denfaminicogamer.jp/kikak

    #denfaminicogamer #PC #Key #レビュー #ビジュアルアーツ #anemoi #アネモイ #特集記事 #インプレッション

  10. [#TRADESHOW] The 2026 #China (#Taizhou) #International #Auto #Parts & #Aftermarket #Service #Fair (#TAPAS) will be held from May 22 to 24, 2026, at Taizhou International #Exhibition #Centre. The #expo #event is positioned as a #key #trade #platform for the #auto parts, aftermarket services, new energy vehicles, and #motorcycle parts #sectors, bringing together #leading #manufacturers and #industry professionals in one of China’s #important #automotive production regions. cnbusinessforum.com/event/2026

  11. [#TRADESHOW] The 2026 #China (#Taizhou) #International #Auto #Parts & #Aftermarket #Service #Fair (#TAPAS) will be held from May 22 to 24, 2026, at Taizhou International #Exhibition #Centre. The #expo #event is positioned as a #key #trade #platform for the #auto parts, aftermarket services, new energy vehicles, and #motorcycle parts #sectors, bringing together #leading #manufacturers and #industry professionals in one of China’s #important #automotive production regions. cnbusinessforum.com/event/2026

  12. @sigue wrote:

    «BTW, I don't want you to get the feeling that I'm making this a competition between CL and Dylan here. I actually really enjoy that you're making me think about how I might do some of this stuff in Dylan.»

    Oh, I did not and do not view this as a competition, not at all.
    And I am glad to learn a little bit about Dylan.

    «This specific example is pretty straight-forward in Dylan:

    let t = make(<table>);
    t[#"foo"] := 1 + element(t, #"foo", default: 0);
    // => 1»

    Thank you.
    Yes, that is how I do it in Python, too, when I need it (there are some minor syntactic differences, of course):
    t['foo'] = 1 + t.get('foo', 0)

    «In theory we could add `#key default` to the element-setter generic function and then this would work:

    inc!(element(t, #"foo", default: 0));

    One could also imagine syntax to supply a default value to t[k] such as t[k; d], and then this would work:

    inc!(t[#"foo"; 0])»

    Thank you; at the very least this is an interesting little exercise.

    «A while ago I wrote up a proposal for an extension to Dylan that would provide similar functionality in opendylan.org/proposals/dep-00 I think it needs work but it gets the idea across.»

    I'm sure this is fun to work on.
    Otherwise, I am just a side observer here, of course (regarding justification, acceptance, etc.).

    «One might point out that the awesome thing about CL is that this can be done in-language instead of needing to modify the compiler. :)»

    Oh, yes, oh, yes!

    #CommonLisp
    #Dylan

  13. @sigue wrote:

    «BTW, I don't want you to get the feeling that I'm making this a competition between CL and Dylan here. I actually really enjoy that you're making me think about how I might do some of this stuff in Dylan.»

    Oh, I did not and do not view this as a competition, not at all.
    And I am glad to learn a little bit about Dylan.

    «This specific example is pretty straight-forward in Dylan:

    let t = make(<table>);
    t[#"foo"] := 1 + element(t, #"foo", default: 0);
    // => 1»

    Thank you.
    Yes, that is how I do it in Python, too, when I need it (there are some minor syntactic differences, of course):
    t['foo'] = 1 + t.get('foo', 0)

    «In theory we could add `#key default` to the element-setter generic function and then this would work:

    inc!(element(t, #"foo", default: 0));

    One could also imagine syntax to supply a default value to t[k] such as t[k; d], and then this would work:

    inc!(t[#"foo"; 0])»

    Thank you; at the very least this is an interesting little exercise.

    «A while ago I wrote up a proposal for an extension to Dylan that would provide similar functionality in opendylan.org/proposals/dep-00 I think it needs work but it gets the idea across.»

    I'm sure this is fun to work on.
    Otherwise, I am just a side observer here, of course (regarding justification, acceptance, etc.).

    «One might point out that the awesome thing about CL is that this can be done in-language instead of needing to modify the compiler. :)»

    Oh, yes, oh, yes!

    #CommonLisp
    #Dylan

  14. @sigue wrote:

    «BTW, I don't want you to get the feeling that I'm making this a competition between CL and Dylan here. I actually really enjoy that you're making me think about how I might do some of this stuff in Dylan.»

    Oh, I did not and do not view this as a competition, not at all.
    And I am glad to learn a little bit about Dylan.

    «This specific example is pretty straight-forward in Dylan:

    let t = make(<table>);
    t[#"foo"] := 1 + element(t, #"foo", default: 0);
    // => 1»

    Thank you.
    Yes, that is how I do it in Python, too, when I need it (there are some minor syntactic differences, of course):
    t['foo'] = 1 + t.get('foo', 0)

    «In theory we could add `#key default` to the element-setter generic function and then this would work:

    inc!(element(t, #"foo", default: 0));

    One could also imagine syntax to supply a default value to t[k] such as t[k; d], and then this would work:

    inc!(t[#"foo"; 0])»

    Thank you; at the very least this is an interesting little exercise.

    «A while ago I wrote up a proposal for an extension to Dylan that would provide similar functionality in opendylan.org/proposals/dep-00 I think it needs work but it gets the idea across.»

    I'm sure this is fun to work on.
    Otherwise, I am just a side observer here, of course (regarding justification, acceptance, etc.).

    «One might point out that the awesome thing about CL is that this can be done in-language instead of needing to modify the compiler. :)»

    Oh, yes, oh, yes!

    #CommonLisp
    #Dylan

  15. @sigue wrote:

    «BTW, I don't want you to get the feeling that I'm making this a competition between CL and Dylan here. I actually really enjoy that you're making me think about how I might do some of this stuff in Dylan.»

    Oh, I did not and do not view this as a competition, not at all.
    And I am glad to learn a little bit about Dylan.

    «This specific example is pretty straight-forward in Dylan:

    let t = make(<table>);
    t[#"foo"] := 1 + element(t, #"foo", default: 0);
    // => 1»

    Thank you.
    Yes, that is how I do it in Python, too, when I need it (there are some minor syntactic differences, of course):
    t['foo'] = 1 + t.get('foo', 0)

    «In theory we could add `#key default` to the element-setter generic function and then this would work:

    inc!(element(t, #"foo", default: 0));

    One could also imagine syntax to supply a default value to t[k] such as t[k; d], and then this would work:

    inc!(t[#"foo"; 0])»

    Thank you; at the very least this is an interesting little exercise.

    «A while ago I wrote up a proposal for an extension to Dylan that would provide similar functionality in opendylan.org/proposals/dep-00 I think it needs work but it gets the idea across.»

    I'm sure this is fun to work on.
    Otherwise, I am just a side observer here, of course (regarding justification, acceptance, etc.).

    «One might point out that the awesome thing about CL is that this can be done in-language instead of needing to modify the compiler. :)»

    Oh, yes, oh, yes!

    #CommonLisp
    #Dylan

  16. [#TRADESHOW] The 2026 #China (#Taizhou) #International #Auto #Parts & #Aftermarket #Service #Fair (#TAPAS) will be held from May 22 to 24, 2026, at Taizhou International #Exhibition #Centre. The #expo #event is positioned as a #key #trade #platform for the #auto parts, aftermarket services, new energy vehicles, and #motorcycle parts #sectors, bringing together #leading #manufacturers and #industry professionals in one of China’s #important #automotive production regions. cnbusinessforum.com/event/2026

  17. [#TRADESHOW] The 2026 #China (#Taizhou) #International #Auto #Parts & #Aftermarket #Service #Fair (#TAPAS) will be held from May 22 to 24, 2026, at Taizhou International #Exhibition #Centre. The #expo #event is positioned as a #key #trade #platform for the #auto parts, aftermarket services, new energy vehicles, and #motorcycle parts #sectors, bringing together #leading #manufacturers and #industry professionals in one of China’s #important #automotive production regions. cnbusinessforum.com/event/2026

  18. EL DOCTOR QUE AMÓ A UN CADÁVER | 07x37
    El caso real de Carl Tanzler, el médico de Florida que se enamoró de su paciente Elena de Hoyos, la desenterró tras su muerte y convivió con su cuerpo durante siete años.
    luisbermejo.com/carl-tanzler-e
    #alemania #almería #bombas-nucleares #casos-reales #contaminación #crimen #encubrimiento #españa #espionaje #hinterkaifeck #key-west #misterio #necrofilia #obsesión #ondacorta #palomares #plutonio #radio #rusia #TheBuzzer #TrueCrime #UVB-76 #podcast #NoSoyOriginal

  19. EL DOCTOR QUE AMÓ A UN CADÁVER | 07x37
    El caso real de Carl Tanzler, el médico de Florida que se enamoró de su paciente Elena de Hoyos, la desenterró tras su muerte y convivió con su cuerpo durante siete años.
    luisbermejo.com/carl-tanzler-e
    #alemania #almería #bombas-nucleares #casos-reales #contaminación #crimen #encubrimiento #españa #espionaje #hinterkaifeck #key-west #misterio #necrofilia #obsesión #ondacorta #palomares #plutonio #radio #rusia #TheBuzzer #TrueCrime #UVB-76 #podcast #NoSoyOriginal

  20. EL DOCTOR QUE AMÓ A UN CADÁVER | 07x37
    El caso real de Carl Tanzler, el médico de Florida que se enamoró de su paciente Elena de Hoyos, la desenterró tras su muerte y convivió con su cuerpo durante siete años.
    luisbermejo.com/carl-tanzler-e
    #alemania #almería #bombas-nucleares #casos-reales #contaminación #crimen #encubrimiento #españa #espionaje #hinterkaifeck #key-west #misterio #necrofilia #obsesión #ondacorta #palomares #plutonio #radio #rusia #TheBuzzer #TrueCrime #UVB-76 #podcast #NoSoyOriginal

  21. EL DOCTOR QUE AMÓ A UN CADÁVER | 07x37
    El caso real de Carl Tanzler, el médico de Florida que se enamoró de su paciente Elena de Hoyos, la desenterró tras su muerte y convivió con su cuerpo durante siete años.
    luisbermejo.com/carl-tanzler-e
    #alemania #almería #bombas-nucleares #casos-reales #contaminación #crimen #encubrimiento #españa #espionaje #hinterkaifeck #key-west #misterio #necrofilia #obsesión #ondacorta #palomares #plutonio #radio #rusia #TheBuzzer #TrueCrime #UVB-76 #podcast #NoSoyOriginal

  22. EL DOCTOR QUE AMÓ A UN CADÁVER | 07x37
    El caso real de Carl Tanzler, el médico de Florida que se enamoró de su paciente Elena de Hoyos, la desenterró tras su muerte y convivió con su cuerpo durante siete años.
    luisbermejo.com/carl-tanzler-e
    #alemania #almería #bombas-nucleares #casos-reales #contaminación #crimen #encubrimiento #españa #espionaje #hinterkaifeck #key-west #misterio #necrofilia #obsesión #ondacorta #palomares #plutonio #radio #rusia #TheBuzzer #TrueCrime #UVB-76 #podcast #NoSoyOriginal

  23. [#TRADESHOW] The 2026 #China (#Taizhou) #International #Auto #Parts & #Aftermarket #Service #Fair (#TAPAS) will be held from May 22 to 24, 2026, at Taizhou International #Exhibition #Centre. The #expo #event is positioned as a #key #trade #platform for the #auto parts, aftermarket services, new energy vehicles, and #motorcycle parts #sectors, bringing together #leading #manufacturers and #industry professionals in one of China’s #important #automotive production regions. cnbusinessforum.com/event/2026

  24. [#TRADESHOW] The 2026 #China (#Taizhou) #International #Auto #Parts & #Aftermarket #Service #Fair (#TAPAS) will be held from May 22 to 24, 2026, at Taizhou International #Exhibition #Centre. The #expo #event is positioned as a #key #trade #platform for the #auto parts, aftermarket services, new energy vehicles, and #motorcycle parts #sectors, bringing together #leading #manufacturers and #industry professionals in one of China’s #important #automotive production regions. cnbusinessforum.com/event/2026

  25. [#TRADESHOW] The 2026 #China (#Taizhou) #International #Auto #Parts & #Aftermarket #Service #Fair (#TAPAS) will be held from May 22 to 24, 2026, at Taizhou International #Exhibition #Centre. The #expo #event is positioned as a #key #trade #platform for the #auto parts, aftermarket services, new energy vehicles, and #motorcycle parts #sectors, bringing together #leading #manufacturers and #industry professionals in one of China’s #important #automotive production regions. cnbusinessforum.com/event/2026

  26. [#TRADESHOW] The 2026 #China (#Taizhou) #International #Auto #Parts & #Aftermarket #Service #Fair (#TAPAS) will be held from May 22 to 24, 2026, at Taizhou International #Exhibition #Centre. The #expo #event is positioned as a #key #trade #platform for the #auto parts, aftermarket services, new energy vehicles, and #motorcycle parts #sectors, bringing together #leading #manufacturers and #industry professionals in one of China’s #important #automotive production regions. cnbusinessforum.com/event/2026

  27. [#TRADESHOW] The 2026 #China (#Taizhou) #International #Auto #Parts & #Aftermarket #Service #Fair (#TAPAS) will be held from May 22 to 24, 2026, at Taizhou International #Exhibition #Centre. The #expo #event is positioned as a #key #trade #platform for the #auto parts, aftermarket services, new energy vehicles, and #motorcycle parts #sectors, bringing together #leading #manufacturers and #industry professionals in one of China’s #important #automotive production regions. cnbusinessforum.com/event/2026