Pages

sâmbătă, 28 martie 2026

Tools : ... krita brushes by David Revoy

See the official page with brushes by David Revoy.

News : Discover Krita 5.3/6.0: 10 new features explained to get you started.

News : Add Noise to Objects | Animation Scripts in Cascadeur

News : Wan2.2-Animate animation and replacement.

Wan2.2-Animate: Unified Character Animation and Replacement with Holistic Replication.
You can test on the demo - huggingface.co.

News : Cline Kanban a single view of multi-agent orchestration.

Introducing Cline Kanban: A standalone app for CLI-agnostic multi-agent orchestration. Claude and Codex compatible.
Cline Kanban brings your agents out of the terminal and into the board. Create, manage, and chain agent tasks within a single view. Claude Code and Codex compatible.
npm i -g cline
Tasks run in worktrees, click to review diffs, & link cards together to create dependency chains that complete large amounts of work autonomously.

vineri, 27 martie 2026

News : Kena: Bridge of Spirits – Launch Trailer – Nintendo Switch 2

News : Meet Baby Globe, Wikipedia’s 25th birthday mascot.

Baby Globe is finally here to celebrate 25 years of knowledge at its best. Press play for a few hints on where this fun-loving character will be showing up.
Follow the instructional snapshots below to activate Baby Globe on your phone or computer. For now, you will only see Baby Globe on these Wikipedias. ... Baby Globe Plushie By: Wikipedia $29.99 .

Star Trek Online: ... new event on this online game - 26-03-2026.

A new event this month in the online game Star Trek Online. I'm in a bit of a hurry with more important tasks because I had a lot of blockages in my tasks, I didn't make a Steam video, rewards are in the Klingon area: ships ...

joi, 26 martie 2026

Tools : remove language keyboard with powewrshell.

Simple powershell script with graphic user interface for remove language keyboard. I used copilot artificial intelligence to help me to create this powershell script.
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing

# ============================
# STARTUP MESSAGE
# ============================
[System.Windows.Forms.MessageBox]::Show(
"Run this script as Administrator.

If scripts are blocked, run:
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass",
"IMPORTANT",
"OK",
"Information"
)

# ============================
# GET INSTALLED LANGUAGES
# ============================
$languages = Get-WinUserLanguageList

# Build a list of IMTs with language names
$imtList = @()

foreach ($lang in $languages) {
    foreach ($imt in $lang.InputMethodTips) {
        $entry = [PSCustomObject]@{
            LanguageName = $lang.Autonym
            LanguageTag  = $lang.LanguageTag
            IMT          = $imt
        }
        $imtList += $entry
    }
}

# ============================
# BUILD THE FORM
# ============================
$form = New-Object System.Windows.Forms.Form
$form.Text = "Keyboard Layout Selector"
$form.Size = New-Object System.Drawing.Size(520, 600)
$form.StartPosition = "CenterScreen"

$label = New-Object System.Windows.Forms.Label
$label.Text = "Select the keyboard layouts you want to KEEP:"
$label.AutoSize = $true
$label.Location = New-Object System.Drawing.Point(10,10)
$form.Controls.Add($label)

$panel = New-Object System.Windows.Forms.Panel
$panel.Location = New-Object System.Drawing.Point(10,40)
$panel.Size = New-Object System.Drawing.Size(480,460)
$panel.AutoScroll = $true
$form.Controls.Add($panel)

$checkboxes = @()
$y = 10

foreach ($item in $imtList) {
    $cb = New-Object System.Windows.Forms.CheckBox
    $cb.Text = "$($item.LanguageName)  |  $($item.LanguageTag)  |  $($item.IMT)"
    $cb.Location = New-Object System.Drawing.Point(10, $y)
    $cb.AutoSize = $true
    $panel.Controls.Add($cb)
    $checkboxes += $cb
    $y += 30
}

$button = New-Object System.Windows.Forms.Button
$button.Text = "Apply"
$button.Location = New-Object System.Drawing.Point(200,520)
$button.Size = New-Object System.Drawing.Size(100,30)
$form.Controls.Add($button)

# ============================
# APPLY BUTTON LOGIC
# ============================
$button.Add_Click({
    $selectedIMTs = @()

    foreach ($cb in $checkboxes) {
        if ($cb.Checked) {
            # Extract IMT from checkbox text
            $parts = $cb.Text.Split("|")
            $imt = $parts[2].Trim()
            $selectedIMTs += $imt
        }
    }

    if ($selectedIMTs.Count -eq 0) {
        [System.Windows.Forms.MessageBox]::Show("You must select at least one layout to keep.")
        return
    }

    # Build new language list
    $newList = @()

    foreach ($lang in $languages) {
        $newLang = New-WinUserLanguageList $lang.LanguageTag
        $newLang[0].InputMethodTips.Clear()

        foreach ($imt in $lang.InputMethodTips) {
            if ($selectedIMTs -contains $imt) {
                $newLang[0].InputMethodTips.Add($imt)
            }
        }

        if ($newLang[0].InputMethodTips.Count -gt 0) {
            $newList += $newLang[0]
        }
    }

    Set-WinUserLanguageList $newList -Force

    [System.Windows.Forms.MessageBox]::Show("Keyboard layouts updated successfully.")
    $form.Close()
})

# ============================
# SHOW FORM
# ============================
$form.ShowDialog()
NOTE : To resolve issues with the wrong keyboard layout at the sign-in screen, users can follow these steps: Press Win + R to open the Run dialog. Type intl.cpl and click OK to open the Region settings.

News : Building Autonomous Networks with Agentic AI.

News : Microsoft Flight Simulator | Local Legend 23: The Fokker F27 Friendship

News : Farming Simulator 26: Announcement Trailer

News : April 24 onward on GitHub.

From April 24 onward, interaction data—specifically inputs, outputs, code snippets, and associated context—from Copilot Free, Pro, and Pro+ users will be used to train and improve our AI models unless they opt out.
  • Install Copilot in your editor;
  • Chat with Copilot anywhere;
  • Start building with Copilot - Learn how to build with Copilot in Visual Studio Code or Visual Studio.