First day learning ukrainian

Hi, currently I live in Canada and I want to visit Ukraine soon. I think it would be right to learn the language first. Wish me good luck! Slava Ukraini

reddit.com
u/Sunsighh — 2 days ago

I feel alone as a vers in gay community

I see so many are just bottoms, almost never I've seen tops or pure vers. When I'm in a relationship I'm always placed into a top place, and I immediately turn off, not because I don't like topping, but because I want my partner to desire me in both places. I have "I want to be a bottom too but my partner don't desire me" complex. In gay communities I feel the same loneliness, everyone are just strict 100% havent-ever-experiment-and-doesnt-even-want-too bottoms. Those my partners who are said to be vers, turn out to be just bottoms. My current partner somehow didn't consider me to bottom him and even said things like "you don't need too", and this echoing in my head everyday, even though it's been in the past and now he obviously desire me in both ways. I am cursed

reddit.com
u/Sunsighh — 3 days ago

Projekto "Fesperanto"

Kio vi pensas pri krei plisimpla dialekto de Esperanto? Ĉu Esperanto jam havas dialektojn?

reddit.com
u/Sunsighh — 12 days ago

Skribis etan skripton en AutoHotkey v2 por Esperanto

Skripto:

#Requires AutoHotkey v2.0

global esperanto_activated := false

~!+^o::
{
global esperanto_activated := !esperanto_activated
}

#HotIf esperanto_activated
~c & x::
{
Send "{BackSpace}"
Send "ĉ"
}
~x & c::
{
Send "{BackSpace}"
Send "Ĉ"
}
~g & x::
{
Send "{BackSpace}"
Send "ĝ"
}
~x & g::
{
Send "{BackSpace}"
Send "Ĝ"
}
~h & x::
{
Send "{BackSpace}"
Send "ĥ"
}
~x & h::
{
Send "{BackSpace}"
Send "Ĥ"
}
~j & x::
{
Send "{BackSpace}"
Send "ĵ"
}
~x & j::
{
Send "{BackSpace}"
Send "Ĵ"
}
~s & x::
{
Send "{BackSpace}"
Send "ŝ"
}
~x & s::
{
Send "{BackSpace}"
Send "Ŝ"
}
~u & x::
{
Send "{BackSpace}"
Send "ŭ"
}
~x & u::
{
Send "{BackSpace}"
Send "Ŭ"
}
#HotIf

Instalu "AutoHotkey v2"n.

Lanĉu mian skripton.

Samtempe premu ctrl+shift+alt+O por ŝalti esperantan reĝimon.

Denove samtempe premu ctrl+shift+alt+O por malŝalti esperantan reĝimon.

Samtempe premu c/g/h/u/j kaj x por skribi minusklo.

Samtempe premu x kaj c/g/h/u/j por skribi majusklo.

Por aldoni skripton al ekfunkciigo, metu ĝin tien: "C:\Users\User\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup"

(En Gugla serĉbreto kroma litero povas skribiĝi)

reddit.com
u/Sunsighh — 14 days ago

Ĉu geja felanoj ĉi tie?

Mi komencis traduki geja felana komiksoj kaj vida noveloj. Ĉu mi sola?

u/Sunsighh — 14 days ago

I've just started to learn Esperanto

I like the language, I like the idea of it, I want to contribute. an you recommend me something

reddit.com
u/Sunsighh — 19 days ago
▲ 7 r/QueerVexillology+1 crossposts

[OC] Russian LGBTQIA+ Flag

Since in Russia LGBT is considered "extremist organisation" and LGBT flags especially classic rainbow one are banned, I thought it would be cool to make other flag that is not a rainbow and not known lgbt flag so it can't be sued and also symbolyses that LGBTQIA+ russian people exist, and they are part of Russia.

Light blue symbolises homosexual men, that are considered as "less men" by homophobes, so it's not just blue but light blue. Purple symbolises bisexual people, since it's a combination of red (symbolises women) and blue (symbolises men). Purpleish pink symbolises homosexual womrn, that are considered as "too masculine" by homophobes, so it's kinda more blueish (masculine) pink. Yellow symbolises transgender people, that are considered as "middle gender between men and women / incomprehensible or unclear gender" by transphobes, so yellow symbolises "something in between" or "neither of two". White symbolises asexual people, since they are considered as "not real" by bigots, so white symbolises "something that doesn't exist" (Actually bigots often don't believe in existence of homosexual and transgender people too, so white can also mean lgbtqia+ people in general).

u/Sunsighh — 26 days ago
▲ 12 r/Zig

How to use cpp files in zig project?

src/main.zig

const std = ("std");
const c = ({
("test.h");
});

pub fn main() !void {
testcpp.hello();
}

src/test.cpp

#include<iostream>

extern "C" void hello(void) {
std::cout << "Hello";
}

src/test.h

void hello(void);

build.zig

const std = ("std");

pub fn build(b: *std.Build) void {
    const target = b.standardTargetOptions(.{});
    const optimize = b.standardOptimizeOption(.{});
    const exe = b.addExecutable(.{
        .name = "project1",
        .root_module = b.createModule(.{
            .root_source_file = b.path("src/main.zig"),
            .target = target,
            .optimize = optimize,
        }),
    });
    exe.linkLibC();
    exe.linkLibCpp();
    exe.root_module.addCSourceFile(.{
    .file = b.path("src/test.cpp"),
    .flags = &.{
    "-std=c++17",
    "-g",
    }
    });
    b.installArtifact(exe);
}

output

build.zig:14:8: error: no field or member function named 'linkLibC' in 'Build.Step.Compile'                                                          
    exe.linkLibC();                                                                                                                                  
    ~~~^~~~~~~~~                                                                                                                                     
C:\zig-x86_64-windows-0.16.0\lib\std\Build\Step\Compile.zig:1:1: note: struct declared here                                                          
const Compile = ();                                                                                                                             
^~~~~                                                                                                                                                
build.zig:14:8: note: method invocation only supports up to one level of implicit pointer dereferencing                                              
build.zig:14:8: note: use '.*' to dereference pointer                                                                                                
referenced by:                                                                                                                                       
    runBuild__anon_59134: C:\zig-x86_64-windows-0.16.0\lib\std\Build.zig:2264:33                                                                     
    main: C:\zig-x86_64-windows-0.16.0\lib\compiler\build_runner.zig:463:29                                                                          
    4 reference(s) hidden; use '-freference-trace=6' to see all references
reddit.com
u/Sunsighh — 1 month ago
▲ 1 r/itchio

Please help, it's been a week since I posted a completely normal comment to a game, there is no way it could be banned. I get "Awaiting moderator approval" thing and can't post comments anymore.

reddit.com
u/Sunsighh — 2 months ago