Skip to content

Instantly share code, notes, and snippets.

Z-Image AI: Free Fast S3-DiT Image Generator

Z‑Image Turbo is a bit different from “classic” Stable Diffusion, so a lot of old prompting habits don’t quite apply. I’ll walk through how to prompt it deeply and safely, with special focus on controlling content (nudity, stereotypes, unwanted artifacts) even though the model does not support traditional negative prompts at all. ([Hugging Face][1])


1. How Z‑Image Turbo thinks (and why “negative” prompts don’t work)

Key facts that matter for prompting:

@osirismqz
osirismqz / gist:209db26ab2fe58a77296
Created October 16, 2014 14:29
Sublime Text underline comment snippet
<snippet>
<content><![CDATA[
// ${1:$SELECTION}
// ${1/./=/g}==========
]]></content>
<tabTrigger>comment-underline</tabTrigger>
</snippet>
@osirismqz
osirismqz / gist:4126689
Created November 21, 2012 18:28
CSS: Mini reset
/* CSS Mini Reset */
html, body, div, form, fieldset, legend, label
{
margin: 0;
padding: 0;
}
table
{
@osirismqz
osirismqz / HTML: basic template
Created October 15, 2012 08:55
HTML: basic template
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/main.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
</head>
<body>
</body>