This works today, even before first-class support lands. Example uses opencode with Docker Model Runner (DMR).
docker model pull qwen3.6This works today, even before first-class support lands. Example uses opencode with Docker Model Runner (DMR).
docker model pull qwen3.6| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>You Gotta Keep the Dogs Away — JCon 2026</title> | |
| <style> | |
| * { margin: 0; padding: 0; box-sizing: border-box; } | |
| body { background: #0a0a0a; display: flex; align-items: center; justify-content: center; min-height: 100vh; font-family: -apple-system, BlinkMacSystemFont, sans-serif; } | |
| #__bundler_loading { position: fixed; bottom: 20px; right: 20px; font: 13px/1.4 -apple-system, BlinkMacSystemFont, sans-serif; color: #666; background: #fff; padding: 8px 14px; border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.12); z-index: 10000; } | |
| #__bundler_thumbnail { position: fixed; inset: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #0a0a0a; z-index: 9999; } |
| docker run -d --name ml-proxy -p 8080:80 nginx:alpine sh -c ' | |
| echo "server { | |
| listen 80; | |
| location / { | |
| proxy_pass http://model-runner.docker.internal:80; | |
| proxy_set_header Host \$host; | |
| proxy_set_header X-Real-IP \$remote_addr; | |
| proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for; | |
| proxy_set_header X-Forwarded-Proto \$scheme; | |
| } |
| package org.testcontainers.containers; | |
| import org.testcontainers.Testcontainers; | |
| import org.testcontainers.containers.GenericContainer; | |
| import org.testcontainers.containers.wait.strategy.Wait; | |
| import org.testcontainers.utility.DockerImageName; | |
| public class CloudflaredContainer extends GenericContainer<CloudflaredContainer> { | |
| private String publicUrl; |
| package org.testcontainers; | |
| import org.assertj.core.api.Assertions; | |
| import org.junit.Test; | |
| import org.testcontainers.containers.GenericContainer; | |
| import org.testcontainers.containers.startupcheck.OneShotStartupCheckStrategy; | |
| public class JavaGCTest { | |
| @Test |
| { | |
| "custom-layouts": [ | |
| { | |
| "uuid": "{F58A3E99-18C5-40C0-B496-22C674101D1B}", | |
| "name": "LinkedIn Learning", | |
| "type": "canvas", | |
| "info": { | |
| "ref-width": 2560, | |
| "ref-height": 1392, | |
| "zones": [ |
| package org.testcontainers; | |
| import com.github.dockerjava.api.command.InspectContainerResponse; | |
| import lombok.NonNull; | |
| import lombok.SneakyThrows; | |
| import org.apache.commons.io.FileUtils; | |
| import org.junit.Test; | |
| import org.testcontainers.containers.GenericContainer; | |
| import org.testcontainers.utility.MountableFile; |
| geo_hash | count | |
|---|---|---|
| 9q94r | 1 | |
| dr5rs14 | 2 |
This is simply a list of things I chose to install on my Windows development machines.
I omit actual links, since googling for them generally gives the best up-to-date results.
Maybe I should update this with chocolatey one day, or wait for the the new win-get tool in Windows 11.
| # https://github.com/microsoft/Git-Credential-Manager-Core | |
| git config --global credential.helper "/mnt/c/Program\\ Files/Git/mingw64/libexec/git-core/git-credential-manager-core.exe" |