Pages

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

miercuri, 10 iunie 2026

Tools : Put Love and Wonder Into Every Pixel.

Pixel engine built for those who love pixel art.
This tool will animate your image ...

Tools : GitReverse online tool.

Reverse engineer a codebase into a prompt you can build from. Get Prompt. Manual control. Try example repos: Next.js. Openclaw. React. Supabase. Linux. You can ...
See this example on this URL.

marți, 9 iunie 2026

News : Vultr comes with most competitive pricing.

Led by veterans of the managed hosting business, we have taken our 20+ years of experience in complex hosting environments and made it our mission to simplify the cloud.
Vultr offers one of the clearest, most flexible, and most competitive pricing structures in the cloud space. The platform covers the full spectrum:
  • Low‑cost VMs for small websites
  • Optimized compute for serious applications
  • Next‑generation GPUs (including NVIDIA Blackwell, H100, L40S)
  • Bare Metal for maximum performance
  • NVMe Storage, Object Storage, CDN, NAT, Load Balancers
  • Serverless AI Inference
It is a platform focused on strong performance at a good price, especially compared to AWS, GCP, and Azure.
Let's see one example : vCPUs: 96 vCPUs, Memory: 256 GB,Bandwidth: 12.00 TB, Storage: 1280 GB, Prices: $3840.00/mo, $5.714/hr.

luni, 1 iunie 2026

Tools : Best database, steam charts and calculator tools for players.

SteamDB is a free, independent database covering the entire Steam catalog. Player charts, price history across all regions, update histories, and detailed data for every product — kept current through fast, automatic updates.
Calculator page itself only temporarily caches the data you see on the page when you lookup a profile for up to an hour. We do not store historical changes of your data.
For badges pages, top game owners, and top levels pages we only store and show up to 2000 top public profiles. When a profile is looked up in our calculator, and we see that the profile is private, data about this profile will be deleted.
See this online tool on this webpage.

marți, 19 mai 2026

Shadertoy: buttons with effect - 001.

A simple effect on buttons with a little help of artificial intelligence.
// with a little help with artificial inteligence
// ============================================================================
// HELPER FUNCTIONS
// ============================================================================

// Matrix for 2D rotation (useful if you want to rotate internal effects)
mat2 rotate2d(float angle){
    return mat2(
        cos(angle), -sin(angle),
        sin(angle), cos(angle)
    );
}

// Signed Distance Field (SDF) for a rectangle with independent corner radii
// r.x = Top-Right, r.y = Bottom-Right, r.z = Top-Left, r.w = Bottom-Left
float sdRoundedBox( in vec2 p, in vec2 b, in vec4 r )
{
    r.xy = (p.x > 0.0) ? r.xy : r.zw;
    r.x  = (p.y > 0.0) ? r.x  : r.y;
    vec2 q = abs(p) - b + r.x;
    return min(max(q.x, q.y), 0.0) + length(max(q, 0.0)) - r.x;
}

