👑If you were suddenly given the role of totalitarian ruler of Earth, what would you do? by StShitpostCel in RealIncels

[–]fschmidt 5 insightful - 2 fun5 insightful - 1 fun6 insightful - 2 fun -  (0 children)

Change Saidit rules so that I could actually answer this question.

Why does nobody talk about iq? by sneako in whatever

[–]fschmidt 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (0 children)

Join me in creation of less retarded software by drummyfish in programming

[–]fschmidt 3 insightful - 1 fun3 insightful - 0 fun4 insightful - 1 fun -  (0 children)

test 2 by fschmidt in ftest

[–]fschmidt[S] 4 insightful - 2 fun4 insightful - 1 fun5 insightful - 2 fun -  (0 children)

a

b
c

d

Free speech supporting web hosts? by thoughtcriminal in AskSaidIt

[–]fschmidt 4 insightful - 2 fun4 insightful - 1 fun5 insightful - 2 fun -  (0 children)

What technology do you need? If it is simple HTML then you can use my hosting.

My old programming problem by fschmidt in programming

[–]fschmidt[S] 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (0 children)

I see. My solution is different. Each card follows some path through the deck and returns to its original position. Each card in a path takes the same number of shuffles to return to its original position. So the solution is the least common multiple of the lengths of all the paths in the deck.

local Luan = require "luan:Luan.luan"
local error = Luan.error
local range = Luan.range or error()
local Math = require "luan:Math.luan"
local min = Math.min or error()
local Number = require "luan:Number.luan"
local long = Number.long or error()
local Io = require "luan:Io.luan"
local print = Io.print or error()

local function lcm(x,y)
    local rtn = x
    while rtn % y ~= 0 do
        rtn = long(rtn + x)
    end
    return rtn
end

local function shuffles(n_cards,i_cut)

    local map = {}
    do
        local n = min( i_cut, n_cards - i_cut )
        for i in range( 0, n - 1 ) do
            local j = n_cards - 2*i
            map[ i_cut - i ] = j
            map[ n_cards - i ] = j - 1
        end
        if n == i_cut then
            for i in range( 1, n_cards - 2*i_cut ) do
                map[ i_cut + i ] = i
            end
        else
            for i in range( 1, i_cut - n ) do
                map[i] = i
            end
        end
    end

    local a = {}
    for i in range(1,n_cards) do
        a[i] = true
    end

    local rtn = 1
    for i in range(1,n_cards) do
        if a[i] then
            local n = 0
            local j = i
            while a[j] do
                a[j] = false
                n = n + 1
                j = map[j]
            end
            rtn = lcm(rtn,n)
        end
    end
    return rtn
end

print( shuffles(1002,101) )

My old programming problem by fschmidt in programming

[–]fschmidt[S] 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (0 children)

What answer did you get? If the answer is 400001 then how would you find it?

Leaving SaidIt by fschmidt in nonmorons

[–]fschmidt[S] 5 insightful - 1 fun5 insightful - 0 fun6 insightful - 1 fun -  (0 children)

I don't make the rules, I just follow them.

This is the Nuremberg defense. Don't follow orders that are wrong. The things that I was censored for didn't put saidit in danger of being shut down.

My old programming problem by fschmidt in programming

[–]fschmidt[S] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

Of course there is a solution. And while a little math is needed, the core insight isn't mathematical.

This problem served me well while western culture was still sane. I got good programmers by using it. But it is no longer useful because the main issue with programmers now is values, not out-of-the-box thinking.

My old programming problem by fschmidt in programming

[–]fschmidt[S] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

If it is so easy then you solve it. The last 3 digits of the solution is "600".

The story of your incel – an inconvenient truth by Caamib_ in RealIncels

[–]fschmidt 3 insightful - 2 fun3 insightful - 1 fun4 insightful - 2 fun -  (0 children)

Yes, but archive.org is down (another modern software turd) so I can't get the context.

Leaving SaidIt by fschmidt in nonmorons

[–]fschmidt[S] 2 insightful - 2 fun2 insightful - 1 fun3 insightful - 2 fun -  (0 children)

HTTPS is mostly for modern scum. FreedIt will default to HTTPS for modern scum, but I will opt out for my forums. Nabble, which Mikraite uses, defaults to HTTP with HTTPS optional.

