Loden

@loden
0 Followers
4 Following
23 Posts
Software Architect

The main determining factor of password strength is length. But remembering a long password of random characters is difficult.

Enter the idea of 4 word passwords:
https://xkcd.com/936/

Choosing 4 random words leads to passwords that would take over hundreds years to guess. Yet, these passwords can be easy to remember.

I've created a small utility that generates these passwords for you.

Check it out on Github: https://github.com/lodenrogue/password-generator

#github #security #commandline #password

Password Strength

xkcd

3/3

5. Negative prompts can be used to specify what should be avoided in the image

This is an excellent guide to learn more about fine tuning Stable Diffusion prompts: https://stable-diffusion-art.com/prompt-guide/

#stablediffusion #ai #art #imagegeneration #machinelearning

Stable Diffusion prompt: a definitive guide - Stable Diffusion Art

Developing a process to build good prompts is the first step every Stable Diffusion user tackles. This article summarizes the process and techniques developed

Stable Diffusion Art

2/3

2. Adding specific details to the subject, such as appearance, clothing, and background, helps generate more accurate images

3. Prompt building is an iterative process where keywords are added gradually to assess their effect on the generated images

4. The style category allows for specifying the artistic style of the image, such as hyperrealistic, surrealist, or fantasy

#stablediffusion #ai #art #imagegeneration #machinelearning

1/3

Fine tuning Stable Diffusion prompts can be art in itself. Here are some tips on how to do just that:

1. A good prompt should be detailed and specific, and keywords can be used from various categories such as subject, medium, style, artist, website, resolution, additional details, color, and lighting

#stablediffusion #ai #art #imagegeneration #machinelearning

Some interesting websites I've found on Stable Diffusion (AI image generation):

SeaArt - https://www.seaart.ai/home
CivitAI - https://civitai.com/
HuggingFace - https://huggingface.co/spaces/stabilityai/stable-diffusion
PatienceAI - https://www.patience.ai/

#ai #stablediffusion #imagegeneration #machinelearning

Unleash Your Imagination: Create, Share, and Generate.

I was exploring my IRC chatlogs and wanted a way to get all urls mentioned in all channels.

So, I created a small command line utility to extract urls from standard input:
https://github.com/lodenrogue/urls

Usage:

command | python3 urls.py

#unix #github #commandline #linux #macos

GitHub - lodenrogue/urls: Extract urls from stdin

Extract urls from stdin. Contribute to lodenrogue/urls development by creating an account on GitHub.

GitHub

4/4

4. Use tools in preference to unskilled help to lighten a programming task, even if you have to detour to build the tools and expect to throw some of them out after you've finished using them.

#unix #software #linux

3/4

3. Design and build software, even operating systems, to be tried early, ideally within weeks. Don't hesitate to throw away the clumsy parts and rebuild them.

#unix #software #linux

2/4

2. Expect the output of every program to become the input to another, as yet unknown, program. Don't clutter output with extraneous information. Avoid stringently columnar or binary input formats. Don't insist on interactive input.

#unix #software #linux

1/4

The unix philosophy is powerful and leads to modular, reusable, and easy to understand systems.

From Doug McIlroy in Bell System Technical Journal from 1978:

1. Make each program do one thing well. To do a new job, build afresh rather than complicate old programs by adding new "features".

#unix #software #linux