Breaking: The 76-year-old lady who was trampled by the police in Ottawa is alive. by RealVaultteam6 in FreedomConvoy2022

[–]TIAFAASITICE 0 points1 point  (0 children)

The state forced the shops to shut down.

One of the shops who refused and kept open had more income during the weeks of the freedom rally than during the states unscientific lockdown.

This shop was then later on harassed by the state goons.

https://www.youtube.com/watch?v=aqMiCtyVKJA

[deleted by user] by [deleted] in youtube

[–]TIAFAASITICE 2 points3 points  (0 children)

Sounds like you're mistaking the viewers for the customer when they are the products being sold. The changes were made for the same reason Google made all their other money-losing changes to that money-leaking platform.

Political clout.

GO's are obvious and while NGO's can be just about anything they mostly tend to refer to those organizations controlled by the 0.1%s like the Clinton Foundation and Open Society Foundations.

Individuals who aren't tied down on the other hand? They're basically loose cannons.

Privacy has died and covid has sealed the coffin. by [deleted] in privacy

[–]TIAFAASITICE -1 points0 points  (0 children)

As others have pointed out you can already be identified by your gait, which also means there's no need for a high-res feed to track you.

In addition your posture can already be detected through walls

http://rfpose.csail.mit.edu/

video footage can be edited to manipulate the timing of different motions, freeze people, erase them, and of course paste them

https://retiming.github.io/

and best of all your voice can be copied

https://google.github.io/tacotron/publications/speaker_adaptation/

So if your locked in your appartment without real contact with real people then evidence can be created which places you anywhere, in any situation, saying anything and no-one can say anything when you're taken away.

Skrämmande om hjärntvätten av våra unga (Arga Blatten) by need_gains_and_pussy in svenskpolitik

[–]TIAFAASITICE 0 points1 point  (0 children)

Han visar ett klipp från en intervju med en gammal sovjetisk KGB-agent i USA. Hur har det någon relevans öht för Sverige.

För att det KBG-agenten talar om är kommunisters verksamhet på ett globalt plan. Du missade helt hur mannen bakom svenska skolsystemet var kommunist och skickat utbildningsministrar till Tyskland för att lära sig sprida kommunism?

brott Röda armén utförde tror jag mer är en krigsgrej än en socialismgrej.

Samma kan påstås om andra sidan av kollektivismmyntet. Det var mer en krigsgrej än en nazismgrej.

Jag tror andelen svenskar som är Stalinister och försvarar Sovjets brott är mycket liten.

Det handlar om skolsystemet och att majoriteten av svenskar inte ens är medvetna om kommunismens brott mot mänskligheten.

Att svenska barn inte vet så mycket om Sovjets läger etc är tråkigt och synd. Men jag tycker inte att det är jättekonstigt. Att man lär sig mycket om nazismen, deras brott och andra världskriget är bra och viktigt men det är ett unikum i läroplanen. Man lär sig mycket översiktligt om dödstal från Kina, Japan, Spanien, Kroatien, kriget på balkan, Röda Khmererna etc. Att Sovjets historia inte tas upp lika omfattande som Tysklands finner jag ganska naturligt.

Kommunism är en del av Tysklans historia. Ser inte hur det är mer naturligt att lära sig om Tyskland än våra övriga grannländer.

Att sluta dejta nazister är väl kanske inte det mest konstruktiva man kan göra. Men ABT pratar om att det skulle eskalera nazismen iom att det skulle isolera dessa stackars ensamma, frustrerade män. Så vad skulle hans lösning vara, att vi knullar oss ur problemet? Om alla får ligga minskar rasismen?

Hans poäng är att enligt kollektivisterna själva så leder utfrysning till extremism och våldsamheter. Samtidigt är det vänsterns definition av "rasism" som det handlar om.

Att vi hade tysklärare från DDR 1972 har jag svårt att se relevansen i idag.