// ============================================================================
// MAIN SHADERTOY ENTRY POINT
// ============================================================================
void mainImage( out vec4 fragColor, in vec2 fragCoord )
{
    // 1. Normalize coordinates (from 0.0 to 1.0)
    vec2 uv = fragCoord / iResolution.xy;
    float ratio = iResolution.x / iResolution.y;
    
    // 2. Define the Color Palette (Sci-Fi / Neon Theme)
    vec3 backgroundColor = vec3(0.06, 0.06, 0.09); // Dark background
    vec3 buttonBaseColor = vec3(0.05, 0.18, 0.35); // Base body fill color
    vec3 neonBlue        = vec3(0.27, 0.67, 1.0);  // Sharp border stroke
    vec3 aquaGlow        = vec3(0.0, 0.95, 1.0);   // Outer aura glow
    
    vec3 finalColor = backgroundColor;

    // 3. Split the screen into a 2x3 grid (2 columns, 3 rows) to show 6 variations
    vec2 gridSize = vec2(2.0, 3.0);
    vec2 gridId = floor(uv * gridSize); 
    
    // Localize UV coordinates inside each grid cell, and center the origin (0,0)
    vec2 localUV = fract(uv * gridSize) - 0.5;
    
    // Adjust aspect ratio locally for the 2x3 grid mapping
    float localRatio = (iResolution.x / gridSize.x) / (iResolution.y / gridSize.y);
    localUV.x *= localRatio;

    // 4. Define Button Size (scaled for the 2x3 grid layout)
    vec2 buttonSize = vec2(0.38, 0.13); 
    
    // 5. Initialize the corner radii vector
    // Format: vec4(Top-Right, Bottom-Right, Top-Left, Bottom-Left)
    vec4 cornerRadii = vec4(0.0);

    // 6. Assign a different combination to each grid area (Rows from bottom=0 to top=2)
    if (gridId.y == 2.0) // === TOP ROW ===
    {
        if (gridId.x == 0.0) {
            // [TOP-LEFT]: All corners rounded equally (Standard Pill Button)
            cornerRadii = vec4(0.07, 0.07, 0.07, 0.07);
        } else {
            // [TOP-RIGHT]: Sharp rectangular button (No rounding)
            cornerRadii = vec4(0.00, 0.00, 0.00, 0.00);
        }
    }
    else if (gridId.y == 1.0) // === MIDDLE ROW (THE LEAF DIAGONALS) ===
    {
        if (gridId.x == 0.0) {
            // [MIDDLE-LEFT]: Leaf Style 1 (Top-Right and Bottom-Left rounded)
            cornerRadii = vec4(0.15, 0.00, 0.00, 0.15);
        } else {
            // [MIDDLE-RIGHT]: Leaf Style 2 (Top-Left and Bottom-Right rounded)
            cornerRadii = vec4(0.00, 0.15, 0.15, 0.00);
        }
    }
    else if (gridId.y == 0.0) // === BOTTOM ROW ===
    {
        if (gridId.x == 0.0) {
            // [BOTTOM-LEFT]: Tab Style (Top corners rounded only)
            cornerRadii = vec4(0.08, 0.00, 0.08, 0.00);
        } else {
            // [BOTTOM-RIGHT]: Asymmetric single corner rounded
            cornerRadii = vec4(0.00, 0.00, 0.16, 0.00);
        }
    }

    // 7. Calculate the distance field for the current button shape
    float d = sdRoundedBox(localUV, buttonSize, cornerRadii);

    // 8. Render Button Body (Fill with a clean vertical light-to-dark gradient)
    float fillMask = smoothstep(0.003, 0.0, d); 
    vec3 buttonBody = buttonBaseColor * (1.1 - (localUV.y + 0.5) * 0.4); 
    finalColor = mix(finalColor, buttonBody, fillMask);

    // 9. Render Sharp Neon Border (Stroke)
    float borderThickness = 0.004;
    float borderMask = smoothstep(borderThickness, 0.0, abs(d)) * smoothstep(d, d + 0.004, 0.0);
    finalColor += borderMask * neonBlue * 1.8;

    // 10. Render Dynamic External Glow Effect (Pulses over time using iTime)
    float pulse = sin(iTime * 3.5) * 0.12 + 0.88; 
    float glowIntensity = exp(-max(d, 0.0) * 28.0) * pulse;
    finalColor += glowIntensity * aquaGlow * 0.5 * (1.0 - fillMask); 

    // 11. Render Internal Scanline Laser Effect
    if (d < 0.0) 
    {
        // Laser position sweeps horizontally across the local cell width
        float scanSpeed = 0.5;
        float scanX = fract(iTime * scanSpeed) * 2.2 - 1.1; 
        
        // Render the vertical beam profile
        float scanlineWidth = 0.07;
        float scanline = smoothstep(scanlineWidth, 0.0, abs((localUV.x / localRatio) - scanX));
        
        // Add reflection overlay inside the button
        finalColor += scanline * neonBlue * 0.45;
        
        // Add inner vignette shadow
        float innerShadow = smoothstep(-0.06, 0.0, d);
        finalColor -= vec3(0.15) * innerShadow;
    }

    // 12. Draw grid lines to separate the 6 showcase zones clean
    float gridLines = smoothstep(0.004, 0.0, abs(uv.x - 0.5)) + 
                      smoothstep(0.004, 0.0, abs(uv.y - 0.3333)) + 
                      smoothstep(0.004, 0.0, abs(uv.y - 0.6666));
    finalColor = mix(finalColor, vec3(0.15, 0.15, 0.2), gridLines * 0.4);

    // 13. Output processed pixels to screen
    fragColor = vec4(finalColor, 1.0);
}
Let's see the result:

luni, 9 februarie 2026

miercuri, 28 ianuarie 2026

News : AI detector for fake media.

AI detector for text, images, video, and audio. Detect AI-generated content, deepfakes, and fake media with instant analysis and visual proof.

marți, 20 ianuarie 2026

News : Affint use integrations to help you.

