Войти в систему

Home
    - Создать дневник
    - Написать в дневник
       - Подробный режим

LJ.Rossia.org
    - Новости сайта
    - Общие настройки
    - Sitemap
    - Оплата
    - ljr-fif

Редактировать...
    - Настройки
    - Список друзей
    - Дневник
    - Картинки
    - Пароль
    - Вид дневника

Сообщества

Настроить S2

Помощь
    - Забыли пароль?
    - FAQ
    - Тех. поддержка



Пишет nancygold ([info]nancygold)
@ 2024-08-31 13:00:00


Previous Entry  Add to memories!  Tell a Friend!  Next Entry
Настроение: amused
Музыка:https://www.youtube.com/watch?v=l97zTQ9CP40
Entry tags:computing

Minecraft
Never got into the Minecraft hype or all these multiplayer MMORPGs games in general.
I despise action games, where you have to associate yourself with any single character.

But I've enjoyed several games similar to Minecraft, like the Dungeon Keeper.

Anyway, since Minecraft is brandished as the pinnacle of programming and game design, lets check its entity code, decompiled for us by the wonderful Chinese people and exposed at github in all its Java glory.

https://github.com/WangTingZheng/mcp940/blob/master/src/minecraft/net/minecraft/entity/Entity.java
https://github.com/WangTingZheng/mcp940/blob/master/src/minecraft/net/minecraft/tileentity/TileEntity.java

Yeah! Thats what peak performance looks like! Each time you see a Java program, you can guess what is behind the multigigabyte jar file with its million of .class files... I read they have specially trained monkeys just to write the getter and setter methods.

public abstract class Entity implements ICommandSender
{
    private static final Logger LOGGER = LogManager.getLogger();
    private static final List<ItemStack> EMPTY_EQUIPMENT = Collections.<ItemStack>emptyList();
    private static final AxisAlignedBB ZERO_AABB = new AxisAlignedBB(0.0D, 0.0D, 0.0D, 0.0D, 0.0D, 0.0D);
    private static double renderDistanceWeight = 1.0D;
    private static int nextEntityID;
    private int entityId;

    /**
     * Blocks entities from spawning when they do their AABB check to make sure the spot is clear of entities that can
     * prevent spawning.
     */
    public boolean preventEntitySpawning;
    private final List<Entity> riddenByEntities;
    protected int rideCooldown;
    private Entity ridingEntity;
    public boolean forceSpawn;

    /** Reference to the World object. */
    public World world;
    public double prevPosX;
    public double prevPosY;
    public double prevPosZ;

    /** Entity position X */
    public double posX;

    /** Entity position Y */
    public double posY;

    /** Entity position Z */
    public double posZ;

    /** Entity motion X */
    public double motionX;

    /** Entity motion Y */
    public double motionY;

    /** Entity motion Z */
    public double motionZ;

    /** Entity rotation Yaw */
    public float rotationYaw;

    /** Entity rotation Pitch */
    public float rotationPitch;
    public float prevRotationYaw;
    public float prevRotationPitch;

    /** Axis aligned bounding box. */
    private AxisAlignedBB boundingBox;
    public boolean onGround;

    /**
     * True if after a move this entity has collided with something on X- or Z-axis
     */
    public boolean isCollidedHorizontally;

    /**
     * True if after a move this entity has collided with something on Y-axis
     */
    public boolean isCollidedVertically;

    /**
     * True if after a move this entity has collided with something either vertically or horizontally
     */
    public boolean isCollided;
    public boolean velocityChanged;
    protected boolean isInWeb;
    private boolean isOutsideBorder;

    /**
     * gets set by setEntityDead, so this must be the flag whether an Entity is dead (inactive may be better term)
     */
    public boolean isDead;

    /** How wide this entity is considered to be */
    public float width;

    /** How high this entity is considered to be */
    public float height;

    /** The previous ticks distance walked multiplied by 0.6 */
    public float prevDistanceWalkedModified;

    /** The distance walked multiplied by 0.6 */
    public float distanceWalkedModified;
    public float distanceWalkedOnStepModified;
    public float fallDistance;

    /**
     * The distance that has to be exceeded in order to triger a new step sound and an onEntityWalking event on a block
     */
    private int nextStepDistance;
    private float nextFlap;

    /**
     * The entity's X coordinate at the previous tick, used to calculate position during rendering routines
     */
    public double lastTickPosX;

    /**
     * The entity's Y coordinate at the previous tick, used to calculate position during rendering routines
     */
    public double lastTickPosY;