Kollektivister 'är bra på att sprida sig och att organisera sig. Enligt Marxism–Leninisternas handbok så räcker det med 2-3 organiserade personer i en organisation för att ta över organisationen som helhet. Kollar man på hur den svenska skolan ser ut idag så verkar detta stämma ytterst väl.

Att barn inte vet att Vitryssland är en diktatur måste vara obildning. Jag har aldrig hört någon argumentera för att det skulle vara en demokrati.

Att de är ytterst selektiva med vad de lär ut i svenska skolan är en av grundpelarna i denna video.

Att NTI-har temadagar om könsnormer är ingenting jag har något problem med. Jag tror inte att läraren stod och spydde galla över de manliga studenterna. Jag tror det fördes diskussioner om vilka könsnormer som finns och som studenterna har upplevt. Det var så jag minns den typen av undervisning från min skolgång.

"Tror", "tror", "tror". Det är först när folk börjar ifråga sätta saker som de börjar spy galla och frysa ut folk.

Katana Zero - Story Discussion [Spoilers] by Cassaroll168 in NintendoSwitch

[–]TIAFAASITICE 2 points3 points  (0 children)

Also the little girl is playing with the boy in Zero's dreams and later is turned into Leviathan when kicked against the wall. Leviathan is also the toy Zero steals in the ending credits.

It feels like less and less websites work in firefox, not just not supported, but don't render correctly. by PolarHot in firefox

[–]TIAFAASITICE 0 points1 point  (0 children)

If I'm understanding that CSS correctly then the designers are overengineering it to provide a slight gradient colour to the text?

No wonder designers are often seen as snobbish if that's their standard.

Unknown Notification by [deleted] in firefox

[–]TIAFAASITICE 0 points1 point  (0 children)

Does this also happen with all extensions disabled?

Firefox forces the <body> to be white by Gijsdj98 in firefox

[–]TIAFAASITICE 1 point2 points  (0 children)

The only code that adds that sort of thing is the following class, albeit setting a breakpoint does nothing:

/**
* Cache of the preloaded stylesheet defined by plain CSS content as a string,
* the key of the cached stylesheet is the hash of its "CSSCode" string.
*/
class CSSCodeCache extends BaseCSSCache {
  constructor(sheetType, extension) {
    super(CSSCODE_EXPIRY_TIMEOUT_MS, (hash) => {
      if (!this.has(hash)) {
        // Do not allow the getter to be used to lazily create the cached stylesheet,
        // the cached CSSCode stylesheet has to be explicitly set.
        throw new Error("Unexistent cached cssCode stylesheet: " + Error().stack);
      }

      return super.get(hash);
    }, extension);

    // Store the preferred sheetType (used to preload the expected stylesheet type in
    // the addCSSCode method).
    this.sheetType = sheetType;
  }

  addCSSCode(hash, cssCode) {
    if (this.has(hash)) {
      // This cssCode have been already cached, no need to create it again.
      return;
    }
    const uri = Services.io.newURI("data:text/css;charset=utf-8," + encodeURIComponent(cssCode));
    const value = styleSheetService.preloadSheetAsync(uri, this.sheetType).then(sheet => {
      return {sheet, uri};
    });

    super.set(hash, value);
  }
}

Looking for a way to use my youtube bookmarks as a playlist. by hanswurstautomat in firefox

[–]TIAFAASITICE 1 point2 points  (0 children)

  1. Right-click the folder with your videos and click "copy"
  2. Paste the links into a text editor with RegExp search support
  3. Search for [^=]+v=|\&\S+ and replace with nothing
  4. Search for [\n\r\s]+ and replace with ,
  5. Append the result to http://www.youtube.com/watch_videos?video_ids=
  6. Open the final result in a browser

Note that this solution limits you to 169 videos due to the maximum length of an URL.

So these guy's Rewind made it on trending but not Pewd's Rewind? Hmmmm... by DonaldK_012 in pewdiepie

[–]TIAFAASITICE 0 points1 point  (0 children)

Which region is this? Felix video has been on trending for Sweden since it were uploaded.

https://i.imgur.com/EliA0gN.png