Leaving SaidIt by fschmidt in nonmorons

[–]fschmidt[S] 2 insightful - 3 fun2 insightful - 2 fun3 insightful - 3 fun -  (0 children)

Thanks but I have Mikraite for now and I am slowly developing FreedIt which should be much better than a Reddit clone.

Fuck Vulptex and fuck SaidIt by fschmidt in nonmorons

[–]fschmidt[S] 4 insightful - 6 fun4 insightful - 5 fun5 insightful - 6 fun -  (0 children)

I am banned from Reddit.

My old programming problem by fschmidt in programming

[–]fschmidt[S] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

Obviously it can get massively more complex if you're building a large platform like Twitter.

How many programmers deal with this level of scale? At least 90% of cases are fine with a single server in which case the effort to get down to zero manual configuration isn't worth it.

Fuck Vulptex and fuck SaidIt by fschmidt in nonmorons

[–]fschmidt[S] 3 insightful - 3 fun3 insightful - 2 fun4 insightful - 3 fun -  (0 children)

True. Right now I can only spend a few hours per day on it, but hopefully I will have something in a few months.

Fuck Vulptex and fuck SaidIt by fschmidt in nonmorons

[–]fschmidt[S] 4 insightful - 2 fun4 insightful - 1 fun5 insightful - 2 fun -  (0 children)

He said good, that Jews were dying.

Specifically Jews who took the vaccine. I am racially jewish myself, I just think people stupid enough to take the vaccine deserve what they get.

Javascript classes are an abomination by fschmidt in programming

[–]fschmidt[S] 1 insightful - 2 fun1 insightful - 1 fun2 insightful - 2 fun -  (0 children)

You obviously don't like anything new

Lying is another modern trait. Nginx is relatively new and I use it.

My old programming problem by fschmidt in programming

[–]fschmidt[S] 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (0 children)

So by "infrastructure" you just mean setting things up to run? Look at my Mercurial hosting service and look at its source. This includes Luan code and Nginx configuration. Just clone the repo and run the "update.sh" script and everything is configured. So is this a "scripted infrastructure build"?

Javascript classes are an abomination by fschmidt in programming

[–]fschmidt[S] 1 insightful - 2 fun1 insightful - 1 fun2 insightful - 2 fun -  (0 children)

I am open to new ideas that come from a reasonable source. For example, I have no problem using Nginx which is from Russia. But the West has become totally worthless and absolutely everything that it produces is crap, and this isn't restricted to software. Looking at anything produced by the West in the last 10 to 20 years is just a waste of time.

Your date example could be easily handled without prototypes if Javascript wasn't based on them. For example, if this was Luan with a global.newDate() method then:

local oldDate = global.newDate
function global.newDate(...)
    local date = oldDate(...)
    function date.getTime() return 1609459200000 end
    return date
end

Stupid Javascript varargs suck, but you get the idea. This is conceptually simpler than prototypes.

And by the way, prototypes are not a new idea. They originated in "Self" in the 1980s and were in Javascript since the beginning in the 1990s. So some old things also suck.

My old programming problem by fschmidt in programming

[–]fschmidt[S] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

Well I don't know what that means. What is "CI" and why do modern people use meaningless acronyms for everything? What is an "infrastructure build"? I write programs, not infrastructure. My applications are in Luan so there is nothing to build. All the code is in Mercurial, of course. Releasing it is just a command in the shell which pushes the code to the server. Why is anything else needed?

Fuck Vulptex and fuck SaidIt by fschmidt in nonmorons

[–]fschmidt[S] 2 insightful - 2 fun2 insightful - 1 fun3 insightful - 2 fun -  (0 children)

