Войдите или зарегистрируйтесь
Вы сможете писать комментарии и посты, ставить лайки и другое
Поиск
Тёмная тема

Quentin Tarantino and his foot fetish: a complete list of all his films featuring scenes with feet and legs - photos and videos

Fans of Quentin Tarantino know that he has a foot fetish. For those unfamiliar with the term: it's when a man has a particular fascination with women's legs, and even more so with their feet. It's safe to say that Quentin Tarantino is the most famous foot fetishist in the world.

Let's start with Quentin Tarantino's first real film - Reservoir Dogs (1992). I'm skipping "My Best Friend's Birthday", as it was never officially released.
There's nothing related to foot fetishism in Reservoir Dogs: the film features only tough men. Women appear only briefly in a few background scenes. I found just one scene where a woman is shown in the foreground - the carjacking moment.
Показать полностью...
+7
384

Minister Mason from Snowpiercer - another memorable villain (or rather, villainess)

The 2013 dystopian action thriller Snowpiercer somehow flew under the radar. It got decent reviews and even turned a profit, but these days, hardly anyone seems to remember it. Which is a shame, because the movie has some genuinely clever touches - and, more importantly, a fantastic villain in Minister Mason.
Показать полностью...
+3
11

Quentin Tarantino's social media (all ZERO of them)

Quentin Tarantino on Twitter? Nope, the dude doesn't have an account.
Posting on Facebook? Nah, he couldn't care less about Facebook.
Maybe he's sharing pics on Instagram? Nope 😂
Okay, so maybe he started a YouTube channel? Hell no! 😂😂

Quentin Tarantino isn't on social media. Period. If you've stumbled across an account, it's fake, so don't fall for it.

Bottom line: good ol' Tarantino isn't into showing off on social media himself. Interviews, though? Oh, he LOVES showing off there. 😂 He loves women's feet and his own movies.

"I love them. I love my movies. I'm making them for me. Everybody else is invited."

That's him talking to Howard Stern. So what's left for us? Digging through podcasts, hunting for his latest interviews.
+1
11

AI news has completely taken over tech news

Honestly, I'm getting bored of reading tech news lately. It feels like every single headline these days is AI this, AI that. And that's it. Nothing else seems to exist anymore. As if the entire tech industry has been reduced to neural networks.

What do tech publications even write about now? "ChatGPT solved some math problem!" "Anthropic's agent swarm hacked something!" And a hundred variations of the same story.

Where's the actual tech news? You know, the stuff we used to read back in the good old days? Golang 1.27 added generic methods, for example. And apparently nobody gives a shit anymore. A lot of Go developers have wanted this for ages. Generics were introduced in Go 1.18, but they didn't work with methods and now they do. That's a pretty damn cool change! Did you see it covered by tech news sites and bloggers anywhere near as much as the latest AI hype? Of course not.

Or take the webfrontend world. TypeScript 7 has been rewritten in Go, which is a huge deal. It makes TS-JS compilation significantly faster, and that's something that actually affects millions of developers. But somehow that cool story gets buried under yet another article about some NVIDIA chip nobody asked for or another pointless ChatGPT model update.

I miss when tech news was actually about technology, not just whatever AI company did something vaguely interesting this week.
+3
26

Spanish yo pronunciation

I have to learn Spanish because my job involves communicating with people from Latin America. I'm learning mostly from a textbook, but sometimes I watch YouTube videos where people speak Simple Spanish.

Every textbook says that the pronoun *yo* is pronounced /ʝo/ (I copied from website, something like “yoh”)

But every now and then, I get recommended videos of people having conversations on the streets of Spain. And there, like every other person in Barcelona seems to pronounce the first sound more like a “j.” And none of the textbooks ever mention that....

Also, the textbooks never warn you how ridiculously fast people speak Spanish in real life. I can barely make out half the words.
+1
6

TypeScript 7 vs TypeScript 5 (real project measurements)

Hi guys. Without further ado, here are my real build time measurements for the TS project.

TypeScript 5
time npm run build

real    0m2,936s
user    0m5,075s
sys     0m0,289s

TypeScript 7
npm run build

real    0m0,520s
user    0m1,940s
sys     0m0,335s

real time comparison: 2.936s vs 0.520s, so TS 7 is 5.64 times faster.
I like the 7th Typescript! 😎
+1
25

What does Famabara mean?

Famabara means... nothing :)

I wanted to come up with a pleasant-sounding and at the same time meaningless word.
There is only one Famabara in the world and you are now on it.
+2
102

Tivat airport: photos, video, how it works, and how to get there - first-hand experience