    /**
     * The entity's Z coordinate at the previous tick, used to calculate position during rendering routines
     */
    public double lastTickPosZ;

    /**
     * How high this entity can step up when running into a block to try to get over it (currently make note the entity
     * will always step up this amount and not just the amount needed)
     */
    public float stepHeight;

    /**
     * Whether this entity won't clip with collision or not (make note it won't disable gravity)
     */
    public boolean noClip;

    /**
     * Reduces the velocity applied by entity collisions by the specified percent.
     */
    public float entityCollisionReduction;
    protected Random rand;

    /** How many ticks has this entity had ran since being alive */
    public int ticksExisted;
    private int fire;

    /**
     * Whether this entity is currently inside of water (if it handles water movement that is)
     */
    protected boolean inWater;

    /**
     * Remaining time an entity will be "immune" to further damage after being hurt.
     */
    public int hurtResistantTime;
    protected boolean firstUpdate;
    protected boolean isImmuneToFire;
    protected EntityDataManager dataManager;
    protected static final DataParameter<Byte> FLAGS = EntityDataManager.<Byte>createKey(Entity.class, DataSerializers.BYTE);
    private static final DataParameter<Integer> AIR = EntityDataManager.<Integer>createKey(Entity.class, DataSerializers.VARINT);
    private static final DataParameter<String> CUSTOM_NAME = EntityDataManager.<String>createKey(Entity.class, DataSerializers.STRING);
    private static final DataParameter<Boolean> CUSTOM_NAME_VISIBLE = EntityDataManager.<Boolean>createKey(Entity.class, DataSerializers.BOOLEAN);
    private static final DataParameter<Boolean> SILENT = EntityDataManager.<Boolean>createKey(Entity.class, DataSerializers.BOOLEAN);
    private static final DataParameter<Boolean> NO_GRAVITY = EntityDataManager.<Boolean>createKey(Entity.class, DataSerializers.BOOLEAN);

    /** Has this entity been added to the chunk its within */
    public boolean addedToChunk;
    public int chunkCoordX;
    public int chunkCoordY;
    public int chunkCoordZ;
    public long serverPosX;
    public long serverPosY;
    public long serverPosZ;

    /**
     * Render entity even if it is outside the camera frustum. Only true in EntityFish for now. Used in RenderGlobal:
     * render if ignoreFrustumCheck or in frustum.
     */
    public boolean ignoreFrustumCheck;
    public boolean isAirBorne;
    public int timeUntilPortal;

    /** Whether the entity is inside a Portal */
    protected boolean inPortal;
    protected int portalCounter;

    /** Which dimension the player is in (-1 = the Nether, 0 = normal world) */
    public int dimension;

    /** The position of the last portal the entity was in */
    protected BlockPos lastPortalPos;

    /**
     * A horizontal vector related to the position of the last portal the entity was in
     */
    protected Vec3d lastPortalVec;

    /**
     * A direction related to the position of the last portal the entity was in
     */
    protected EnumFacing teleportDirection;
    private boolean invulnerable;
    protected UUID entityUniqueID;
    protected String cachedUniqueIdString;

    /** The command result statistics for this Entity. */
    private final CommandResultStats cmdResultStats;
    protected boolean glowing;
    private final Set<String> tags;
    private boolean isPositionDirty;
    private final double[] pistonDeltas;
    private long pistonDeltasGameTime;

    public Entity(World worldIn)
    {
        this.entityId = nextEntityID++;
        this.riddenByEntities = Lists.<Entity>newArrayList();
        this.boundingBox = ZERO_AABB;
        this.width = 0.6F;
        this.height = 1.8F;
        this.nextStepDistance = 1;
        this.nextFlap = 1.0F;
        this.rand = new Random();
        this.fire = -this.getFireImmuneTicks();
        this.firstUpdate = true;
        this.entityUniqueID = MathHelper.getRandomUUID(this.rand);
        this.cachedUniqueIdString = this.entityUniqueID.toString();
        this.cmdResultStats = new CommandResultStats();
        this.tags = Sets.<String>newHashSet();
        this.pistonDeltas = new double[] {0.0D, 0.0D, 0.0D};
        this.world = worldIn;
        this.setPosition(0.0D, 0.0D, 0.0D);

        if (worldIn != null)
        {
            this.dimension = worldIn.provider.getDimensionType().getId();
        }

        this.dataManager = new EntityDataManager(this);
        this.dataManager.register(FLAGS, Byte.valueOf((byte)0));
        this.dataManager.register(AIR, Integer.valueOf(300));
        this.dataManager.register(CUSTOM_NAME_VISIBLE, Boolean.valueOf(false));
        this.dataManager.register(CUSTOM_NAME, "");
        this.dataManager.register(SILENT, Boolean.valueOf(false));
        this.dataManager.register(NO_GRAVITY, Boolean.valueOf(false));
        this.entityInit();
    }

