Skip to content

Instantly share code, notes, and snippets.

View so1ve's full-sized avatar
馃槄
At school

Ray so1ve

馃槄
At school
View GitHub Profile
@so1ve
so1ve / tags.md
Last active September 1, 2023 14:21
Novel AI tags

Nier Automata 2b:

Normal:

((masterpiece)), (((best quality))), ((ultra-detailed)), ((illustration)), ((disheveled hair)), ((frills)), (1 girl), (solo), nier automata 2b, expressionless, sword, gothic lolita, blindfold, flame, realistic, war, illustration, good light, adult lady like woman, game_cg, in the cyberpunk city, night

Sexy():

((masterpiece)), (((best quality))), ((ultra-detailed)), ((illustration)), ((disheveled hair)), ((frills)), (1 girl), (solo), nier automata 2b, expressionless, sword, gothic lolita, blindfold, flame, realistic, war, illustration, good light, adult lady like woman, game_cg, in the cyberpunk city, night, sexy squatting
@danielroe
danielroe / settings.json
Last active April 19, 2025 06:36
VScode settings for a minimal UI
{
// Disable telemetry
"telemetry.telemetryLevel": "off",
// Zen mode
"zenMode.fullScreen": false,
"zenMode.hideTabs": true,
"zenMode.centerLayout": false,
// Theming
"workbench.iconTheme": "city-lights-icons-vsc",
"editor.fontFamily": "Dank Mono",
@emilpriver
emilpriver / sitemap.xml.js
Created February 3, 2020 19:26
NextJS Sitemap example using Nextjs SSR.
import React from "react";
import axios from "axios";
const sitemapXml = data => {
let latestPost = 0;
let projectsXML = "";
data.map(post => {
const postDate = Date.parse(post.modified);
if (!latestPost || postDate > latestPost) {