GNU social JP
  • FAQ
  • Login
GNU social JPは日本のGNU socialサーバーです。
Usage/ToS/admin/test/Pleroma FE
  • Public

    • Public
    • Network
    • Groups
    • Featured
    • Popular
    • People

Notices by Yukkuri (iamtakingiteasy@eientei.org), page 4

  1. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Friday, 26-Sep-2025 05:08:49 JST Yukkuri Yukkuri
    in reply to
    • Lina Inver?e
    • menherahair
    • ​
    • BleachChan
    @dorkvalized @lina @menherahair @BleachChan At least ~5 years ago they were adamant of "блять" being just an incorrect spelling, which is understandable given their reliance on [printable] sources. Either way, it predates zoomers by great margin, being in wide use throughout the late 90s and 00s at very least. Which is probably indicative that past generations never had to deal with internet chats - you can't do away with spelling distinction without providing at least a sentence worth of context.
    In conversation about 6 months ago from eientei.org permalink
  2. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Friday, 26-Sep-2025 04:32:09 JST Yukkuri Yukkuri
    in reply to
    • Lina Inver?e
    • menherahair
    • ​
    • BleachChan
    @dorkvalized @lina @menherahair @BleachChan Regardless of what wikifaggots tend to think, "блять" works well as a distilled curse without ambiguity of whether you imply someone is a whore and deserving a full stop unlike "бля".
    In conversation about 6 months ago from eientei.org permalink
  3. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Friday, 26-Sep-2025 01:24:29 JST Yukkuri Yukkuri
    in reply to
    • Lina Inver?e
    @lina
    In conversation about 6 months ago from eientei.org permalink

    Attachments


    1. https://eientei.org/media/ca/0c/83/ca0c839629da7b3e3221831a1195dc11afa003f44a9dd4bb20408c1576a82038.png?name=image.png
  4. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Monday, 22-Sep-2025 00:46:39 JST Yukkuri Yukkuri
    in reply to
    • Lina Inver?e
    • Avatar of Chaos
    • Pawlicker
    • Veinglory
    @PurpCat @lina @MK2boogaloo @veinglory CSS 3D transformations can be fun https://public.eientei.org/bachko.html ; too bad it requires custom styles that would be difficult to contain without shadow-dom'ing each status.
    In conversation about 6 months ago from eientei.org permalink

    Attachments

    1. No result found on File_thumbnail lookup.
      https://public.eientei.org/bachko.html
  5. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Monday, 22-Sep-2025 00:38:15 JST Yukkuri Yukkuri
    in reply to
    • Lina Inver?e
    • Avatar of Chaos
    • Veinglory
    @lina @veinglory @MK2boogaloo Eientei FE/BE has preserved the original class filtering behavior under a setting, so some fun is allowed. But only for similarly supporting instances that don't scrub class on img tags.
    In conversation about 6 months ago from eientei.org permalink

    Attachments


    1. https://eientei.org/media/9b/8b/f0/9b8bf06e50b083948ed9ad3b2d4fb32d565144d86c5ca2c0eca1f050cc3eb71f.png?name=image.png
  6. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Saturday, 20-Sep-2025 06:51:53 JST Yukkuri Yukkuri
    in reply to
    • Lina Inver?e
    • ?uper?nekFriend ?
    • WhiteExodite
    • pantherastare
    • Avatar of Chaos
    @pantherastare @lina @MK2boogaloo @SuperSnekFriend @bleedingphoenix A shame it misses on how poast logo is essentially an israeli cancer clinic's.
    In conversation about 6 months ago from eientei.org permalink

    Attachments


    1. https://eientei.org/media/54/f5/fc/54f5fc876e6c3a2ce19793c8af53947445fd44de466d513adc4cfa2727c772d5.jpg?name=John_Feldman_Michael_Marash_Proton_Therapy_PCure_21_03_2023-9205023-scaled.jpg
  7. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Saturday, 20-Sep-2025 05:34:30 JST Yukkuri Yukkuri
    • Lina Inver?e
    • Umamusume gamers
    @lina cc: @umamusumebu
    In conversation about 6 months ago from eientei.org permalink
  8. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Friday, 19-Sep-2025 05:24:35 JST Yukkuri Yukkuri
    in reply to
    • Loki3
    • Lina Inver?e
    @lina @Loki
    In conversation about 6 months ago from eientei.org permalink

    Attachments


    1. https://eientei.org/media/22/7e/80/227e80b5ae546e5b8f5a9b4a32db4100dccbc8f10a227d59b77317751563708b.png?name=image.png
  9. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Sunday, 14-Sep-2025 21:46:01 JST Yukkuri Yukkuri
    in reply to
    • pistolero
    @p One caveat though: indexes actually defined in terms of operators, `select * from table where network_sub(a, b);` won't use an index for that operator class while `select * from table where a << b` would. But you can work-around that by making your own inlinable function (https://wiki.postgresql.org/wiki/Inlining_of_SQL_functions ; generally `langauge sql` with `immutable parallel safe` is enough) that in turn does `select a << b` and that would start using indexes supporting that operator class.
    In conversation about 6 months ago from eientei.org permalink

    Attachments

    1. No result found on File_thumbnail lookup.
      Inlining of SQL functions - PostgreSQL wiki
  10. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Sunday, 14-Sep-2025 21:33:18 JST Yukkuri Yukkuri
    in reply to
    • pistolero
    @p All postgres operators are implemented by functions, check `\do+ <<` in psql. For example, for inet operands it's called network_sub.
    In conversation about 6 months ago from eientei.org permalink
  11. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Sunday, 14-Sep-2025 06:34:37 JST Yukkuri Yukkuri
    in reply to
    • Ben Werdmuller
    • pistolero
    • 👺防空識別區👹
    @p @adiz @ben It's useful to make a federation-compatible link to a post that can be reasonably rendered and navigated to, but that also requires FE [patches] that allow including quote in reply to be practical in most cases.
    In conversation about 6 months ago from eientei.org permalink
  12. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Sunday, 14-Sep-2025 02:11:27 JST Yukkuri Yukkuri
    I still can't take more than 200-300 ml of 40% at once without vomiting. Alcoholism is hard work.
    In conversation about 6 months ago from eientei.org permalink

    Attachments


    1. https://eientei.org/media/c0/79/1c/c0791c5e07e4ebceae48f84498cc4ffa361f828b220817678fee1fc9b466c529.jpg?name=a4091e722c8a7d35e73154c72b27a3f5.jpg
  13. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Sunday, 14-Sep-2025 02:11:24 JST Yukkuri Yukkuri
    in reply to
    • menherahair
    @menherahair I was expecting meat/bread to be most helpfull so far, but I'll try juices as well. Orange/tomato seem to be most popular. And pepper for some reason as well.
    In conversation about 6 months ago from eientei.org permalink

    Attachments


    1. https://eientei.org/media/e9/86/43/e9864386695f241a4a99341c10e43bbdb5cebf68a44c6065a56019814e2fb164.jpg?name=4bd67f7a05f6be92cb0bf0e83a1b0db4.jpg
  14. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Saturday, 13-Sep-2025 08:55:08 JST Yukkuri Yukkuri
    in reply to
    • Lina Inver?e
    • Yukkuri
    @lina Amusingly, the cutoff point when distillation quality stops affecting taste is about 0.8~1 rur / ml. Also probably rye bread, onions, butter and vodka could be the Russian version of ploughman's lunch.
    In conversation about 6 months ago from eientei.org permalink
  15. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Wednesday, 10-Sep-2025 18:16:35 JST Yukkuri Yukkuri
    in reply to
    • Lina Inver?e
    @lina Yes, it is not bound by any specific source substrate, so long you can distill it to near pure ethanol and then water down, there is nothing left to age either.
    In conversation about 7 months ago from eientei.org permalink
  16. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Wednesday, 10-Sep-2025 12:20:56 JST Yukkuri Yukkuri
    I thought rum was good, but vodka is truly the next level of intoxication optimization.
    In conversation about 7 months ago from eientei.org permalink

    Attachments


    1. https://eientei.org/media/23/2b/27/232b274cbb9afaa58d6395ce56de82f68316bf93933c42cfc8223d8a9c7eb0dc.png?name=image.png
  17. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Saturday, 06-Sep-2025 09:19:02 JST Yukkuri Yukkuri
    • Desire-kun
    @Nepiant 止まれ
    In conversation about 7 months ago from eientei.org permalink

    Attachments


    1. https://eientei.org/media/c4/d8/cf/c4d8cffb61a8c3a5e84b1845d521704246bbdcb57310c0e8e0281c21f61bbf7a.jpg?name=10136861_p0.jpg
  18. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Saturday, 06-Sep-2025 09:19:00 JST Yukkuri Yukkuri
    in reply to
    • Desire-kun
    • waff
    @waff @Nepiant
    In conversation about 7 months ago from eientei.org permalink

    Attachments


    1. https://eientei.org/media/2e/eb/c3/2eebc3fc5e8583240959fe9ab99b8d9aa647f86eb76aceb8a4857b1143b3dc60.jpg?name=10649099_p0.jpg
  19. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Thursday, 04-Sep-2025 05:37:47 JST Yukkuri Yukkuri
    in reply to
    • Lina Inver?e
    • Yukkuri
    • Avatar of Chaos
    @lina @MK2boogaloo Oh, and a snake that was for some reason implemented in fasttracker
    In conversation about 7 months ago from eientei.org permalink
  20. Embed this notice
    Yukkuri (iamtakingiteasy@eientei.org)'s status on Thursday, 04-Sep-2025 05:12:57 JST Yukkuri Yukkuri
    in reply to
    • Lina Inver?e
    • Avatar of Chaos
    @lina @MK2boogaloo To be fair, I remember playing mostly doom, heretic, hexen, homm2/3, carmageddon, holy build engine quaternity and worms
    In conversation about 7 months ago from eientei.org permalink
  • After
  • Before

User actions

    Yukkuri

    Yukkuri

    クッキー☆ & 淫夢 & P-MODEL

    Tags
    • (None)

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          2644
          Member since
          29 Jul 2022
          Notices
          997
          Daily average
          1

          Feeds

          • Atom
          • Help
          • About
          • FAQ
          • TOS
          • Privacy
          • Source
          • Version
          • Contact

          GNU social JP is a social network, courtesy of GNU social JP管理人. It runs on GNU social, version 2.0.2-dev, available under the GNU Affero General Public License.

          Creative Commons Attribution 3.0 All GNU social JP content and data are available under the Creative Commons Attribution 3.0 license.