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.
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.
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.
Remember that memorable interrogation scene on Pier 32 from The Naked Gun?
The actor who played the sleazy dock foreman is named Joe Grifasi.
The two brothers from the famous Zucker-Abrahams-Zucker trio - had their mother, Charlotte Zucker, appear in a bunch of their films. Though her roles were mostly brief and cameo in nature, if you enjoy the spoof comedies of that era, you're sure to remember this elderly lady.
In the original "Airplane!", Charlotte Zucker tried to apply makeup.
In the original "Airplane!", Charlotte Zucker tried to apply makeup.
"The Naked Gun: From the Files of Police Squad!": she played Dominique, the secretary for the mastermind villain.
“I must kill Papshmir.”
“I must kill Papshmir.”
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 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):
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):
JavaScript has two globally available metods for working with Base64: atob() and btoa(). Their names clearly look like they were borrowed from older languages. In C, for instance, the standard library includes functions like atoi and atof:
atoi means ASCII to integer, and atof means ASCII to float (though in reality it returns a double).
So what do you think the atob function does in JavaScript? ASCII to Base64? In other words, converting a regular string into a Base64 string? Nope! It does the exact opposite: it converts a Base64 string into a "regular" string. And btoa, in turn, converts a regular string into Base64!
Who thought it was a good idea to swap the names like that? Love JS.
#include <stdlib.h> char str[] = "123"; int num = atoi(str); // 123
atoi means ASCII to integer, and atof means ASCII to float (though in reality it returns a double).
So what do you think the atob function does in JavaScript? ASCII to Base64? In other words, converting a regular string into a Base64 string? Nope! It does the exact opposite: it converts a Base64 string into a "regular" string. And btoa, in turn, converts a regular string into Base64!
console.log(btoa('Famabara')); // 'RmFtYWJhcmE='
console.log(atob('RmFtYWJhcmE')); // 'Famabara'
Who thought it was a good idea to swap the names like that? Love JS.
Поздравляем! Вы долистали до конца. На этой странице пока больше нет постов.







