LGBTQiwis

  • Want to keep track of this thread?
    Accounts can bookmark posts, watch threads for updates, and jump back to where you stopped reading.
    Create account
Does anyone in here like any of the flags, in terms of aesthetics?
Almost every flag outside of the rainbow and tranny one are horribly forced. Even those two are forced to some extent. No one looks at the rainbow flag and thinks oh yes the purple represents whatever. It's just a flag. The ones that are for niche shit where they try to give it some meaning first and think about how it looks second are ugly as shit. Fetish flags are even fucking worse. Those are comically retarded. The lesbian one has a nice colour at least.
WHAT THE FUCK IS A LITHROMANTIC
View attachment 8746192
Phone battery fucker.
Why is bottoming so fascinating?
Fascinating? Are you studying during sex or something? Do you rub your chin and make the minecraft villager noise during sex?
 
When they started adding black and brown to the flag, it was so over. Black people overall have a far lower acceptance rate of lgbt behavior than white people, but even putting that aside, it has jack shit to do with being gay. The rainbow, correct me if I'm wrong, is already meant to be all encompassing for people within the community, right? Blacks were already included, but we need to make them Super Extra Included? It just started to turn into the Democratic Party Flag, more than anything.
Ah yes... the third gender... the nigger
 
That is the point, it is a humiliation ritual for the straights who want to be a part of the community. I think it's stupid that it exists (like 99% of the other flags) but I still don't like the design philosophy behind it because imo it's meant to signal "you're not special like us, you're bland and boring"
still id say let the straights have thier flag its fun watching the men prostrate themselves infront of it, as they yell "NO HOMO".
 
While you were out having straight sex, I was studying the prostate
everyone kneeled out of respect.jpeg
 
Almost every flag outside of the rainbow and tranny one are horribly forced. Even those two are forced to some extent. No one looks at the rainbow flag and thinks oh yes the purple represents whatever. It's just a flag. The ones that are for niche shit where they try to give it some meaning first and think about how it looks second are ugly as shit.
For the most part I agree, but I like the bi flag (and not just cause I am bi) Colors are nice and they represent male/blue female/pink and purple in the middle for both. I guess you could argue it also could mean "a mix of" for bi people who like trans people but dont want to label themselves pansexual (I dont want to be associated with most pansexual people, plus that flag is uggggly)
 
For the most part I agree, but I like the bi flag (and not just cause I am bi) Colors are nice and they represent male/blue female/pink and purple in the middle for both. I guess you could argue it also could mean "a mix of" for bi people who like trans people but dont want to label themselves pansexual (I dont want to be associated with most pansexual people, plus that flag is uggggly)
The asexual flag looks pretty good, as does the MLM flag (which is distinct from gay pride in general, apparently.) I wish the flag autists went into interior design instead because some of them do manage to put together a nice palette, yet they waste it on increasingly insular labels and virtue signalling
 
I got inspired by this to make a simple script to generate nonsense-sexual flags. I am not the best at programming right now, but seems like this works:

Example:
flags_generated.png


Python:
import random

flags_to_generate = 100

def generate_html(flags_list):
  with open("flags_gen_html.html", "w", encoding="utf-8") as file:
    file.write(f"""<!DOCTYPE html>
<html>
\t<head>
\t\t<title>Random flags</title>
\t\t<meta name="viewport" content="width=device-width, initial-scale=1.0">
\t\t<meta charset="UTF-8">
\t\t<base target="_blank">
\t\t<style>
\t\t\t:root{{--f_width:200;}}
\t\t\thtml{{font:21px Monospace;}}
\t\t\t::selection{{color:#fff;background:#704fad;}}
\t\t\tbody{{color:#fff;background:linear-gradient(0deg, #bdaadb, #beb4cd);margin:0rem;background-attachment:fixed;}}
\t\t\t.container{{display:flex;flex-wrap:wrap;}}
\t\t\t.box{{border:2px solid #8a77a9;border-radius:5px;margin:0.5rem;display:flex;flex-direction:column;overflow-wrap:anywhere;padding:0.5rem;align-items:center;background:#9b8bb5;max-width:calc(var(--f_width) * 1px);}}
\t\t\t.flag{{width:calc(var(--f_width) * 1px);height:calc(var(--f_width) * 1px / 1.9);background:#000;overflow:hidden;display:flex;}}
\t\t\tp{{margin:0.5rem 0rem 0rem 0rem;}}
\t\t</style>
\t</head>
\t<body>
\t\t<div class="container">
{'\n'.join(flags_list)}
\t\t</div>
\t</body>
</html>
""")


def generate_title():
  with open("sexuality_ex.txt", "r", encoding="utf-8") as file:
    chosen = next(file, "steve")
    for i, line in enumerate(file, 1):
      if i == random.randint(0, i):
        chosen = line
    return f"{chosen.strip().capitalize()}sexual"


def generate_color():
  return "".join(f"{random.randint(0, 255):02x}" for i in range(3))


def generate_stripes(n, symmetrical):
  flex_vals = [1, 2, 3, 4]
  ratios = [1, 2, 2, 2]

  output = []
  irregular = 1 if random.randint(0, 3) >= 3 else 0

  if symmetrical:
    first_half = []

    for i in range(n // 2):
      if irregular:
        first_half.append((generate_color(), random.choices(flex_vals, weights = ratios, k = 1)[0]))
      else:
        first_half.append((generate_color(), 1))

    output.extend(first_half)

    if n & 1:
      if irregular:
        output.append((generate_color(), random.choices(flex_vals, weights = ratios, k = 1)[0]))
      else:
        output.append((generate_color(), 1))

    output.extend(first_half[::-1])

  else:
    if irregular:
      first_half_thickness = []

      for i in range(n // 2):
        thickness_value = random.choices(flex_vals, weights = ratios, k = 1)[0]
        first_half_thickness.append(thickness_value)
        output.append((generate_color(), thickness_value))

      if n & 1:
        output.append((generate_color(), random.choices(flex_vals, weights = ratios, k = 1)[0]))

      for i in range(n // 2):
        output.append((generate_color(), first_half_thickness[-(i + 1)]))

    else:
      for i in range(n):
        output.append((generate_color(), 1))

  return output


def generate_flag_box():
  direction = random.choice([1, 2])
  flex_direction = "row" if direction == 1 else "column"

  start = f"<div class=\"box\"><div class=\"flag\" style=\"flex-direction:{flex_direction};\">"
  middle = ""
  end = f"</div><p>{generate_title()}</p></div>"

  n_stripes = random.randint(2, 9)
  symmetrical = 0 if n_stripes < 3 else 1 if ((random.randint(0, 3) >= 1) and (n_stripes & 1)) else 0

  stripes_colors = generate_stripes(n_stripes, symmetrical)

  for color, thickness in stripes_colors:
    middle += f"<div style=\"background:#{color};flex:{thickness};\"></div>"

  return start + middle + end


generate_html([generate_flag_box() for n in range(flags_to_generate)])

So basically, while you have the script and txt file on the same directory, you execute and generates an HTML file with random flags and names (based on the nouns within the txt).
 

Attachments

why is it always the virgins who are the most vocal about their politics in this thread
there probably gay lol

uh i have another homo question why do gays have that voice is it something they can control
 
uh i have another homo question why do gays have that voice is it something they can control
No, that fruity voice is just a stereotype

I've seen plenty straights with fruity voice too
 
yeah ive seen both straight and gays with it
There was this kid on high school that had a really fruity voice and we used to bully the shit out of him

He wasn't gay though. Most gay people i've met are not effeminate
 
Back
Top Bottom