Pages

luni, 20 aprilie 2026

Tools : SHADERed - C++ features.

If you like shaders and C++ then you can use the SHADERed to export as C++ projects. See the official website.

News : New feature for email and phone masks ...

Our secure, easy-to-use email and phone masks help keep your identity private so you can sign up for new accounts anonymously, stop spam texts and junk calls, and get only the emails you want in your inbox.
See this feature on the official website.

News : new features on Visual Studio Code 1.116.

New features on Visual Studio Code:
Welcome to the 1.116 release of Visual Studio Code. This release continues to make working with chat and agents more powerful and efficient.
Here are some highlights of what's new:
Agent Debug Logs: view logs from previous agent sessions to understand and debug agent interactions.
Copilot CLI thinking effort: configure model thinking effort in Copilot CLI to balance response quality and latency.
Terminal agent tools: interact with any terminal session from your agent sessions.
GitHub Copilot built-in: start using AI without having to install the GitHub Copilot Chat extension.
Happy Coding!

vineri, 17 aprilie 2026

News : Dev Diary #178 | Dev Diary Overview | Victoria 3

News : Get Started in Cascadeur | Your First Animation Guide

News : Industry Fundamentals: C# architecture and ScriptableObjects

Google Apps Script : ... youtube script for dashboard.

Today, I tested Google Apps Script to get data from youtube dashboard, because I make some streams on youtube and another social platforms.
The source code is large, but I will show this part to understand the basics:
function getChannelStats() {
  const response = YouTube.Channels.list(
    "snippet,statistics",
    { mine: true }
  );

  const ch = response.items[0];

  return {
    title: ch.snippet.title,
    subs: Number(ch.statistics.subscriberCount),
    views: Number(ch.statistics.viewCount),
    videos: Number(ch.statistics.videoCount)
  };
} ...

News : Rebelle 8 Brush Creator: Texture Brushes - Paint - Part 2