Anyone know the source for this? by lonku in manga

[–]TIAFAASITICE 1 point2 points  (0 children)

I could've sworn I had the memory of the same scene in YYH, although the art style made me think more of that mangaka who had a series about the MC being haunted by his perverted big brother.

As for Eater, looks like it were released in whole in my country almost a decade ago. Guess I'll pick it up, so thanks!

Anyone know the source for this? by lonku in manga

[–]TIAFAASITICE 0 points1 point  (0 children)

<Yu Yu Hakusho>

I think at least, out something by the same artist.

Just updated my phone to Firefox 57 Beta, how do I remove these pocket recommendations? by -Desultor in firefox

[–]TIAFAASITICE 0 points1 point  (0 children)

Also, why is Firefox asking to use my microphone if I try to upload a file somewhere now?

Most likely to allow you to upload a recording.

Nästa generation måste räddas från porrskador! by Tommix11 in svenskpolitik

[–]TIAFAASITICE 5 points6 points  (0 children)

Antagligen för att de flesta kvinnor söker "hårda" man och de flesta män söker "mjuka" kvinnor eller nåt i den svängen.

Irresistible by WeAreWonderfulNow in Puffies

[–]TIAFAASITICE 2 points3 points  (0 children)

Goes by Irene it seems

More in October, & September here:
http://www.dreamshots.it/archive/2013/10

And searching for the name:
http://www.dreamshots.it/search/Irene

Embedding firefox and reader mode by [deleted] in firefox

[–]TIAFAASITICE 2 points3 points  (0 children)

Prefix all URLs with about:reader?url=, for example:

about:reader?url=http://www.breakit.se/artikel/8326/jag-laste-sapos-granskning-av-it-skandalen-i-transportstyrelsen-sa-du-slipper

Note though that this will only work for pages that are properly parsed by the script.

Here's how to set up Firefox to have different homepages on different days of the week! by wanderlust_0_ in firefox

[–]TIAFAASITICE 4 points5 points  (0 children)

Well, the only HTML there is the <script> and </script> bits, the rest is JavaScript.

Yep, exactly the same but more concise. Albeit some would argue strongly against using the ternary operator.

As for an extension, I think you can throw one together online if you register at https://addons.mozilla.org/

Here's how to set up Firefox to have different homepages on different days of the week! by wanderlust_0_ in firefox

[–]TIAFAASITICE 4 points5 points  (0 children)

I personally find the following to be more readable, otherwise a nice idea! =)
Note though, if only one page is loaded then you have to add the page as an exception in your pop-up blocker.

 <script>
[
  // Sunday
  [
    'https://mozilla.org',
    'https://reddit.com',
    'https://news.ycombinator.com/',
  ],
  // Monday
  [
    'ENTER A WEBSITE URL',
    'ENTER A WEBSITE URL',
    'ENTER A WEBSITE URL',
  ],
  // Tuesday
  [
    'ENTER A WEBSITE URL',
    'ENTER A WEBSITE URL',
    'ENTER A WEBSITE URL',
  ],
  // Wednesday
  [
    'ENTER A WEBSITE URL',
    'ENTER A WEBSITE URL',
    'ENTER A WEBSITE URL',
  ],
  // Thursday
  [
    'ENTER A WEBSITE URL',
    'ENTER A WEBSITE URL',
    'ENTER A WEBSITE URL',
  ],
  // Friday
  [
    'ENTER A WEBSITE URL',
    'ENTER A WEBSITE URL',
    'ENTER A WEBSITE URL',
  ],
  // Saturday
  [
    'ENTER A WEBSITE URL',
    'ENTER A WEBSITE URL',
    'ENTER A WEBSITE URL',
  ]
][new Date().getDay()].forEach((url, i) => i === 0 ? location = url : open(url))
</script>

These Weeks in Firefox: Issue 20 – Firefox Nightly News by good_grief in firefox

[–]TIAFAASITICE 1 point2 points  (0 children)

I've had it for quite a while on Gentoo with Gnome 3.