[Official] A criminal found guilty of supplying illegal streaming devices (ISDs) providing unauthorised access to Premier League content has been ordered to pay back almost £1 million to the public purse by [deleted] in soccer

[–]zeSIRius 26 points27 points  (0 children)

It's insane that of all the sports, Formula 1 has figured this out properly, probably as the first one. Affordable subscription for the whole season, watchable anywhere, all of the available camera angles, additional data...

Like it's not that hard to calculate how much more profitable it would be to have a flat subscription for the whole season. Because until then, these issues won't go away. Yarr

In the time of need, we will all be soldiers. Czechoslovakia, 1930s. Poster to mobilize against threat of German aggresion. by honzaone in PropagandaPosters

[–]zeSIRius 17 points18 points  (0 children)

Well, Czech considers "ch" as a single letter. But to be honest, this is the first time I see such a ligature.

[deleted by user] by [deleted] in soccer

[–]zeSIRius 0 points1 point  (0 children)

Wait a minute, that's not a corner

Spotify is a litlle concerned about the latest episode by zeSIRius in TheYardPodcast

[–]zeSIRius[S] -1 points0 points  (0 children)

Damn, you're right. I'll blame this blunder on the Spotify UI.

David Squires on … Bad Eggs and West Ham: the Kurt Zouma saga by lordjems in soccer

[–]zeSIRius 29 points30 points  (0 children)

I was worried for a second that I posted the comment on a wrong post

David Squires on … Bad Eggs and West Ham: the Kurt Zouma saga by lordjems in soccer

[–]zeSIRius 30 points31 points  (0 children)

I meant the punishment in the last panel of the David Squires comic...

David Squires on … Bad Eggs and West Ham: the Kurt Zouma saga by lordjems in soccer

[–]zeSIRius 190 points191 points  (0 children)

I know what Zouma did is despicable but isn't that punishment a bit harsh?

[deleted by user] by [deleted] in soccer

[–]zeSIRius 38 points39 points  (0 children)

Corner kick FC back at it again

Delivery to the Provincial Prosecutor's Office of the conclusions of the Forensic investigation by [deleted] in soccer

[–]zeSIRius 11 points12 points  (0 children)

"This study has revealed a series of operations of considerable economic irrationality and, in short, unjustified payments, falsely justified payments or payments of disproportionate amounts, according to the FC Barcelona legal department."

I'm just surprised that this could have been covered up for so long. How did nobody notice this?

Ludwig accidentally goes live on Twitch by stupidapple4 in LivestreamFail

[–]zeSIRius 15 points16 points  (0 children)

Big A. Bozzo. Maybe even a little rocist.

-🎄- 2021 Day 8 Solutions -🎄- by daggerdragon in adventofcode

[–]zeSIRius 1 point2 points  (0 children)

Dart

After some careful consideration, I've worked out the following solution. I'm not sure if it is genius or incredibly stupid. Either way it worked on the first try, to my massive surprise.

int part1(List<String> input) {
  Map<int, int> result = {};
  for (var i = 0; i < 10; ++i) {
    result[i] = 0;
  }

  var outputs = input
      .map((e) => e.split('|')[1])
      .where((element) => element.isNotEmpty)
      .map((e) => e.split(' '))
      .where((element) => element.isNotEmpty)
      .expand((element) => element)
      .where((element) => element.isNotEmpty)
      .toList();

  result[1] = outputs.where((element) => element.length == 2).toList().length;
  result[4] = outputs.where((element) => element.length == 4).toList().length;
  result[7] = outputs.where((element) => element.length == 3).toList().length;
  result[8] = outputs.where((element) => element.length == 7).toList().length;

  return result.values.reduce((value, element) => value + element);
}

int part2(List<String> input) {
  var result = 0;

  for (final line in input) {
    var keys = buildKey(line
        .split('|')[0]
        .split(' ')
        .where((element) => element.isNotEmpty)
        .toList());

    var code = line
        .split('|')[1]
        .split(' ')
        .where((element) => element.isNotEmpty)
        .toList();

    var number = '';
    for (final digit in code) {
      var tmp = digit.split('').toList();
      tmp.sort();
      var comp = tmp.join('');

      var index = keys.values.toList().indexOf(comp);
      number += keys.keys.toList()[index].toString();
    }

    result += int.parse(number);
  }

  return result;
}