We arrived in Tivat from Belgrade. Although the airport is international, it's very small and can feel quite cramped. It likely wouldn't be able to handle two flights at the same time comfortably, as there simply isn't enough space in the terminal waiting areas.
As the plane approaches for landing, you can see mountains on both sides.
Показать полностью...
+3
19

Mona Plaza hotel in Belgrade - an honest review

We spent a long time comparing hotels in Belgrade based on price versus quality, and Mona Plaza turned out to be the best fit. We stayed four nights in a Standard Double Room.
The area is quiet - no traffic noise, no restaurants or bars nearby, and it was silent at night. It's a 15-minute walk to the tourist center.

The bed is wide and long. I'm 6'1" (1.85 m) tall, and I was very comfortable. The bedding is excellent.
Показать полностью...
+3
9

Syntax highlight in preformatted text

Write language name after triple backticks (```) and content of preformatted text will be highlighted.
This is example:
 ``` ts
 let projectName: string|null = null;
 projectName = 'Famabara';
 ```
Of course, you shouldn't start backticks-line with a space.

Golang syntax highlight example:
package main

import "fmt"

func main() {
	fmt.Println("Hello, from Go!")
}

Javascript syntax highlight example:
console.log(2**2**3); // 256
console.log(2**(2**3)); // 256
console.log((2**2)**3); // 65

SQL example:
SELECT p.id, p.title FROM posts p LIMIT 10;

For C++ write "cpp", not "c++".
For C# write "csharp", not "c#"

Famabara uses highlight.js for syntax highlight.
+2
58

How wind turbine power depends on blade length: looking at real data

Wind turbines keep getting bigger every year. There's one main reason for that: the longer the blades, the more powerful the turbine. But couldn't you just install two smaller turbines instead of one large one? To answer this, let's take a look at real-world data.

Goldwind is a Chinese wind turbine manufacturer. Here are photos of their operating turbines from the company website:
Goldwind GW 82 / 1500 - output: 1500 kW (1.5 MW). Rotor length: 82.3 meters, meaning a blade diameter of roughly 41.15 meters.

Goldwind GW 171 / 6000 - output: 6000 kW (6.0 MW). Rotor length: 171 meters, giving a blade diameter of about 85.5 meters.

Even here you can already see that the relationship between blade length and output is nonlinear. The second turbine's blade is 2.07x longer, but the power is 4x higher!

Vestas is a wind turbine manufacturer from Denmark (their turbines are shown in the next photo):
Показать полностью...
+3
60

Nuxt 3 and 4: issue with multiple navigateTo calls

At work, on one of our projects, I ran into an issue in Nuxt 4 where a page component needs to perform different redirects via navigateTo() based on various conditions during the execution of the setup function. Something like this:

<template>
  Some page
</template>

<script lang="ts" setup>
if (1 + 1 === 2) {
  await navigateTo('/?abc=1', {
    redirectCode: 302,
  });
}

if (2 + 2 === 4) {
  await navigateTo('/?abc=2', {
    redirectCode: 302,
  });
}

if (3 + 3 === 6) {
  await navigateTo('/?abc=3', {
    redirectCode: 302,
  });
}

if (4 + 4 === 8) {
  await navigateTo('/?abc=4', {
    redirectCode: 302,
  });
}
</script>

This is where the problem appears: in the end, the redirect always goes to the very last URL, i.e. in the example above the navigation ends up at /?abc=4. I dug into the documentation but couldn't find anything built-in to prevent subsequent navigateTo calls from being triggered. It seems this behavior is related to vue router.

You can't write it like this either:
if (1 + 1 === 2) {
  await navigateTo('/?abc=1', {
    redirectCode: 302,
  });
  return; // not allowed in script setup
}

In the end, the only solution that worked was introducing a boolean variable and checking it before calling navigateTo:
let isAlreadyRedirected = false;

if (1 + 1 === 2) {
  await navigateTo('/?abc=1', {
    redirectCode: 302,
  });
  isAlreadyRedirected = true;
}

if (!isAlreadyRedirected && 2 + 2 === 4) {
  await navigateTo('/?abc=2', {
    redirectCode: 302,
  });
  isAlreadyRedirected = true;
}

if (!isAlreadyRedirected && 3 + 3 === 6) {
  await navigateTo('/?abc=3', {
    redirectCode: 302,
  });
  isAlreadyRedirected = true;
}

if (!isAlreadyRedirected && 4 + 4 === 8) {
  await navigateTo('/?abc=4', {
    redirectCode: 302,
  });
  isAlreadyRedirected = true;
}
Once again: this is the only thing that solved the problem for me. If you have any other solution, please let me know.
Показать полностью...
+2
7