    public int getEntityId()
    {
        return this.entityId;
    }


(Добавить комментарий)


(Анонимно)
2024-08-31 13:29 (ссылка)
The genre "Sadkov condescends on lack of data orientedness, giant base class" continues.

>since Minecraft is brandished as the pinnacle of programming

Say what? There is actually completely opposite stereotype about minecraft -- that it's a good game, but not preoccupied with programming at all. That kitchen made DIY estradiol has some serious side effects.

>Each time you see a Java program

When they implement Project Valhalla, java will be the fastest GCd language.

>peak performance

You don't need peak performance to make a several billion dollar game. And it's higher performance than your interpreted POS.

>I despise action games, where you have to associate yourself with any single character.

Crazy person.

(Ответить) (Ветвь дискуссии)


[info]nancygold
2024-08-31 13:40 (ссылка)
>You don't need peak performance to make a several billion dollar game.

You don't need to be a good looking, competent or honest Gigachad to rule over a huge 140 million bydlo shithole.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 13:46 (ссылка)
>good looking, competent or honest

You aren't all these things either. So it's communist and democratic if the requirements aren't that high. Right? You are a communist you said.

And Minecraft is popular world over. Turns out game design and producing the right game at the right time for the right niche are more important.

Making a high performing engine without an interesting game is an autist exercise.

(Ответить) (Уровень выше) (Ветвь дискуссии)


[info]nancygold
2024-08-31 13:49 (ссылка)
I don't believe in democracy, other than the direct democracy.
I.e. if the leader is a total failure, just kill him.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 14:01 (ссылка)
Anyway, сперва добейся.

Nobody is interested in your bit packing or that your interpreter is barely faster than Python. People are interested in the end product, and a language, especially interpreted one isn't a product in today's market. Unless you know how to automate separation logic proofs or something, which you don't.

Yes, hide behind "I don't care about anyone's opinion but my own", but that strategy will only worsen the "I injected denaturated alcohol into my balls and now cook my own estradiol injections at kitchen" condition.

(Ответить) (Уровень выше) (Ветвь дискуссии)


[info]nancygold
2024-08-31 14:43 (ссылка)
>People are interested in the...

Just legalize the heavy drugs already.
That will meet the bydlo's demand.
And also improve population IQ.
Quicker than all these Ukraine wars.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 14:59 (ссылка)
There has to be a substantial tax base so that the idea of supporting able bodied parasites like you looks like an acceptable proposition. "legalize the heavy drugs already" isn't in your interest.

>That will meet the bydlo's demand.

Nah, normal people by and large are not self-destructive. The danger of heavy drugs is well established in the culture. All these Trainspotting-like movies, etc. It will only increase the overall parasitic population by 2x, maybe 3x max.

(Ответить) (Уровень выше) (Ветвь дискуссии)


[info]nancygold
2024-08-31 15:18 (ссылка)
>There has to be a substantial tax base so that the idea of supporting able bodied parasites like you looks like an acceptable proposition. "legalize the heavy drugs already" isn't in your interest.

Hope robots will solve that soon ~niya ^__^

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 23:06 (ссылка)
wow
this is one of the most intelligent dialogs i've read here

(Ответить) (Уровень выше)


(Анонимно)
2024-08-31 19:00 (ссылка)
How many leaders have you killed yet?

(Ответить) (Уровень выше)


[info]nancygold
2024-08-31 13:48 (ссылка)
>When they implement Project Valhalla, java will be the fastest GCd language.

"Bandera comes, order restores." (c) true blievers

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 13:57 (ссылка)
What? Pre-release JVM tests are already good.

(Ответить) (Уровень выше)


(Анонимно)
2024-08-31 14:16 (ссылка)
>blievers

Может быть у тебя появились опечатки от недосыпа, потому что ты не спишь ночью 8 часов

Здоровее сон -> меньше ошибок в коде

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 14:53 (ссылка)
когда печатаешь 120 wpm такие опечатки это нормально. Хуле тут блять с опечатками бороться в говносрачах ничем?

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 15:17 (ссылка)
Лол, последовал своей рекомендации, и тут же совершил опечатку.

s/ничем/ни о чем/

(Ответить) (Уровень выше)


(Анонимно)
2024-08-31 20:03 (ссылка)
>120 wpm

хуясе ты дятел

(Ответить) (Уровень выше)


(Анонимно)
2024-08-31 15:10 (ссылка)
Did you try estrogen gels before starting injections? Why do you think they don't work for you. Yesterday you can test hormone levels for little money in Netherlands. Maybe you don't even need to "cook shit in the kitchen" or whatever.

And what's wrong with estrogen in the pill form? I read that it shouldn't stress liver too much.

(Ответить) (Ветвь дискуссии)


(Анонимно)
2024-08-31 15:10 (ссылка)
s/Yesterday/Yesterday I read that/

(Ответить) (Уровень выше)


[info]nancygold
2024-08-31 15:19 (ссылка)
I love needles.

(Ответить) (Уровень выше)


[info]nancygold
2024-08-31 15:22 (ссылка)
>Yesterday you can test hormone levels for little money in Netherlands.

You need GP reference for that, and they refuse since I'm not yet in gender clinic, which takes many years wait list. In fact, I got HRT meds only after treating the GGD with burning their office with molotovs. They called cops on me, and cops were basically "calls us when there is a corpse", so they approved these light HRT plasters for me in the "hope you choke on them" manner.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 15:31 (ссылка)
>You need GP reference for that

If you want it covered under insurance. I was talking about for money, out of pocket.

>treating the GGD with burning their office with molotovs

LOL. Predictable. Causing a scene, burning all the bridges, threatening violence.

>since I'm not yet in gender clinic, which takes many years wait list.

So, why aren't you working towards that, while using the "non-official" stuff? You can move into different municipality and start a new. I doubt they have a database for "violent trans freaks". You should be able to act relatively normal for like 15 minutes, right? Right? Walking down that path could make for example gel HRT covered under insurance, so either free or cheaper.

And "I like needles" isn't a justification for potentially ruining one's health with chemically dirty shit.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 15:34 (ссылка)
>could make for example gel HRT covered under insurance

And would also allow you to change your legal gender and name.

Aren't you still Nikita Sadkov legally?

(Ответить) (Уровень выше) (Ветвь дискуссии)


[info]nancygold
2024-08-31 15:58 (ссылка)
It is near impossible to change one's legal name in Netherlands and the process spans many years and court hearings and lot of money. Dutch citizens have it easier, but not much.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 16:00 (ссылка)
>Dutch citizens

You aren't a dutch citizen? I thought refugees get at least the equivalent. What's your legal status?

(Ответить) (Уровень выше) (Ветвь дискуссии)


[info]nancygold
2024-08-31 16:02 (ссылка)
No. My status is residency permit holder.
There is a lot of issues changing name and gender, especially since Netherlands respects the laws of my country of citizenship - Russia, which recently banned legal gender changes.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 16:05 (ссылка)
What's stopping you from becoming a Dutch citizen? There should be a path for legal residency permit holders after several years. It's usually like that immigration wise.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 16:17 (ссылка)
Misplaced these replies:

https://lj.rossia.org/users/nancygold/200932.html?thread=1746404
https://lj.rossia.org/users/nancygold/200932.html?thread=1746660

(Ответить) (Уровень выше)


[info]nancygold
2024-08-31 17:23 (ссылка)
That requires completing the language school, which will never unsuspend me.
The only other option is asking Den Haag to move me to a more liberal city, where they are okay with whores.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 18:08 (ссылка)
>which will never unsuspend me.

You have a right for this education. They are technically violating your rights. So there must be some legal recourse, at least theoretically. (Yes, I know lawyers cost money, but sometimes, not sure about Netherlands, you can file petition all by yourself, but you don't know the language, and refuse to learn it on your own)

>asking Den Haag to move me to a more liberal city, where they are okay with whores.

Then fucking do it. Without citizenship you can't travel, can't change your legal name, and without language can't navigate Dutch shit competently.

(Ответить) (Уровень выше)


(Анонимно)
2024-08-31 23:13 (ссылка)
У вас там только одна языковая школа на весь город?

(Ответить) (Уровень выше) (Ветвь дискуссии)

(без темы) - [info]nancygold, 2024-09-01 02:24:44

(Анонимно)
2024-09-01 09:47 (ссылка)
www.nt2.nl/en/lesmateriaal/beginners/diglin/100-363_DigLin-Nederlands-jaarlicentie#inhoud

Обучение с 0 до B1, стоит €36,50 на год доступа, на полгода € 24,50. Там если захочешь, еще сможешь докупить 3 книжки, но это необязательно. Сайт же гораздо удобнее, чем оффлайн учеба. Не надо тратить время на дорогу, сиди себе дома и готовься в любое время, когда тебе удобно. Начни уже сегодня. Японский ближайшие пару лет точно может подождать, он не срочный. Сейчас важнее все время направить на голландский.


www.nt2.nl/en/examens/inburgeringsexamen_in_nederland_niveau_a2/alle_uitgaven/101-13_KNM-examentraining

Подготовка к Kennis van de Nederlandse Maatschappij плюс пробный экзамен, годовой доступ € 39,95, на полгода € 29,95, на месяц € 12,50.


www.nt2.nl/en/examens/staatsexamen_nt2_programma_1_niveau_b1/alle_uitgaven/100-395_KNM-oefenexamens#omschrijving

Два пробных экзамена Kennis van de Nederlandse Maatschappij на неделю € 15,75 с указанием ошибок и рекомендациями.




(Ответить) (Уровень выше) (Ветвь дискуссии)

(без темы) - [info]nancygold, 2024-09-01 12:16:59
(без темы) - (Анонимно), 2024-09-01 12:48:21
(без темы) - (Анонимно), 2024-09-01 14:01:01
(без темы) - (Анонимно), 2024-09-01 14:10:26

(Анонимно)
2024-08-31 16:03 (ссылка)
>spans many years

So? That's normal. It's probably like couple of visits a year, filling out papers.

>court hearings and lot of money.

Well, if you don't want to change your legal name... fine...

Said court hearings are automatic, there won't be any actual proceedings. It's just bureaucracy, so it shouldn't be prohibitively expensive over the span of "many years".

Like do you want to have "Nikita Sadkov" on your grave, or something?

(Ответить) (Уровень выше) (Ветвь дискуссии)


[info]nancygold
2024-08-31 17:27 (ссылка)
I also need money for facial feminization surgery and for the bottom surgery. It is far more important to remove the penis than to change the id card. Medical transitioning is always more important than any social stuff. Fitting in with others was never my goal.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 18:10 (ссылка)
>I also need money

Do you need money? As far as my reading FFS in the Netherlands is covered by insurance if you go though all the proper bureaucracy. It will take 4 years, but you'd need many years anyway to get money for surgery, even if you worked.

(Ответить) (Уровень выше)


(Анонимно)
2024-08-31 18:22 (ссылка)
>is always more important than any social stuff.

Both the legal status change and the surgeries go hand in hand when you go through the proper procedures.

(Ответить) (Уровень выше)


(Анонимно)
2024-08-31 15:38 (ссылка)
>Causing a scene, burning all the bridges, threatening violence.

I mean, you ruined your path to the gender clinic by doing that. At least where you live right now. Should have thought it through, and started using non-official shit instead, while patiently working through the beurocracy.

And you not knowing their language after years there doesn't endear you to them.

Anyway, another confirmation that you are your own foremost enemy.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 15:42 (ссылка)
>that you are your own foremost enemy.

Like all these complaints about evil EU, gay infested Netherlands, are literally nothing, insubstantial BS, when you literally threaten people who you potentially depend on with violence, and come dressed as a whore, while talking back rudely to your language teacher. Fucking nutcase.

"Everything should be available and there should be no bureaucracy, or else they are transphobic and should die", isn't how the world works. Going against this is literally smashing one's head against a solid wall for nothing, not leaving even a scratch.

(Ответить) (Уровень выше) (Ветвь дискуссии)


[info]nancygold
2024-08-31 15:56 (ссылка)
>you literally threaten people who you potentially depend on with violence

I only begin threatening people when they refuse to help me when I ask nicely.
What I learned, that asking nicely almost never works in Netherlands.
But threats do usually work.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 15:59 (ссылка)
You got your useless plasters, but can't get gels, can't proceed towards gender clinic. Good luck with threatening everybody the entire way.

(Ответить) (Уровень выше) (Ветвь дискуссии)


[info]nancygold
2024-08-31 16:01 (ссылка)
I don't need gels. I need injections, preferably implants, which I will have to refill once every 6 months.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 16:07 (ссылка)
>I don't need gels.

If gels are the only effective and chemically pure thing available you do need gels. "I want shit that isn't available" is just tantrum-think.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 16:13 (ссылка)
"To become a naturalised Dutch citizen you must usually first pass a civic integration exam. This is also known as the naturalisation test. Passing the test proves you have knowledge of the Dutch language and Dutch society."

LUL. What a dumb motherfucker. This is fucking hilarious how you sabotage yourself.

(Ответить) (Уровень выше)


[info]nancygold
2024-08-31 17:19 (ссылка)
Nothing is purer than injection.

(Ответить) (Уровень выше) (Ветвь дискуссии)

(без темы) - (Анонимно), 2024-08-31 17:51:32

(Анонимно)
2024-08-31 16:15 (ссылка)
Like it means they'll be able to deport you legally after the war ends, after you do some stupid violent threat thing. What the hell are you even thinking dropping out of the language courses, and not having a transgender paperwork, so that they wouldn't be able to deport you, because Russia violates LGBT rights.

(Ответить) (Уровень выше) (Ветвь дискуссии)


[info]nancygold
2024-08-31 17:19 (ссылка)
I haven't dropped. These transphobes kicked me out, because I'm not conservative enough for their christian community.

(Ответить) (Уровень выше) (Ветвь дискуссии)

(без темы) - (Анонимно), 2024-08-31 17:50:45
(без темы) - [info]nancygold, 2024-09-01 12:17:45
(без темы) - (Анонимно), 2024-09-01 12:30:24
(без темы) - [info]nancygold, 2024-09-01 15:51:41
(без темы) - (Анонимно), 2024-09-01 15:58:06
(без темы) - (Анонимно), 2024-08-31 17:55:39
(без темы) - (Анонимно), 2024-08-31 17:59:05
(без темы) - [info]nancygold, 2024-09-01 12:18:37
(без темы) - (Анонимно), 2024-09-01 12:33:00
(без темы) - (Анонимно), 2024-09-01 14:36:06
(без темы) - [info]nancygold, 2024-09-01 15:49:58
(без темы) - (Анонимно), 2024-09-01 15:56:51
(без темы) - (Анонимно), 2024-08-31 20:22:13
(без темы) - [info]nancygold, 2024-09-01 15:50:59
(без темы) - (Анонимно), 2024-09-01 15:59:50

(Анонимно)
2024-08-31 18:20 (ссылка)
Ok, you don't need gels. What about the gender clinic? How is that working out for you?

(Ответить) (Уровень выше)


[info]nancygold
2024-08-31 15:55 (ссылка)
You can't buy anything without a prescription in EU.
And they only prescribe monopolist meds. No generics allowed.
Anything you order from Turkey or China has 50% chance being seize by customs.
Once customs seize a single package, your address will get niggerlisted.
Meaning they will be manually checking everything you order.
Welcome to the real fascist hell.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 15:57 (ссылка)
>You can't buy anything without a prescription in EU.

You immediately forgot the context. I was talking about testing hormone levels. Whatever.

(Ответить) (Уровень выше) (Ветвь дискуссии)


[info]nancygold
2024-08-31 15:59 (ссылка)
Again, nobody will test you without a reference.
In EU everything works through GPs.

(Ответить) (Уровень выше) (Ветвь дискуссии)


[info]nancygold
2024-08-31 16:00 (ссылка)
EU is not America or Russia, where you can solve problems with money
EU is a fascist gulag.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-08-31 16:04 (ссылка)
What is this?

https://onedayclinic.nl/en/bloedtest-hormonen-psa/

"Contact us without referral
Recognised laboratories
Cash payments possible"

(Ответить) (Уровень выше) (Ветвь дискуссии)


[info]nancygold
2024-08-31 17:00 (ссылка)
>€ 165

No. Thanks. I would rather increase estradiol injection to make sure it isn't too low.

(Ответить) (Уровень выше) (Ветвь дискуссии)

(без темы) - (Анонимно), 2024-08-31 17:02:42
(без темы) - (Анонимно), 2024-08-31 17:05:08
(без темы) - [info]nancygold, 2024-08-31 17:22:02
(без темы) - [info]nancygold, 2024-08-31 17:24:29
(без темы) - (Анонимно), 2024-08-31 18:22:21
Заботливый subhuman strikes again - (Анонимно), 2024-08-31 18:29:27
Re: Заботливый subhuman strikes again - [info]nancygold, 2024-09-01 12:20:32
Re: Заботливый subhuman strikes again - (Анонимно), 2024-09-01 12:34:59
Re: Заботливый subhuman strikes again - [info]nancygold, 2024-09-01 15:48:19
Re: Заботливый subhuman strikes again - (Анонимно), 2024-09-01 16:02:13
Re: Заботливый subhuman strikes again - (Анонимно), 2024-09-01 16:05:41
(без темы) - (Анонимно), 2024-08-31 17:37:11
(без темы) - (Анонимно), 2024-08-31 18:18:37
(без темы) - (Анонимно), 2024-08-31 20:24:45
(без темы) - (Анонимно), 2024-08-31 20:48:44
(без темы) - (Анонимно), 2024-08-31 20:51:32
(без темы) - (Анонимно), 2024-08-31 20:52:14
(без темы) - (Анонимно), 2024-09-01 00:06:59
(без темы) - [info]nancygold, 2024-09-01 12:22:49
(без темы) - (Анонимно), 2024-09-01 13:07:08
(без темы) - [info]nancygold, 2024-09-01 15:45:28
(без темы) - (Анонимно), 2024-09-01 16:11:40
(без темы) - (Анонимно), 2024-09-01 17:13:38
(без темы) - (Анонимно), 2024-08-31 17:45:10
(без темы) - [info]nancygold, 2024-09-01 12:23:24
(без темы) - (Анонимно), 2024-09-01 14:16:53
(без темы) - (Анонимно), 2024-08-31 21:46:07
(без темы) - (Анонимно), 2024-08-31 22:13:45
(без темы) - [info]nancygold, 2024-09-01 13:31:50
(без темы) - (Анонимно), 2024-09-01 14:05:14
(без темы) - [info]nancygold, 2024-09-01 12:25:11
(без темы) - (Анонимно), 2024-09-01 12:37:15
(без темы) - [info]nancygold, 2024-09-01 13:34:00
(без темы) - (Анонимно), 2024-09-01 13:50:57
(без темы) - [info]nancygold, 2024-09-01 15:44:07
(без темы) - (Анонимно), 2024-09-01 16:07:59
(без темы) - (Анонимно), 2024-09-01 15:30:45
(без темы) - (Анонимно), 2024-09-01 16:23:43
(без темы) - [info]nancygold, 2024-09-01 20:23:44
(без темы) - (Анонимно), 2024-09-01 20:30:14
(без темы) - (Анонимно), 2024-09-01 20:32:34
(без темы) - (Анонимно), 2024-09-01 20:43:37
(без темы) - [info]nancygold, 2024-09-01 20:27:09
(без темы) - (Анонимно), 2024-09-01 20:30:50
(без темы) - (Анонимно), 2024-09-01 20:38:17
(без темы) - [info]nancygold, 2024-09-01 21:08:25
Disgusting globalism - (Анонимно), 2024-09-01 21:41:00
Re: Disgusting globalism - [info]nancygold, 2024-09-01 21:59:03
Re: Disgusting globalism - (Анонимно), 2024-09-01 22:08:18
Re: Disgusting globalism - [info]nancygold, 2024-09-02 12:38:57
Re: Disgusting globalism - (Анонимно), 2024-09-02 13:25:24
Re: Disgusting globalism - (Анонимно), 2024-09-01 22:18:36
Re: Disgusting globalism - (Анонимно), 2024-09-01 22:24:13
Re: Disgusting globalism - [info]nancygold, 2024-09-02 12:40:06
Re: Disgusting globalism - (Анонимно), 2024-09-02 13:23:26
Re: Disgusting globalism - (Анонимно), 2024-09-02 13:28:28
Re: Disgusting globalism - (Анонимно), 2024-09-02 13:34:48
Re: Disgusting globalism - (Анонимно), 2024-09-02 13:30:10
Re: Disgusting globalism - (Анонимно), 2024-09-01 22:25:39

[info]necax
2024-08-31 16:54 (ссылка)
Sadkoff is not sick, he's a sicko.

(Ответить) (Ветвь дискуссии)


(Анонимно)
2024-08-31 20:25 (ссылка)
Get a mirror, schizo.

(Ответить) (Уровень выше)


(Анонимно)
2024-08-31 18:56 (ссылка)
And yet Minecraft is the best-selling video game ever, whereas all the people who know about Spell of Mastery can fit comfortably in a single room. I wonder why?

(Ответить)


(Анонимно)
2024-08-31 21:36 (ссылка)
The game has decent soundtrack btw.

(Ответить)


(Анонимно)
2024-08-31 22:31 (ссылка)
Markus Persson, the creator of Minecraft, has the middle name Alexej. A good reason to dislike the game, right, Sadkov?

(Ответить) (Ветвь дискуссии)


[info]nancygold
2024-09-01 12:27 (ссылка)
Thanks! Didn't knew it is a slavjank.

(Ответить) (Уровень выше)


(Анонимно)
2024-09-01 08:47 (ссылка)
Поразительно все-таки сколько людей здесь хочет решить проблемы Нэнси.
Вникнуть во все, посоветовать решения.
Анон добрая душа!

(Ответить) (Ветвь дискуссии)


(Анонимно)
2024-09-01 09:39 (ссылка)
Выудил из Садкова за последние два дня достаточно инфы, чтоб понять, что его наезды на EU, пидоров, трансгедеров и прочее почти полностью безосновательны. Ну поселили не в самый Амстердам, квартал красных фонарей разве что. И инъекции эстрадиола зареганы только в Чехии -- a great crime against transsexuals!

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-09-01 11:26 (ссылка)
Ценная информация...

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-09-01 11:44 (ссылка)
Somewhat entertaining. Теперь каждый раз когда Садков пиздит про дискриминацию транссекусалов, ему можно напомнить, что он угрожал забросать докторов молотовыми.

But yeah. Скучновато теперь -- тема изжила себя. Ждем новых приключений нашей антисоциальной хуеженщины.

(Ответить) (Уровень выше)


[info]nancygold
2024-09-01 12:29 (ссылка)
>И инъекции эстрадиола зареганы только в Чехии

Yet Japan and America have factory injections readily available and even estradiol implants, if you have enough money.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-09-01 12:39 (ссылка)
So? Welcome the the reality where countries, borders, customs, drug approval exist.

(Ответить) (Уровень выше) (Ветвь дискуссии)


[info]nancygold
2024-09-01 13:31 (ссылка)
That is why I'm communist

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-09-01 14:03 (ссылка)
Communism is about workers of the world who unite. You aren't a worker.

You are Sadkovist, where Sadkovism is a psycho ideology of maximizing benefit for Sadkov, to the detriment of others or not doesn't matter, within the confines of the mental illness.

In practice, a communist globalism would mean that if the global communist party decided that the workers of the world don't need injectable estradiol, then there won't be injectable estradiol anywhere on the planet. And you won't be able to buy precusors either, since only large communist organisations could order such things.

(Ответить) (Уровень выше) (Ветвь дискуссии)


[info]nancygold
2024-09-01 15:43 (ссылка)
Fuck workers. We need a country for truscum transsexuals.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-09-01 15:50 (ссылка)
Who will feed them, synthesize estradiol for them?

If it a transsexual commune you imagine, then there will be duties. You can't do duties.

(Ответить) (Уровень выше)


(Анонимно)
2024-09-01 16:16 (ссылка)
Btw, a country for transsexuals is беспезды a great idea. Every country sends their transsexuals to a designated country, и все счастливы.

(Ответить) (Уровень выше) (Ветвь дискуссии)


(Анонимно)
2024-09-01 17:35 (ссылка)
>и все счастливы.

Ну может не все. Транс-тетки, которые хотят быть выебаны настоящим рабочим мужским хуем, а не meat popsicle modern art которые у транс мужиков, останутся обделенными.

(Ответить) (Уровень выше)


[info]nancygold
2024-09-01 18:34 (ссылка)
<3

(Ответить) (Уровень выше) (Ветвь дискуссии)

(без темы) - (Анонимно), 2024-09-02 09:24:37
(без темы) - [info]nancygold, 2024-09-02 12:32:59
(без темы) - (Анонимно), 2024-09-02 15:32:49

(Анонимно)
2024-09-01 10:59 (ссылка)
-- Who do you want to be when you grow up?
-- A prostitute who is also a programmer.

(Ответить)


(Анонимно)
2024-09-01 12:50 (ссылка)
Сколько тебе до штрафа за failure to pass inburgering осталось? 1.5 года?

(Ответить)


(Анонимно)
2024-09-03 10:17 (ссылка)
You can use habit tracker apps to learn Dutch.

(Ответить)


(Анонимно)
2024-09-03 10:29 (ссылка)
In a mental hospital and prison they feed and treat for free, one can live there too, you don't need to kill yourself.

(Ответить)