Tagged articles
10 articles
Page 1 of 1
58UXD
58UXD
Apr 24, 2023 · Artificial Intelligence

Master Midjourney: Precise Image Control with /describe, Seed & Image Weight

This guide explains how to use Midjourney's /describe command, reference‑image weighting, and seed values to generate AI artwork that matches a desired style, fine‑tune existing images, and even swap clothing on characters for professional‑grade results.

AI image generationMidjourneyPrompt engineering
0 likes · 9 min read
Master Midjourney: Precise Image Control with /describe, Seed & Image Weight
网易UEDC
网易UEDC
Apr 12, 2023 · Artificial Intelligence

Master Stable Midjourney Characters: 5 Commands for Consistent AI Art

This guide explains how to overcome Midjourney's randomness by using five reliable commands—URL‑based prompting, seed values, panels, character sheets, and emoji‑expression sheets—to create stable characters with consistent expressions, poses, and outfits, complete with step‑by‑step instructions and visual examples.

AI artMidjourneyPrompt engineering
0 likes · 6 min read
Master Stable Midjourney Characters: 5 Commands for Consistent AI Art
Sohu Tech Products
Sohu Tech Products
Apr 27, 2022 · Backend Development

Why Using Fixed Seeds with Java Random Prints "Hello World"

This article explains how seeding Java's Random with specific integer values generates deterministic character sequences that spell "hello world", walks through the underlying ASCII conversion, shows code examples, and discusses related Java source quirks and seed‑search techniques.

Hello WorldJavaThreadLocalRandom
0 likes · 10 min read
Why Using Fixed Seeds with Java Random Prints "Hello World"
Java Backend Technology
Java Backend Technology
Apr 14, 2022 · Fundamentals

Why Does a Random‑Seeded Java Method Print “Hello World”?

This article explains how using fixed seeds with Java's Random class generates deterministic pseudo‑random strings that can be crafted to output "hello world", demonstrates the underlying seed mechanics, shows how to reverse‑engineer seeds for arbitrary phrases, and discusses related quirks in the Java source code.

Hello WorldJavacode analysis
0 likes · 11 min read
Why Does a Random‑Seeded Java Method Print “Hello World”?
Laravel Tech Community
Laravel Tech Community
Mar 1, 2021 · Backend Development

PHP srand() – Seeding the Random Number Generator

This article explains PHP's srand() function, detailing its purpose of seeding the random number generator, optional seed parameter, lack of return value, and provides a complete example showing how to generate a seed from microtime and produce random numbers.

PHPrandomseed
0 likes · 1 min read
PHP srand() – Seeding the Random Number Generator
Aotu Lab
Aotu Lab
Apr 29, 2016 · Frontend Development

How to Control JavaScript Randomness: Seeded Random Numbers and V8 Implementation

This article explains how JavaScript's Math.random works, why it lacks a built‑in seed, and shows practical ways to override or seed the function—including V8's internal algorithm, simple custom implementations, and real‑world use cases for reproducible randomness in web games.

V8codewarspseudo-random
0 likes · 7 min read
How to Control JavaScript Randomness: Seeded Random Numbers and V8 Implementation
Qunar Tech Salon
Qunar Tech Salon
Apr 25, 2015 · Fundamentals

Why a Java Program Using Random with Fixed Seeds Always Prints "Hello world"

Although the program uses java.util.Random with different seed values, each execution prints the same 'Hello world' because the Random instances are initialized with fixed seeds, causing the pseudo‑random generator to produce identical sequences that map to the characters forming the phrase.

Javaprogrammingpseudo-random
0 likes · 5 min read
Why a Java Program Using Random with Fixed Seeds Always Prints "Hello world"