Pages

Se afișează postările cu eticheta 2025. Afișați toate postările
Se afișează postările cu eticheta 2025. Afișați toate postările

miercuri, 25 iunie 2025

News : STO event - 8000 dilithium rewards !

I see the new RISA event ... maybe this will be the next ship ??
After rewards , today is the first day for 8000 dilithium rewards !
See wikipedia article : Dilithium (Star Trek)

marți, 24 iunie 2025

News : Bluesky social app with the Atmosphere Protocol.

Bluesky is a social app that is designed to not be controlled by a single company. We're creating a version of social media where it's built by many people, and it still comes together as a cohesive, easy-to-use experience. We've done this by building Bluesky on the AT Protocol, an open source toolbox for building social apps that can all talk to each other.
Traditional social networks are often closed platforms with a central authority. There’s a small group of people who control those companies, and they have total control over how users can use the platform and what developers can build.
As a developer, if you try to build a new app, you have to overcome network effects to rebuild the social graph from scratch, and if you try to build on the APIs of these companies they can cut you off and kill your company in the blink of an eye. As a creator, you might spend years building an audience only to lose access to it when the platform changes the rules on you.
You can find me at this social account

News : Developer Update | Season 17: Map Updates, Stadium Heroes, & More

Senior Game Designer Dylan Snyder, UI Artist Sadie Boyd, and Senior Systems Designer Connor Kou are here to go over some of the awesome new arrivals coming during Season 17!

luni, 23 iunie 2025

News : Lemmy Release v0.19.12

Lemmy is a self-hosted social link aggregation and discussion platform. It is completely free and open, and not controlled by any company. This means that there is no advertising, tracking, or secret algorithms. Content is organized into communities, so it is easy to subscribe to topics that you are interested in, and ignore others. Voting is used to bring the most interesting items to the top.
Read more on the official website.

News : my first generator on perchance.org

My first generator on the official perchance.org.
Is very easy to use if you know javascript. I tested with two plugins and with canvas area. First is a random basic text generator and second one will generate image based on text prompt.

News : O&O ShutUp10++ - Free antispy tool for Windows 10 and 11.

O&O ShutUp10++ means you have full control over which comfort functions under Windows 10 and Windows 11 you wish to use, and you decide when the passing on of your data goes too far. Using a very simple interface, you decide how Windows 10 and Windows 11 should respect your privacy by deciding which unwanted functions should be deactivated.
See this tool on the official website.

News : Lost in Random: The Eternal Die – Launch Trailer – Nintendo Switch

News : Star Citizen | Alpha 4.2: Storm Breaker

News : Partnership Series: Heart Aerospace

News : Dune: Awakening — Accolades Trailer

News : Corrode // Official Map Trailer - VALORANT

News : The Scope | Devastating Clash in Lantorn

News : Event on Star Trek Online - Hearth Of The Master.

vineri, 20 iunie 2025

News : Cast n Chill

News : YouTube Data Analysis Workflow - my hackathon project on devpost

Here I managed with difficulty, the internet and this old laptop are slow, but I uploaded the project for the Agent Development Kit Hackathon with Google Cloud ...
See my project on the official website.
Project submitted! Continue to edit your project until the hackathon deadline: June 23, 2025 at 08:00pm EDT.

joi, 19 iunie 2025

News : Google Apps Script - get products by region into new sheet.

... this is source code for search products on my region using google apps script:
function onOpen() {
  SpreadsheetApp.getUi()
    .createMenu('Ocazii Scraper')
    .addItem('Scrape placa-de-baza', 'scrapeProcess_placa_de_baza')
    .addToUi();
}

function scrapeProcess_placa_de_baza() {
  const url_placa_de_baza = "https://www.okazii.ro/componente-computere/placa-de-baza/?judete_lp=35&sort=pret_asc";
  let html;
  try {
    const response = UrlFetchApp.fetch(url_placa_de_baza);
    html = response.getContentText();
  } catch (error) {
    Logger.log("Error fetching HTML: " + error.message);
    return;
  }

  const itemRegex = /<div class="list-item[\s\S]*?<h2>[\s\S]*?<a[^>]+href="(.*?)"[^>]+title="(.*?)"[\s\S]*?<span class="prSup"><span>(\d+)<\/span>[\s\S]*?<span class="prList"><span>([\d,]+)<\/span>/g;

  const spreadsheetName = "placa_baza_200625";
  const spreadsheet = SpreadsheetApp.getActiveSpreadsheet();
  const sheet = spreadsheet.getSheetByName(spreadsheetName) || spreadsheet.insertSheet(spreadsheetName);

  // Adaugă headere dacă e un sheet nou
  if (sheet.getLastRow() === 0) {
    sheet.appendRow(["Data", "Titlu", "Href", "Pret", "Livrare"]);
  }

  const now = new Date();
  const formattedDate = Utilities.formatDate(now, SpreadsheetApp.getActive().getSpreadsheetTimeZone(), "ddMMyy");

  let match;
  while ((match = itemRegex.exec(html)) !== null) {
    let [_, href, title, price, delivery] = match;
    delivery = delivery.replace(",", "."); // înlocuiește virgula pentru formatare numerica
    const row = [formattedDate, title, href, price, delivery];
    sheet.appendRow(row);
  }
}

News : Construct 3 r444.2 Beta.

A new Beta version of Construct 3 has just been published - please note that Beta versions are not as thoroughly tested as Stable versions. If you choose to use Beta versions, please ensure you backup your work regularly and are willing to file bug reports if you run into any issues.

News : Farmatic Official Reveal Trailer

miercuri, 18 iunie 2025

News : Libre Graphics Meeting 2025 on inkscape website

Right after Inkscape Summit in Nuremberg, from May 28th to the 31st, the team attended to the Libre Graphics Meeting 2025, also in Nuremberg. It was a great opportunity to learn and share, and a unique experience to see how Inkscape contributes to the Libre Graphics scenario globally.
You can read about this on the inkscape official website.