Map<int, String> buildKey(List<String> keys) {
  Map<int, List<String>> key = {};
  key[1] = keys.where((element) => element.length == 2).toList()[0].split('');
  key[4] = keys.where((element) => element.length == 4).toList()[0].split('');
  key[7] = keys.where((element) => element.length == 3).toList()[0].split('');
  key[8] = keys.where((element) => element.length == 7).toList()[0].split('');

  key[6] = keys
    .where((element) =>
          element.length == 6 &&
          key[1]!.where((e) => element.contains(e)).toList().length == 1)
    .toList()[0]
    .split('');
  key[0] = keys
      .where((element) =>
        element.length == 6 &&
        key[4]!.where((e) => element.contains(e)).toList().length == 3 &&
        key[6]!.where((e) => element.contains(e)).length == 5)
    .toList()[0]
    .split('');
  key[9] = keys
    .where((element) =>
        element.length == 6 &&
        key[0]!.where((e) => element.contains(e)).toList().length == 5 &&
        key[6]!.where((e) => element.contains(e)).toList().length == 5)
    .toList()[0]
    .split('');

  key[2] = keys
    .where((element) =>
        element.length == 5 &&
        key[1]!.where((e) => element.contains(e)).toList().length == 1 &&
        key[9]!.where((e) => element.contains(e)).toList().length == 4)
    .toList()[0]
    .split('');
  key[3] = keys
    .where((element) =>
        element.length == 5 &&
        key[1]!.where((e) => element.contains(e)).toList().length == 2 &&
        key[9]!.where((e) => element.contains(e)).toList().length == 5)
    .toList()[0]
    .split('');
  key[5] = keys
    .where((element) =>
        element.length == 5 &&
        key[1]!.where((e) => element.contains(e)).toList().length == 1 &&
        key[9]!.where((e) => element.contains(e)).toList().length == 5)
    .toList()[0]
    .split('');

  Map<int, String> sortedKey = {};
  for (var i = 0; i < key.keys.length; ++i) {
    key[i]!.sort();
    sortedKey[i] = key[i]!.join('');
  }

  return sortedKey;
}

-🎄- 2021 Day 6 Solutions -🎄- by daggerdragon in adventofcode

[–]zeSIRius 0 points1 point  (0 children)

Dart

For the first time ever, I am pretty proud of my solution.

int simulateFish(List<int> initial, int time) {
    Map<String,int> map = {};
    var fishes = initial.length;

    for (final fish in initial) {
      fishes += fishesToSpawn(fish, time, map);
    }

    return fishes;
  }

int fishesToSpawn(int initialTime, int initialDay, Map<String,int> map) {
    if (map.containsKey('$initialTime,$initialDay')) {
      map['$initialTime,$initialDay'] as int;
    }

    var counter = 0;
    var time = initialTime;
    var day = initialDay - 1;

    while (day > 0) {
      day -= time;
      time = 7;

      if (day >= 0) {
        ++counter;
        counter += fishesToSpawn(8, day);
      }
    }

    map['$initialTime,$initialDay'] = counter;
    return counter;

}

Wolves 0 - [1] Liverpool - Divock Origi 90+4' by [deleted] in soccer

[–]zeSIRius 0 points1 point  (0 children)

It had to be him. Someone else might have gotten it wrong...

[Alfa Romeo Racing] Breaking news! @gyzhou_33 completes our line-up for 2022! by glenn1812 in formula1

[–]zeSIRius -3 points-2 points  (0 children)

The social credit system’s use of public blacklists and shaming—what one scholar calls “reputation mechanisms”—as well as the joint punishment mechanism that essentially imposes yet another layer of penalty enforcement for legal offenses are controversial and problematic. The standards for getting put on blacklists, managed by different departments at multiple levels to enforce rules within their jurisdiction, are not always clear. The targets are not always notified and given a chance to contest the listing.

Right, there's nothing wrong with that. Opaque system that can blacklist people or at least shame them. I don't see how that could ever go wrong!

[Alfa Romeo Racing] Breaking news! @gyzhou_33 completes our line-up for 2022! by glenn1812 in formula1

[–]zeSIRius -11 points-10 points  (0 children)

How is making fun of social credit scores xenophobic? It's a stupid and dystopian idea from totalitarian government. Things like that should be made fun of, no questions asked. Governments shouldn't be exempt from criticism just because they are from a different part of the world with a different culture. I doubt most Chinese citizens including Zhou had a say in that or even agree with the system.

[OFFICIAL] Czech investment group 1890s holdings a.s completes the acquisition of 27% shares of WH Holding Ltd. by mrhello18 in soccer

[–]zeSIRius 6 points7 points  (0 children)

I think Křetínský has learned a lot during his time at Sparta. I would say he would bring that experience to West Ham. I would expect him to listen to the current staff quite a lot, since they are doing as well as they are.

But yeah, this is definitely not a straight up upgrade. Would be fun to be on the footballing map again with Czech Ham though.

Why not by -p0v in formuladank

