3D scenes, websites, games, apps. Describe anything and Omma builds it for you in seconds.
I found this idea of html graphics design, see this exemple website.

The main website is the omma website.
2D, 3D, game, games, online game, game development, game engine, programming, OpenGL, Open AI, math, graphics, design, graphic, graphics, game development, game engine, programming, web development, web art, web graphic, arts, tutorial, tutorials,

npm i -g cline
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()

# check is scoop is on pc
if (Get-Command scoop -ErrorAction SilentlyContinue) {
Write-Host "Scoop este deja instalat."
exit
}
# set running script for user
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force
# install the scoop
iwr -useb get.scoop.sh | iex
# check the install process
if (Get-Command scoop -ErrorAction SilentlyContinue) {
Write-Host "Scoop a fost instalat cu succes!"
} else {
Write-Host "Instalarea Scoop a eșuat."
}


npm install -g openclawollama run glm-5:cloud ollama launch claude --model glm-5:cloudollama launch codex --model glm-5:cloud| Header | Explanation |
|---|---|
| Access-Control-Allow-Origin: * | Allows any origin to access the resource (very risky for sensitive APIs). |
| Access-Control-Allow-Origin: https://example.com | Allows only the specified origin to access the resource. |
| Access-Control-Allow-Methods: GET, POST, PUT, DELETE, PATCH | Specifies which HTTP methods are allowed for cross-origin requests. |
| Access-Control-Allow-Headers: Content-Type, Authorization, X-Api-Key | Lists which custom request headers the client is allowed to send. |
| Access-Control-Allow-Credentials: true | Allows cookies and authentication data in cross-origin requests; cannot be used with "*". |
| Access-Control-Expose-Headers: X-RateLimit-Remaining, X-Custom-Header | Allows the browser to read specific response headers that are normally hidden. |
| Access-Control-Max-Age: 86400 | Defines how long the browser may cache the preflight response (in seconds). |
| Access-Control-Request-Method: PUT | Sent by the browser during preflight to ask if the HTTP method is allowed. |
| Access-Control-Request-Headers: Authorization, X-Api-Key | Sent by the browser during preflight to ask if custom headers are allowed. |
| Origin: https://client.com | Sent by the browser to indicate the origin of the request. |
| Vary: Origin | Instructs caches that the response may vary depending on the Origin header. |
| Vary: Access-Control-Request-Headers | Ensures caches treat responses differently based on requested headers. |
| Vary: Access-Control-Request-Method | Ensures caches treat responses differently based on requested methods. |
| Timing-Allow-Origin: * | Allows cross-origin access to detailed performance timing information. |
| Timing-Allow-Origin: https://example.com | Allows only the specified origin to access performance timing data. |
| Access-Control-Allow-Private-Network: true | Allows requests to private network resources (used in newer browser security models). |
| Cross-Origin-Opener-Policy: same-origin | Isolates the browsing context from cross-origin pages to prevent data leaks. |
| Cross-Origin-Opener-Policy: same-origin-allow-popups | Allows popups but keeps the main page isolated from cross-origin interference. |
| Cross-Origin-Opener-Policy: unsafe-none | Disables isolation; allows cross-origin interactions (least secure). |
| Cross-Origin-Embedder-Policy: require-corp | Requires embedded resources to explicitly allow cross-origin embedding (needed for SharedArrayBuffer). |
| Cross-Origin-Embedder-Policy: unsafe-none | Allows embedding any resource without restrictions (not secure). |
| Cross-Origin-Resource-Policy: same-origin | Restricts resource loading to the same origin only. |
| Cross-Origin-Resource-Policy: same-site | Allows resource loading from the same site but different subdomains. |
| Cross-Origin-Resource-Policy: cross-origin | Allows resource loading from any origin. |
| Cross-Origin-Opener-Policy-Report-Only | Reports violations of COOP without enforcing them. |
| Cross-Origin-Embedder-Policy-Report-Only | Reports violations of COEP without enforcing them. |
| Content-Security-Policy: script-src 'self' | Restricts which scripts can run; critical for preventing cross-origin script injection. |
| Content-Security-Policy: worker-src 'self' | Controls which origins can load Web Workers; required for secure WASM execution. |
| Content-Security-Policy: frame-ancestors 'none' | Prevents the page from being embedded in iframes (anti-clickjacking). |
| Content-Security-Policy: require-trusted-types-for 'script' | Protects against DOM XSS by enforcing Trusted Types. |
| Permissions-Policy: shared-array-buffer=(self) | Allows SharedArrayBuffer only in isolated contexts (COOP + COEP required). |
| Permissions-Policy: fullscreen=(self) | Controls which origins can request fullscreen mode. |
| Permissions-Policy: geolocation=() | Blocks geolocation access for all origins. |
| Referrer-Policy: no-referrer | Prevents sending the Referer header to any destination. |
| Referrer-Policy: strict-origin-when-cross-origin | Sends full referrer on same-origin requests, but only origin on cross-origin. |
| Sec-Fetch-Site: cross-site | Indicates the request came from a different site; used by browsers for security decisions. |
| Sec-Fetch-Mode: cors | Indicates the request is a CORS request. |
| Sec-Fetch-Dest: script | Indicates the destination type of the request (script, image, iframe, etc.). |
| Sec-Fetch-User: ?1 | Indicates the request was triggered by a user interaction. |
| Report-To: {"group":"coop","max_age":10886400} | Defines where browsers should send COOP/COEP violation reports. |
| NEL: {"report_to":"coop","max_age":10886400} | Network Error Logging; allows reporting of network failures. |

ollama launch pi






See the Pen Orthodox Great Lent - years by Cătălin George Feștilă (@catafest) on CodePen.


| CLI Tool | Best For | Programming Language | Model | Price |
|---|---|---|---|---|
| Entire (Checkpoints) | AI Session Wrapper / Rewind & Audit | Rust / Go | Model-agnostic (Wrapper) | Open Source (Free) |
| Gemini CLI | MCP integration, Google ecosystem & docs retrieval | Go / Node.js | Gemini 3 Pro | Free Tier (1000 req/day) |
| Claude Code | Deep reasoning, autonomous coding & multi-agent tasks | Node.js / TypeScript | Claude Opus 4.6 | Pay-per-token (API) |
| Codex CLI | Ultra-fast terminal-native coding & automation | Python / Rust | GPT-5.3 Codex-Spark | Included in ChatGPT Plus/Pro |
| Cline 2.0 | Parallel agentic workflows & browser automation | TypeScript | Multi-model (Claude, GPT, Kimi) | Bring your own API key |
| Aider | Git-native pair programming & refactoring | Python | GPT-5.2 / Claude 4.5 | Free (Open Source) |
| Goose | Extensible toolkit-based agents (Block/Square) | Rust | Multi-model | Open Source (Free) |
| Amp | Architecture-aware coding & deep research | Go | Sourcegraph Custom LLM | Freemium / Enterprise |
| Droid | Autonomous DevOps & CI/CD self-healing | Python | Droid-Proprietary | Subscription based |
| Devin CLI | End-to-end autonomous engineering (Full-stack) | Rust / Python | Devin v2 Custom | Usage-based (Credits) |
| OpenCode | Privacy-first local AI coding (Ollama/Llama) | C++ / Python | Local Models (Llama 4) | Free (Self-hosted) |