Skip to content

Instantly share code, notes, and snippets.

View alexisrolland's full-sized avatar
:octocat:

Alexis ROLLAND alexisrolland

:octocat:
  • Shanghai, China
View GitHub Profile
@Thingamajic
Thingamajic / Rayflux-styles.json
Created March 28, 2025 13:42
Rayflux Styles
[
{
"name": "RAYFLUX // Photo - Studio",
"prompt": "Studio photography, shot with a high-end DSLR, featuring crisp details and soft, diffused lighting, {prompt}, Shadows are rich and smooth, with natural textures emphasized. The style is clean, sharp, intimate, and effortlessly modern.",
"negative_prompt": ""
},
{
"name": "RAYFLUX // Photo - Disposable Camera",
"prompt": "Photo shot from a cheap disposable camera, {prompt}, with visible film grain and slight lens distortion.",
"negative_prompt": ""
@bastman
bastman / docker-cleanup-resources.md
Created March 31, 2016 05:55
docker cleanup guide: containers, images, volumes, networks

Docker - How to cleanup (unused) resources

Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...

delete volumes

// see: https://github.com/chadoe/docker-cleanup-volumes

$ docker volume rm $(docker volume ls -qf dangling=true)

$ docker volume ls -qf dangling=true | xargs -r docker volume rm