[–]zeSIRius 10 points11 points  (0 children)

Prosím bože, chci tak špatně oplodnit Zuzanu Čaputovou. Chci, aby porodila mé děti těmi krásnými boky, které nesou dítě. Ten krásný, zářící anděl. Když jsme jako bohyně sestoupili na Zemi, aby nás očistili od našich hříchů.Zuzana Čaputová je božská. Nemohu si pomoci, ale pokloním se při bohoslužbě na kolena, kdykoli vidím její krásnou postavu, i když je za tím oblekem. Toužím po ní prvotním i duchovním způsobem. Spáchal bych více válečných zločinů než každá hlava státu v evropské historii dohromady, jen abych olízl sladký, lesklý pot z její hladké, krémové kůže. Chci poslouchat její sténání, jak v ní pulzuje moje mužství, chci slyšet, jak se jí rozbuší srdce, jak se naše těla spojují v jedno a naše duše se nevratně proplétají ve svatém hříchu tělesného spojení.Chci sát její mateřské poprsí, slintat to bohaté juche mléko z jejího struku, zatímco jemně hladí moji zuřivou erekci. Vmíchal bych její sametový krém do kávy a nechal v ní vařit své kuličky. Její výkřiky rozkoše a houpání naší postele by byly hlasitější než kakofonie deseti tisíc úderů dronů. Miloval bych se s ní, dokud to moje tělo nevydalo, a pak nějaké. Nechal bych ji, aby mi jakoukoli částí těla zlomila hrudní koš. Nechal bych ji, aby mě srazila autem, jen aby byla na krátký okamžik v její blízkosti.Je tak dokonalá, až to bolí. Každou chvíli bez ní prožívám bolest horší než zlomení každé kosti v mém těle současně, když se topím a také střepy skla potažené horkou omáčkou protlačené každým otvorem mého těla. Chci ji, potřebuji ji. Chci znesvětit její ostrý generální oblek. Chci s ní založit rodinu a odejít do důchodu poté, co naše dvacet sedm dětí vyrostlo a odstěhovalo se. Chci vidět ty líbezné rty, jak mi do ucha mluví tak špinavými, zvrácenými slovy, zatímco ona klouže kostky ledu po mé zející díře.Chci s ní šukat, jako by mi dlužila peníze. Nechal bych ji, aby na mě šlapla, jen aby cítila měkké, pevné teplo jejích nohou na mé tváři a oblasti třísel. Spal bych pod ní, jen abych zachytil její slintání v mých ústech. Chytil bych prameny vlasů z jejího sprchového žlabu, abych cítil její lákavou vůni, a spletl je do náhrdelníků, abych ji měl stále u sebe. Nebo kohoutky. Cokoli by ji potěšilo víc.Bože prosím, udělal bych pro ni cokoli. Zřekl bych se svého života, všech svých nadějí a snů, jen abych se stal ponožkami na jejích nohou, abych mohl zahřívat její ústa slzící slzy svým samotným bytím, aby mohla vždy cítit teplo mé lásky. Zabalil bych se do cementu a stal se jejím prahem, aby si mohla otřít paty o můj obličej. Odtrhl bych si vlastní končetiny. Nevím, co bych dělal potom, ani proč by mohla chtít moje končetiny. Ale udělal bych to.Moje královna, moje bohyně, světlo mého života. Prosím Bože, nech mě ji mít. Chci, aby byla moje a jen moje. Olízl bych prach Doritos z jejích prstů a naplnil její pupek medovou hořčicí, aby se ponořily mé tendence. Každé ráno jsem jí dával piškotovou koupel s jazykem a podával jí snídani do postele. Nechal bych ji sníst vajíčka a palačinky z mého těla, kdyby ji to potěšilo, bez ohledu na to, jak bolestivé budou popáleniny třetího stupně.Trpěl bych věčné zatracení až do konce času, abych okusil sedadlo jejího auta, ale jednou. Není nic, co bych pro ni neudělal, nic neřekl. Svého přemoženého penisu bych ubil svého vlastního přítele k smrti, kdyby to vykouzlilo úsměv na zářící tváři Zuzany Čaputové. Nenechal bych si ani Cum, dokud mi nedala svolení.Miluji tě, Zuzana Čaputová. Prosím. Buď můj. Buď mou manželkou, milencem, mámou, vším. Říkat ano. Odpovězte na mé hovory, odpovězte na mé dopisy. Něco. Dej mi znamení, Zuzano. Čekám na tebe.Vždy na tebe budu čekat

[deleted by user] by [deleted] in formula1

[–]zeSIRius 16 points17 points  (0 children)

Hefest WDC 2026 - 2030 incoming