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 faried nawaz (fn@p.node.pk)

  1. Embed this notice
    faried nawaz (fn@p.node.pk)'s status on Wednesday, 22-Jan-2025 19:55:52 JST faried nawaz faried nawaz

    I was walking down the street in Riyadh and someone shouted "ya hmar!" at me. What did he mean?

    #ollama #deepseek #gptel

    In conversation about 5 months ago from p.node.pk permalink

    Attachments


    1. https://mp.node.pk/media/52/87/92/5287927c30a9e9e1601000d261490248e1b9d486c90dfcd1b748a66cc91575d2.jpg
  2. Embed this notice
    faried nawaz (fn@p.node.pk)'s status on Wednesday, 22-Jan-2025 03:39:59 JST faried nawaz faried nawaz
    in reply to
    • alcinnz
    @alcinnz you have a 32 bit cpu with rvv 1.0?
    In conversation about 5 months ago from p.node.pk permalink
  3. Embed this notice
    faried nawaz (fn@p.node.pk)'s status on Sunday, 05-Jan-2025 17:21:15 JST faried nawaz faried nawaz
    • 藤井太洋, Taiyo Fujii

    The bell for the last task of the night started chiming before I got to my station. I had the office to myself, and a mug of espresso. It was time to start tracking zombies.

    I took the mug of espresso from the beverage table, and zigzagged through the darkened cube farm toward the one strip of floor still lit for third shift staff, only me.

    Zombies are orphan Internet services. They wander aimlessly, trying to execute some programmed task. They can’t actually infect anything, but otherwise the name is about right. TrueNet’s everywhere now and has been for twenty years, but Japan never quite sorted out what to do with all the legacy servers that were stranded after the Lockout. So you get all these zombies shuffling around, firing off mails to non-existent addresses, pushing ads no one will see, maybe even sending money to non-existent accounts. The living dead.

    -- @taiyo

    Violation of the TrueNet Security Act

    In conversation about 5 months ago from p.node.pk permalink
  4. Embed this notice
    faried nawaz (fn@p.node.pk)'s status on Wednesday, 06-Nov-2024 22:25:35 JST faried nawaz faried nawaz
    in reply to
    • lainy
    • Fish of Rage
    • feld

    @lain @feld @sun zombees?

    In conversation about 7 months ago from p.node.pk permalink
  5. Embed this notice
    faried nawaz (fn@p.node.pk)'s status on Monday, 16-Sep-2024 15:48:01 JST faried nawaz faried nawaz
    in reply to
    • lainy
    • 御園はくい
    • rin

    @lain @rin @hakui what do they imagine it to be like?

    In conversation about 9 months ago from p.node.pk permalink
  6. Embed this notice
    faried nawaz (fn@p.node.pk)'s status on Monday, 05-Feb-2024 03:03:22 JST faried nawaz faried nawaz
    in reply to
    • lainy

    @lain pixel watch 2? it's 41mm vs samsung's 40mm or 44mm.

    before that i had a versa 4 which is more than a simple fitness tracker but less than a wear os watch.

    In conversation Monday, 05-Feb-2024 03:03:22 JST from p.node.pk permalink
  7. Embed this notice
    faried nawaz (fn@p.node.pk)'s status on Sunday, 17-Sep-2023 04:32:20 JST faried nawaz faried nawaz
    in reply to
    • yosh

    @yosh my airvisual pro stopped measuring pm2.5 concentrations a couple of years ago (internal fan doesn’t spin, or something), but the co2 sensor is still fine. with the bedroom windows and doors closed at night for 12 hours, the co2 level climbs to over 1200 by the morning.

    i don’t have a choice here – my pm2.5 levels stay over 200 for several weeks on end in the winter months. i have a good air purifier, but it doesn’t do anything for co2.

    In conversation Sunday, 17-Sep-2023 04:32:20 JST from p.node.pk permalink
  8. Embed this notice
    faried nawaz (fn@p.node.pk)'s status on Wednesday, 23-Aug-2023 03:28:00 JST faried nawaz faried nawaz
    in reply to
    • Fedilab Apps

    @apps i’m sorry, there is something that doesn’t seem right about this. i went to settings > extra features, and turned the extra features on (i left the post format as text/plain). then, i went to an earlier post of mine and replied to it twice, once with the post format as text/plain, and once as text/markdown. i posted, in order:

    *italic* as plain *italic* as markdown

    when i view the posts in fedilab, the first one shows up properly italicized, but the second one doesn’t. when i view them in pleroma-fe (or husky), the order is reversed – the first one isn’t italicized, but the second one is.

    in the db, the first one:

    "source": { "content": "*italic* as plain.", "mediaType": "text/plain" }, "content": "*italic* as plain.",

    the second one:

    "source": { "content": "*italic* as markdown", "mediaType": "text/markdown" }, "content": "<p><em>italic</em> as markdown</p>",

    i think there are two issues here.

    1. the second one should show up italicized in fedilab.
    2. if fedilab can parse the first one as markdown when it’s displaying it to the user (even though the media type is text/plain), it should probably also post it to the server as text/markdown when the user creates it – it could guess that, or ask the user perhaps?

    can i get you to please try husky, the tusky fork that supports markdown? it shows an “M” button to switch to markdown, and it seems to work as i’d expect. it’s on f-droid and the play store. i believe husky doesn’t try to guess the type from the content.

    In conversation Wednesday, 23-Aug-2023 03:28:00 JST from gnusocial.jp permalink

    Attachments


  9. Embed this notice
    faried nawaz (fn@p.node.pk)'s status on Wednesday, 23-Aug-2023 00:47:43 JST faried nawaz faried nawaz
    • Fedilab Apps

    @apps i might be wrong here, but it seems like when you make a markdown post with fedilab, it uses the mediaType of text/plain. is that correct? shouldn’t that be text/markdown?

    i can enter markdown natively in pleroma, using its default frontend. here’s the difference i see in the db:

    pleroma:

    "source": { "content": "```\r\ntired: bitcoin\r\nwired: nvidia h100\r\n```", "mediaType": "text/markdown" }, "content": "<pre><code>tired: bitcoin\nwired: nvidia h100\n</code></pre>",

    fedilab:

    "source": { "content": "fedilab test\n\n*italic*?\n**bold**?", "mediaType": "text/plain" }, "content": "fedilab test<br><br>*italic*?<br>**bold**?",

    husky also supports markdown:

    "source": { "content": "_relax_\n\n~~okay~~", "mediaType": "text/markdown" }, "content": "<p><em>relax</em></p><p><del>okay</del></p>",
    In conversation Wednesday, 23-Aug-2023 00:47:43 JST from p.node.pk permalink
  10. Embed this notice
    faried nawaz (fn@p.node.pk)'s status on Wednesday, 14-Jun-2023 18:03:00 JST faried nawaz faried nawaz
    in reply to
    • lainy

    @lain nonfiction photo magazine

    In conversation Wednesday, 14-Jun-2023 18:03:00 JST from p.node.pk permalink
  11. Embed this notice
    faried nawaz (fn@p.node.pk)'s status on Tuesday, 02-May-2023 23:34:53 JST faried nawaz faried nawaz
    • feld
    • Times Old Beanman
    @faho @feld but i am the instance admin, sobbed pagliacci
    In conversation Tuesday, 02-May-2023 23:34:53 JST from p.node.pk permalink
  12. Embed this notice
    faried nawaz (fn@p.node.pk)'s status on Friday, 03-Mar-2023 14:23:10 JST faried nawaz faried nawaz
    • lainy

    @lain https://jkim.store/projects/excavatingnarantuul

    In conversation Friday, 03-Mar-2023 14:23:10 JST from p.node.pk permalink

    Attachments

    1. Domain not in remote thumbnail source whitelist: static.tildacdn.com
      Projects - Excavating Narantuul
      A photo essay
  13. Embed this notice
    faried nawaz (fn@p.node.pk)'s status on Wednesday, 01-Feb-2023 08:19:16 JST faried nawaz faried nawaz
    in reply to
    • Alex Gleason
    • feld
    @feld @alex i see that bug in husky.
    In conversation Wednesday, 01-Feb-2023 08:19:16 JST from p.node.pk permalink
  14. Embed this notice
    faried nawaz (fn@p.node.pk)'s status on Tuesday, 16-Aug-2022 05:43:48 JST faried nawaz faried nawaz

    the g in bgp is pronounced like the g in gif, right?

    right?

    In conversation Tuesday, 16-Aug-2022 05:43:48 JST from p.node.pk permalink

User actions

    faried nawaz

    faried nawaz

    coffee

    Tags
    • (None)

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          5612
          Member since
          15 Aug 2022
          Notices
          14
          Daily average
          0

          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.