The basic idea is to integrate various services with an online artificial intelligence. With this online tool based on artificial intelligence I did a small project with Google to process emails using artificial intelligence to extract from a series of emails with complex content such as patterns, linked to various online tools. You have to let this tool have access to the email. As for saving to Google Drive, but I didn't get around to implementing something like that.
Affint connects over 200 business tools according to the official description.
Other sources mention 50+ direct integrations in their AI editor.
  • Google Sheets
  • Google Docs
  • Google Slides
  • Microsoft Excel
  • Microsoft Word
  • Microsoft PowerPoint
  • Slack
  • Notion
  • HubSpot
  • Salesforce
  • Airtable
  • ClickUp
  • Asana
  • Trello
  • Jira
  • Monday.com
  • Zapier
  • Make.com
  • Stripe
  • Shopify
  • Intercom
  • Zendesk
  • Google Analytics
  • Meta Ads
  • LinkedIn Ads
  • Google Ads

vineri, 16 ianuarie 2026

Tools : downloading open directory listings with wgetGUI

A PyQt5 GUI front-end for wget specialized for downloading open directory listings. This tool provides a user-friendly interface to configure and execute wget commands for downloading entire directory structures from web servers.
Most of the content in the open directory area is garbage, even if it seems of quality, it is not original, it is not appreciated in terms of art, content... but for the poor who cannot afford originals, here is a tool for downloading.
See this tool on the GitHub project.

sâmbătă, 3 ianuarie 2026

News : 3x Faster LLM Training with Unsloth Kernels + Packing

Unsloth now supports up to 5× faster (typically 3x) training with our new custom RoPE and MLP Triton kernels, plus our new smart auto packing. Unsloth's new kernels + features not only increase training speed, but also further reduces VRAM use (30% - 90%) with no accuracy loss.
See this article from the official blogger.

duminică, 21 decembrie 2025

vineri, 28 noiembrie 2025

News : Try for free - 7 day trial

This is an excellent tool... now you can try it for free with a 7-day trial.
  • Rewrite full sentences with a click
  • Adjust your writing tone with ease
  • Write fluently in English
  • Unlimited personalized suggestions
  • Detect plagiarism and AI-generated text
  • Generate text with 2,000 AI prompts

marți, 18 noiembrie 2025

News : ... vlc cli script for radio online .

I used vlc cli on this type .bat script for online radio:

@echo off
:menu
cls
echo ================================
echo   Meniu Radio Muzica Clasica
echo ================================
echo 1. Venice Classic Radio (Italia)
echo 2. Radio Swiss Classic
echo 3. ABC Classic (Australia)
echo 4. Opreste VLC
echo 5. Iesire
echo ================================
set /p choice=Selecteaza optiunea (1-5): 

if "%choice%"=="1" goto venice
if "%choice%"=="2" goto swiss
if "%choice%"=="3" goto abc
if "%choice%"=="4" goto stopvlc
if "%choice%"=="5" goto end
goto menu

:venice
echo Pornesc Venice Classic Radio...
"C:\Windows\System32\taskkill.exe" /IM vlc.exe /F >nul 2>&1
start "" /B vlc.exe -I dummy "http://174.36.206.197:8000/stream"
goto menu

:swiss
echo Pornesc Radio Swiss Classic...
"C:\Windows\System32\taskkill.exe" /IM vlc.exe /F >nul 2>&1
start "" /B vlc.exe -I dummy "http://stream.srg-ssr.ch/m/rsc_de/mp3_128"
goto menu

:abc
echo Pornesc ABC Classic...
"C:\Windows\System32\taskkill.exe" /IM vlc.exe /F >nul 2>&1
start "" /B vlc.exe -I dummy "http://live-radio01.mediahubaustralia.com/2FMW/mp3/"
goto menu

:stopvlc
echo Oprire VLC...
"C:\Windows\System32\taskkill.exe" /IM vlc.exe /F >nul 2>&1
goto menu

:end
echo Inchidere...

duminică, 9 noiembrie 2025

News : hailuoai - horror-themed area AI.

... new changes in the field of AI, now it can have a horror-themed area - a hot Halloween night: hailuoai - official website.

marți, 28 octombrie 2025

News : Lightricks introduced LTX-2

Lightricks introduced LTX-2, an open-source AI model that creates synchronized 4K video and audio in real time. It supports multi-keyframe conditioning, 3D camera logic, and various inputs like text, image, video, and audio for precise, style-consistent video generation up to 10 seconds long at 50 fps. LTX-2 runs efficiently on consumer GPUs with multiple performance modes for different creative needs

sâmbătă, 25 octombrie 2025

News : ... AI music online tools that compose, remix, and inspire !

... today I tested some free AI for music based on my tasks.
You can test these platforms not all are free. These use artificial intelligence to help users generate original music, soundscapes, and beats—whether you're a hobbyist, content creator, or professional musician.