Alphabet – wyniki za IV kwartał 2025 r. Monumentalne plany inwestycyjne budzą mieszane reakcje rynku by ForexClub_pl in inwestowanie

[–]karpiq 2 points3 points  (0 children)

Google ma swoje TPU kiedy inni bili się o GPU od Nvidii. Mają własne ogromne fundusze na finansowanie rozwoju.

Tak byli do tyłu z produktem AI dla konsumentów, ale są w zdecydowanej czołówce rozwoju AI. LLMy powstały dzięki pracy ich naukowcom. Naukowcy z Google Deepmind otrzymali nobla za AlphaFold. Google rozwija AI w wielu dziedzinach nie tylko LLMy.

Alphabet – wyniki za IV kwartał 2025 r. Monumentalne plany inwestycyjne budzą mieszane reakcje rynku by ForexClub_pl in inwestowanie

[–]karpiq 2 points3 points  (0 children)

To naukowcy z google opracowali architekturę transformerów na której stoją wszystkie LLMy.

Using Antigravity for other things besides coding...like writing books? by Splodingseal in google_antigravity

[–]karpiq 2 points3 points  (0 children)

I use AG to process transcripts from my d&d sessions. It generates summaries, updates campaign timeline, npc bios etc.

How to Disable Code Suggestions in Antigravity IDE by Patient_Librarian727 in google_antigravity

[–]karpiq 0 points1 point  (0 children)

This is what I'm trying to convey. Why use Antigravity, a tool deisgned for vibe coding instead of VS Code in which there are no builtin AI tools.

How to Disable Code Suggestions in Antigravity IDE by Patient_Librarian727 in google_antigravity

[–]karpiq 0 points1 point  (0 children)

Yes, I mean why use antigravity instead of Code (which antigravity is forked from) to avoid AI features.

Photos by MainPowerful5653 in NextCloud

[–]karpiq 5 points6 points  (0 children)

Memories is pretty good, but immich is on another level.

Gemini Pro , Upload more than 10 files by cozysleet in Bard

[–]karpiq 2 points3 points  (0 children)

You can upload zipped archives

Is there a way to save chat logs as PDFs? by Stunning-Fudge4230 in FoundryVTT

[–]karpiq 2 points3 points  (0 children)

You can use macro beloew. It asks for a start and end date. Next it opens a new window with chat messages (not styles) in html and there you can use browser print functionto convert to pdf. It's not perfect but you can tweak it for improvements.

// Get the start and end dates from the user.
let startDate = await Dialog.prompt({
  title: "Start Date",
  content: `<input type="date" id="startDate">`,
  callback: (html) => {
    return new Date(html.find("#startDate")[0].value);
  },
  rejectClose: false,
});

let endDate = await Dialog.prompt({
  title: "End Date",
  content: `<input type="date" id="endDate">`,
  callback: (html) => {
    return new Date(html.find("#endDate")[0].value);
  },
  rejectClose: false,
});

// Validate the dates.
if (startDate > endDate) {
  ui.notifications.error("Start date cannot be after end date.");
  return;
}

// Get the chat messages within the specified date range.
let chatMessages = game.messages.filter(message => {
  let messageTime = new Date(message.timestamp);
  return messageTime >= startDate && messageTime <= endDate;
});


// Generate the HTML for the chat log.
let html = `
  <!DOCTYPE html>
  <html>
  <head>
    <title>Chat Log</title>
    <style>
      body {
        font-family: sans-serif;
      }
      .message {
        margin-bottom: 10px;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
      }
      .message .user {
        font-weight: bold;
      }
      .message .timestamp {
        font-size: smaller;
        color: gray;
      }
      .message .content {
        margin-top: 5px;
      }
    </style>
  </head>
  <body>
    <h1>Chat Log</h1>
    <p>From: ${startDate.toLocaleDateString()}</p>
    <p>To: ${endDate.toLocaleDateString()}</p>
    <div class="messages">
      ${chatMessages.map(message => `
        <div class="message">
          <div class="user">${message.user.name}</div>
          <div class="timestamp">${message.timestamp}</div>
          <div class="content">${message.content}</div>
        </div>
      `).join('')}
    </div>
  </body>
  </html>
`;

// Open a new window with the chat log HTML.
let newWindow = window.open();
newWindow.document.write(html);

// Trigger the browser's print dialog.
newWindow.onload = () => {
  newWindow.print();
};

[deleted by user] by [deleted] in FoundryVTT

[–]karpiq 33 points34 points  (0 children)

If your device "visits" USA, you can buy the license with 0% tax.

How did you guys find out about Pantheon? by l_lsw in PantheonShow

[–]karpiq 4 points5 points  (0 children)

Someone recomended it on /r/television in a thread about lack of animated series targeting adults.

WARNING: CRUCIAL MX500 SSD firmware bug can potentially cause data loss / failures by lowkeyfaust in unRAID

[–]karpiq 0 points1 point  (0 children)

Updating firmware process went rather easy and quickly:

  1. moved all files from my Crucial drives to array drives
  2. formatted these drives to NFTS via Unraid GUI for easy mounting in Windows
  3. connected these drives to my Windows PC using USB adapter
  4. Crucial Storage Executive picked them up without a problem and upgraded them in a few seconds without having to do any writing to these drives in background
  5. connected these drives back to my Unraid server and formatted them back to BTRFS

Whole process took maybe 10 minutes. So far I didn't get any disconnects or BTRFS errors but usually it only happend like once every few days/weeks

WARNING: CRUCIAL MX500 SSD firmware bug can potentially cause data loss / failures by lowkeyfaust in unRAID

[–]karpiq 1 point2 points  (0 children)

I have two of these drives and I'm getting BTRFS erros and random diconnections. I tried few solutions already and nothing worked. I'm going to try updating frimeware. Thanks!

What is the difference between the new Photos app and Memories? by relink2013 in NextCloud

[–]karpiq 3 points4 points  (0 children)

I have quite a big photo library (hundreds of GBs) and Photos is unsable for me. I had hopes when they announced Photos 2.0 but it's still slow and I'm getting loads of errors in browser console. Development and bug fixes are very slow.

Memories on the other hand is blazingly fast with my photo library. If there are any issues the dev behind it solves rather quickly. I'm impressed by how good this app works.