For example the deleted comment here is "Good news" (which can't violate anything here out of context).

Javascript classes are an abomination by fschmidt in programming

[–]fschmidt[S] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

Yes classes are the worst part. But the whole idea of prototype-based languages makes no sense to me either. Classes make a lot of sense for a statically types language like Java since they are actually core to the implementation. But prototypes are not really core to implementation, they just reflect an idea about how one should program, an idea I disagree with. So I don't use prototypes in Javascript. In fact I recently removed prototypes from SCEditor here.

My old programming problem by fschmidt in programming

[–]fschmidt[S] 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (0 children)

Correct. But these days values are more important than intelligence. One has to reject modern values to be a good programmer or to be good at anything.

Many Dying in Israel Following the Experimental Pfizer COVID mRNA Injections by CrazyShooter in whatever

[–]fschmidt 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (0 children)

I am banned from almost all of them.

‘We Just Don’t Need the Vast Majority of the Population’ – Top WEF Advisor Harari by cottoneyejoe in news

[–]fschmidt 4 insightful - 1 fun4 insightful - 0 fun5 insightful - 1 fun -  (0 children)

The techno gibberish is nonsense but the core message is correct. Most of humanity are useless eaters at best but probably closer to moronic scum thanks to modern culture. The world would be better off without them.

How Executing Felons Made UK Great by MagicMike in SaidIt

[–]fschmidt 3 insightful - 1 fun3 insightful - 0 fun4 insightful - 1 fun -  (0 children)

True, but now this has been reversed as low IQ violent people are breeding faster making the West horrible. Edward Dutton covered all this.

Article: Back Off, Oh Masters of the Universe by sproketboy in environment

[–]fschmidt 1 insightful - 2 fun1 insightful - 1 fun2 insightful - 2 fun -  (0 children)

The elite are correct, the masses of moronic modern scum are no better than a barn full of battery hens.

I don’t believe ANY of this trump shit. by [deleted] in politics

[–]fschmidt 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

Of course, but Trump is also a liar. It's liars versus liars.

My old programming problem by fschmidt in programming

[–]fschmidt[S] 2 insightful - 2 fun2 insightful - 1 fun3 insightful - 2 fun -  (0 children)

How many of them women actually attempted it?

I don't know.

My old programming problem by fschmidt in programming

[–]fschmidt[S] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

The brute force simulation approach takes too long, or at least it did back then. So one has to find a better approach than just simulating shuffles.

Why is this website a wretched hive of scum and villainy? by JewfatherBikesunwell in AskSaidIt

[–]fschmidt 5 insightful - 3 fun5 insightful - 2 fun6 insightful - 3 fun -  (0 children)

What website isn't?

SaidIt's front page has gone to shit. by JasonCarswell in SaidIt

[–]fschmidt 2 insightful - 3 fun2 insightful - 2 fun3 insightful - 3 fun -  (0 children)

Make sure to listen carefully to your neighbor's barking dog.

Am I a psychopathic authoritarian asshole? by trident765 in nonmorons

[–]fschmidt 4 insightful - 2 fun4 insightful - 1 fun5 insightful - 2 fun -  (0 children)

When dealing with modern scum, the ends justifies the means, so don't worry.

In a civilized society, your apartment wouldn't have been constructed of cheap crap, so you wouldn't even hear your neighbor's dog. In a civilized society, if your neighbor did disturb you in some way, you should notify him first before complaining to a higher authority. But you don't live in a civilized society.

Why is the internet so anti free speech nowadays (including this gay site)? by johndoyle in AskSaidIt

[–]fschmidt 4 insightful - 1 fun4 insightful - 0 fun5 insightful - 1 fun -  (0 children)

This is why I support Andrew Tate and Nick Fuentes for president.

I don't know Andrew Tate, but I doubt Nick Fuentes supports free speech. Do you have any evidence that either of these two support free speech?

The reason that the internet is anti- free speech and anti- everything good is because humanity is going to shit. Everything good is being attacked by modern scum. Most of humanity has to die before this will improve.

Object-Oriented Javascript by fschmidt in programming

[–]fschmidt[S] 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (0 children)

In the Old Testament, God told the Israelites to exterminate the Canaanites and to destroy everything produced by the Canaanites. This is because the Canaanites were pure evil, and everything that they produced was evil. The same applies to modern culture. All of its members should be exterminated and everything that they produced should be destroyed, for exactly the same reason as the Canaanites.

Arrow functions are just unreadable syntax for functions. Regular function syntax works just fine for callbacks or anything else. And yes, I know about the abomination of async/await.

Anyone interested in good programming can read my Reactionary Software site.

Cake - Nugget (live) by fschmidt in MusicVideos

[–]fschmidt[S] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

Dedicated to the modern scum programmers posting on /s/programming.

Does this disprove the idea that American women are attracted to stupid losers? by trident765 in RealIncels

[–]fschmidt 5 insightful - 1 fun5 insightful - 0 fun6 insightful - 1 fun -  (0 children)

Western women are attracted to moronic scum men for sex, not for partners. Male scum are less likely to marry in the first place, and female scum want to be sluts not wives. That is why the marriage rate is dropping.

Object-Oriented Javascript by fschmidt in programming

[–]fschmidt[S] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

You are obviously complete modern scum and I regret sharing the same planet with you. What you are saying is just fucked up beyond belief. Why should arrow functions behave differently from regular functions, that just makes things more confusing. Yes the "this" problem is old because Javascript should never have had object-oriented features like this in the first place. But at least the scum who added "class" could have fixed this issue within a class since this was new. But no, of course they didn't do this since they are depraved modern scum. The correct solution is mine, to reject all this disgusting crap and build objects strictly based on closures and not class-based nonsense.

U/IamOnlyOneMan is a troll or a shill. Our community is small, and somehow Reddit trash is spilling over. by [deleted] in whatever

[–]fschmidt 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

Jewish control of US politics already resulted in US support for Israel. 9/11 just caused the US attack on Afghanistan which didn't benefit Israel. Iraq and Syria had nothing to do with 9/11.

Rise in popularity for anal sex leads to health problems for women by [deleted] in NotTheOnion

[–]fschmidt 6 insightful - 1 fun6 insightful - 0 fun7 insightful - 1 fun -  (0 children)

I never understood the appeal of anal sex, it just seems disgusting to me. But I guess it does make sense for modern scum who love everything that is bad and disgusting.

U/IamOnlyOneMan is a troll or a shill. Our community is small, and somehow Reddit trash is spilling over. by [deleted] in whatever

[–]fschmidt 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

My intuition is that it makes no sense for Jews to do 9/11 because it is a pointless risk when they already control the American political system. Mossad could have lived with a highjacker to spy on them, and it is possible that Mossad wouldn't have stopped 9/11, but that doesn't mean that they were behind it.

Islam - The Untold Story (its all bullshit) by jet199 in Islam

[–]fschmidt 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

Can you summarize this horrible video? It certainly isn't worth over an hour of my time.

Does this disprove the idea that American women are attracted to stupid losers? by trident765 in RealIncels

[–]fschmidt 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (0 children)

How would that article disprove the idea that American women are attracted to stupid losers?

U/IamOnlyOneMan is a troll or a shill. Our community is small, and somehow Reddit trash is spilling over. by [deleted] in whatever

[–]fschmidt 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

The video in the thread that you linked to is moronic and not worth 30 minutes of my time. If you have real evidence in text form, I will look at it. Even if a Mossad was connected to one of the highjackers, this doesn't prove anything.

Mercurial Hosting by fschmidt in programming

[–]fschmidt[S] 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (0 children)

You can register a new email address and user your old email address to add the new email address to your projects. Is that good enough?

U/IamOnlyOneMan is a troll or a shill. Our community is small, and somehow Reddit trash is spilling over. by [deleted] in whatever

[–]fschmidt 2 insightful - 3 fun2 insightful - 2 fun3 insightful - 3 fun -  (0 children)

What is zionist about that? "Jews did 9/11" is nonsense. That's just not how Jews operate.

U/IamOnlyOneMan is a troll or a shill. Our community is small, and somehow Reddit trash is spilling over. by [deleted] in whatever

[–]fschmidt 1 insightful - 2 fun1 insightful - 1 fun2 insightful - 2 fun -  (0 children)

Link?

U/IamOnlyOneMan is a troll or a shill. Our community is small, and somehow Reddit trash is spilling over. by [deleted] in whatever

[–]fschmidt 1 insightful - 3 fun1 insightful - 2 fun2 insightful - 3 fun -  (0 children)

Is he Jewish? I have no idea. Of course I am only racially jewish, not a Jew in any other way and all Jews that I know of hate me.

ABC guest suggests Americans angry over Trump raid are 'Neo-Nazis' because Merrick Garland is Jewish by iamonlyoneman in whatever

[–]fschmidt 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

At least you posted this to the right sub. But why bother posting this kind of garbage at all?

Jews did 9/11 by Rob3122 in politics

[–]fschmidt 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (0 children)

You can just block moronic users. I just blocked Rob3122.

U/IamOnlyOneMan is a troll or a shill. Our community is small, and somehow Reddit trash is spilling over. by [deleted] in whatever

[–]fschmidt 1 insightful - 3 fun1 insightful - 2 fun2 insightful - 3 fun -  (0 children)

So you are following Justin Bieber's life closely enough to judge this? Don't you have more interesting things to do with your life than to follow Justin Bieber? I mean this is a post that I would just skip.

What would most likely happen if the West, in this case The US, Canada and Western Europe, falls? by RichardsonDavis in AskSaidIt

[–]fschmidt 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (0 children)

If the West falls, at least software would stop decaying. Actually nothing would be better for the world than for the West to collapse. It has become a putrid depraved cesspool that only harms humanity. There is some hope that the Russian sphere may become a decent civilization.

The Trump Raid Happened Because We're Back to the IQ of 1700 by fschmidt in nonmorons

[–]fschmidt[S] 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (0 children)

I don't know if Dutton is right, but I think it may be a mistake to judge average IQ by the intellectual output of the most intelligent men. I mean what would Isaac Newton be doing if he was alive today? I think there is a good chance that he would just run a family farm and nothing more. The one overwhelming difference between 1700 England and the modern West is that the English mostly decent tolerant people while modern scum are intolerant scum. Someone like Isaac Newton could feel at home in old England and find like-minded people, while today he would be a total outcast. I knew highly intelligent men, and they went insane or killed themselves. But they did exist in my lifetime.

Passover by [deleted] in memes

[–]fschmidt 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

The concept of God has several practical applications. First it supports the idea that there are consistent forces of nature that are within the domain of science. For example the forces of history are consistent but the scientific method doesn't apply because of time scale and other factors. But this encourages a study of history looking for patterns. And while correlation isn't causation, it is still much better than nothing and it makes sense to avoid behaviors common to decline culture and to support behavior common to rising cultures. Of course the cliff notes for this is scripture itself which identifies which behaviors are good and bad.

Another benefit to the concept of God is that it helps one get along with the only people left in the West who aren't scum deserving death. And this is basically traditional Anabaptists and conservative Muslims. Since I believe in God (based on my definition), I can get along with these people. And since all other people in the West are revolting scum, there is no point for me to associate with them.

Passover by [deleted] in memes

[–]fschmidt 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

This criticism depends on God being sentient, and I personally don't view God as being sentient. God is personified in the Old Testament only as a means of explanation, but God actually represents the aggregate universal forces of nature. You can read more here.

Passover by [deleted] in memes

[–]fschmidt 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

Well this part is actually true and doesn't imply omniscience. What God says in the Old Testament are basically universal laws ethics comparable to universal laws of science. This isn't knowing everything, it is just knowing what can be verified with inductive reasoning based on history.

Passover by [deleted] in memes

[–]fschmidt 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

Nothing quoted from the Old Testament is God speaking. The Old Testament has many contributing authors, and some are overly anxious to kiss God's ass. But it is still a great book. I would send these authors letters if I had a time machine.

Object-Oriented Javascript by fschmidt in programming

[–]fschmidt[S] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

Why is it incorrect? This works:

function newCounter() {
    let counter = {};
    counter.count = 0;
    counter.test = function() {
        function inner() {
            return ++counter.count;
        }
        return inner();
    };
    return counter;
}
let c = newCounter();
console.log(c.test());
console.log(c.test());

The disgusting modern code is only incorrect because of the moronic obscure rules of disgusting modern features. A good language is based on a few simple concepts. Thankfully if one sticks to a small subset of old Javascript, one actually has a reasonable language. Of course everything produced by modern scum is pure shit and should never be used.

Passover by [deleted] in memes

[–]fschmidt 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

What are you talking about? God never claims to be omniscient in the Old Testament. This is just moronic nonsense.

Object-Oriented Javascript by fschmidt in programming

[–]fschmidt[S] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

I see it's gotten worse. Thankfully I am working with 11-year-old code that isn't pure modern crap. Here is your disgusting modern crap failing:

class Counter {
    count = 0;
    test() {
        function inner() {
            return ++this.count;
        }
        return inner();
    }
}
let c = new Counter();
console.log(c.test());
console.log(c.test());

Fails with: Uncaught TypeError: Cannot read properties of undefined (reading 'count')

The story of your incel – an inconvenient truth by Caamib_ in RealIncels

[–]fschmidt 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (0 children)

This subject generally doesn't interest me very much, but I will comment here. What happens in modern culture doesn't interest me at all because I just want these people to die. There is no other good outcome for modern scum. For decent people, the question of female age of marriage basically depends on how much education the woman should get before marriage. In the modern world where schools are generally worthless, homeschooling is critical. So girls should have a full grasp of all high school subjects before marriage so that they can homeschool their children, and this supports a later age of marriage.

U/IamOnlyOneMan is a troll or a shill. Our community is small, and somehow Reddit trash is spilling over. by [deleted] in whatever

[–]fschmidt 2 insightful - 2 fun2 insightful - 1 fun3 insightful - 2 fun -  (0 children)

I agree with iamonlyoneman here. What else can one say? Some posters are just too stupid to be reasoned with, so they should be encouraged to congregate in subs that reasonable people can block.

Don't use DuckDuckGo by [deleted] in Internet

[–]fschmidt 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (0 children)

The stupid article talks all about privacy and doesn't mention censorship. Typical of moronic modern scum. Censorship matters, privacy doesn't.

Passover by [deleted] in memes

[–]fschmidt 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

Like what? I follow the Old Testament and I love it because the god of the Old Testament slaughters more scum than any other god ever described.

How to counter the argument."Every major medical institution said that gender affirming surgery is the best and only cure to gender dysphoria"? by jacques1102 in TumblrInAction

[–]fschmidt 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

Let God counter it through evolution.

Thoughts on interview questions by trident765 in programming

[–]fschmidt 3 insightful - 2 fun3 insightful - 1 fun4 insightful - 2 fun -  (0 children)

This continues from here.

I could also ask "Is programming an individual effort, a team effort, or does it depend on the project?"

"Team" is a meaningless term. I would rephrase this as "Is the best way to organize a programming team for each programmer to take responsibility for a part of the code and team members help each other as needed, or is it better if team members share responsibility for code?".

Another possible question would be to show the candidate 2 code samples that do the same thing, one written in a simple readable style and one written in a modern unreadable style. Ask him which he prefers and why.

Of course all this depends on to what degree your teammates are modern scum. Modern culture is fundamentally sociopathic and places the highest value on charisma and the lowest value on competence.

Object-Oriented Javascript by fschmidt in programming

[–]fschmidt[S] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

This idiom is readable. If you read "||" as "or" then "x = y || z" makes sense. This is in contrast to arrow functions and default parameter values that you see x0x7's code which just don't make sense unless you know what they are.

What do you think about Nick Fuentes? by andrewtate in AskSaidIt

[–]fschmidt 4 insightful - 2 fun4 insightful - 1 fun5 insightful - 2 fun -  (0 children)

All Trump supporters are morons. Trump is a fake conservative who didn't do a damn thing as president. Nick Fuentes is a Trump supporter, therefore Nick Fuentes is a moron.

Useless Javascript features by fschmidt in programming

[–]fschmidt[S] 3 insightful - 1 fun3 insightful - 0 fun4 insightful - 1 fun -  (0 children)

Actually another thing I am doing to SCEditor is removing support for "fluent" calls which are just disgusting. I am calling my fork "SCEditor, Reactionary Edition".

The reproductive superiority of stupid assholes by fschmidt in RealIncels

[–]fschmidt[S] 3 insightful - 2 fun3 insightful - 1 fun4 insightful - 2 fun -  (0 children)

Sure, I will find you a wife if you join.

The reproductive superiority of stupid assholes by fschmidt in RealIncels

[–]fschmidt[S] 1 insightful - 2 fun1 insightful - 1 fun2 insightful - 2 fun -  (0 children)

Then join.

The story of your incel – an inconvenient truth by Caamib_ in RealIncels

[–]fschmidt 4 insightful - 3 fun4 insightful - 2 fun5 insightful - 3 fun -  (0 children)

Sadly humanity has become too stupid to understand articles like this. At this point I think the only worth doing is to try to organize the few remaining non-morons into a separate gene pool.

Did Anything Improve from Black Lives Matter protests by Soloninja in SaidIt

[–]fschmidt 4 insightful - 1 fun4 insightful - 0 fun5 insightful - 1 fun -  (0 children)

I prefer the conservative Mennonites who aren't part of the modern West and don't live in BLM areas.

Did Anything Improve from Black Lives Matter protests by Soloninja in SaidIt

[–]fschmidt 1 insightful - 2 fun1 insightful - 1 fun2 insightful - 2 fun -  (0 children)

I'm not Muslim.

The story of your incel – an inconvenient truth by Caamib_ in RealIncels

[–]fschmidt 3 insightful - 3 fun3 insightful - 2 fun4 insightful - 3 fun -  (0 children)

What does this have to do with the posted article?

COVID vaccination did not cause any decrease in mortality on any age group. The death rate was also strongly correlated to poverty and obesity. (RG, August, 2022) by HibikiBlack in VaccineInjuries

[–]fschmidt 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (0 children)

The data only goes to week 5 of 2022. That's not enough.

Did Anything Improve from Black Lives Matter protests by Soloninja in SaidIt

[–]fschmidt 3 insightful - 2 fun3 insightful - 1 fun4 insightful - 2 fun -  (0 children)

It helped destroy the West which deserves to be destroyed.

The reproductive superiority of stupid assholes by fschmidt in RealIncels

[–]fschmidt[S] 3 insightful - 3 fun3 insightful - 2 fun4 insightful - 3 fun -  (0 children)

Yes modern culture is highly dysgenic. My solution is here.

I support neo-nazis negative ten percent, but they were the ones out there preventing a drag queen story hour event from taking place here. by iamonlyoneman in news

[–]fschmidt 2 insightful - 2 fun2 insightful - 1 fun3 insightful - 2 fun -  (0 children)

What do you mean? I was in Croatia when it was at war with Serbia, not sure if that counts. But if America has a civil war, I plan to enjoy following it from Mexico.

Useless Javascript features by fschmidt in programming

[–]fschmidt[S] 2 insightful - 2 fun2 insightful - 1 fun3 insightful - 2 fun -  (0 children)

There is no alternative in the browser.

Anyway, the main problem is that modern programmers are scum, not the language itself. It is possible to write tolerable Javascript code.

Good Afternoon by andrewtate in RealIncels

[–]fschmidt 3 insightful - 1 fun3 insightful - 0 fun4 insightful - 1 fun -  (0 children)

I agree, but I hate men too.

After Mar-a-Lago search users on pro-Trump forums agitate for ‘civil war’ by IkeConn in Schadenfreude

[–]fschmidt 2 insightful - 2 fun2 insightful - 1 fun3 insightful - 2 fun -  (0 children)

Sounds great. I would love for modern scum on the right and modern scum on the left to kill each other.

I support neo-nazis negative ten percent, but they were the ones out there preventing a drag queen story hour event from taking place here. by iamonlyoneman in news

[–]fschmidt 3 insightful - 2 fun3 insightful - 1 fun4 insightful - 2 fun -  (0 children)

They're all modern scum. Just pray for a civil war where modern scum will kill each other.

Denmark BANS Covid vaccine for youth under 18 by [deleted] in news

[–]fschmidt 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

Too bad, less modern scum will die.

If an FDS user asked you out on a date, would you say yes? by IndianaJones in AskSaidIt

[–]fschmidt 3 insightful - 3 fun3 insightful - 2 fun4 insightful - 3 fun -  (0 children)

If any Western woman asked me out, I would assume that I am hallucinating and take my temperature.

How much are women influenced by the sexual preferences of other women? by trident765 in RealIncels

[–]fschmidt 4 insightful - 1 fun4 insightful - 0 fun5 insightful - 1 fun -  (0 children)

Public farting could indicate stupidity or evil. So I am sure she was impressed.

Why aren't smart people happier? by Drewski in Psychology

[–]fschmidt 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (0 children)

You must be female. In college I was considered a jock because my friends were all jocks and I spent half my time working out or playing sports. And I had plenty of male friends. I spend the other half of my time in the library reading original papers in computer science and math. Nerds hated me because they viewed me as a freak. Of course I was incel. Later I became quite successful in business. But I was increasingly miserable as I watched the world go to hell.

How much are women influenced by the sexual preferences of other women? by trident765 in RealIncels

[–]fschmidt 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

I don't know you, so I don't know whether you are stupid or evil or both. But this is what is required to not disgust Western women.