Showing posts with label populating data. Show all posts
Showing posts with label populating data. Show all posts

Jun 28, 2024

Artbreeder Director

For people still wanting to try generating images, and wanting to have a different experience from the usual prompt and setup ; there is a feature within Artbreeder called 'Director' which is very friendly, the way it works is very intuitive and user will get immediate feedback along the way.

https://www.artbreeder.com/create/director


Here is an example of an image generated with the Director

https://www.artbreeder.com/image/682613a8460a69bf1bbe36f9a7cc


Using this prompt:

a muscular female warrior with platinum blonde hair in a mohawk style, captivating big anime eyes, beautiful face, scars on face, serious expression, futuristic sci-fi armor showing shoulder and cleavage, adorned with a huge red star, apocalyptic settings with red rock planet background, spaceship hovering behind, in artgerm drawing style, very detailed face, digital illustration, character design, artstation

Apr 18, 2024

ArtBreeder openpose

There are tools available that will make it possible to use a simple picture as an avatar


And put that person into a situation (following a specific pose) like these:



How?

Simply by using Artbreeder poser feature

https://www.artbreeder.com/create/poser?fromCreate=1

and https://openposes.com/


Jan 8, 2019

Really Random Game Generator Idea

Really Random Game Generator Idea

-The Campaign's Skeleton-
Regions of Season: Roll 1d4. 
1: All of the seasons take place in the same region the characters are from
2: All the seasons take place in a region that is randomly selected
3: All the seasons take place in separate regions that are randomly selected.
4: All the missions take place in separate regions. 

-Mission 1: Takes place in Roguelandia and comprises of the following objective.
--Sting; Grade 5 sting operation.
-Mission 2: Takes place in Scorchedlandia and comprises of the following objective
– Grade 2 Rescue 
– Grade 2 Infiltrate
– Grade 5 Test
– Grade 4 Crucial Skill Check
-Mission 3: Also takes place in Icelandia and comprises of the following objectives
– Grade 4 Crucial Skill Check
– Grade 4 Repair
– Grade 4 Infiltrate
– Grade 2 Confirm

Jun 27, 2017

SQLite: Loop simplified

As I was discussing this last tip using a simile loop in SQLite to populate data entry http://blogmymix.blogspot.com/2017/06/sqlite-using-table-to-loop.html

A comment was made that the tRange table was not absolutely necessary
as the following command would suffice:

insert into tTarget(i)  select ('My test without tRange: ' || tIndex.id)  from tIndex where tIndex.id <=10000 ;

or with proper formatting

insert into tTarget(i)  
  select ('My test without tRange: ' || tIndex.id)  
  from tIndex where tIndex.id <=10000 ;

Popular Posts