Skip to main content

Posts

Showing posts from April, 2022

TV Show - Fear the Walking Dead: Dead in the Water (2022)

 

Movies - 2 Guns (2013)

 

TV Show - Stay Close (2021)

 

Movies - Army of the Dead (2021)

 

Movies - Uncharted (2022)

 

Movies - 9 Bullets (2022)

 

Movies - House on Haunted Hill (1959)

 

Movies - The Nan Movie (2022)

 

Movies - Ambulance (2022)

 

Movies - Seven (1995)

 

TV Serie - Ghosts [US] (2021) - Season 1

TVShow - WeCrashed (2022)

 

Movies - The Excusion | Kazn | Казнь (2021) [Russia]

 

Math - Pascal Triangle

BASH #!/bin/bash row=1 while [[ $row -le 47 ]]; do   printf "%03d: " $row   for (( col=$row; col > 0; col-- )); do     if [[ ${col} -eq 1 ]]; then       cell[${col}]=1     elif [[ ${col} -eq ${row} ]]; then       cell[${col}]=1     else       cell[${col}]=$(( ${cell[${col}-1]}+${cell[${col}]} ))     fi   done   for (( col=1; col <= ${row}; col++ )); do     printf "%15d " ${cell[${col}]}   done   echo   row=$((row+1)) done

Movies - Star Trek Into Darkness (2013)

 

Movies - Kiss of the Dragon (2001)

 

Movies - The Batman (2022)

 

The GuardianWeekly - 2022 March 25 (Vol 206, No 13)

 

Movie - The Whaler Boy | Katoboy | Китобій (2020) [Russia]

  One more movie that you desire Putin not to be the president of Russia

Movies - Furie (2019)

  Amazing fighting scenes Body movement very aligned with the fighting movements

Movies - Choose or Die (2022)

 

Movies - Yaksha: Ruthless Operations (2022)

 

Movies - Kong: Skull Island (2017)

 

Movies - Wyrmwood: Apocalypse (2021)

 

Movies - Agent Game (2022)

 

Math - 3N+1

Longest non self loop interaction 2022-04-13: 860 @ 295,147,905,179,352,826,087 [0.295 E21] Code from 1 #!/bin/bash i=1 while true; do   c=1   n=$i   printf "$n"   while [[ $n != "1" ]]; do     # bc has no limit for the number of digits (as much as memory can hold)     case $n in     *0 | *2 | *4 | *6 | *8) n=$( echo "$n / 2"|bc) ;;     *) n=$( echo "$n * 3 + 1"|bc) ;;     esac     printf " -> $n"     c=$((c+1))   done   echo " [$c]"   # maybe use bc ....   i=$((i+1)) done Code from 2^68 #!/bin/bash export BC_LINE_LENGTH=0 i=295147905179352825856 while true; do   c=1   n=$i   printf "$n"   while [[ $n != "1" ]]; do     case $n in     *0 | *2 | *4 | *6 | *8) n=$( echo "$n / 2"|bc) ;;     *)         n=$( echo "$n * 3 + 1"|bc)     esac     printf " -> $n"     c=$((c+1)) ...

Movies - Ziegfeld Girl (1941)

 

Movies - L.A. Confidential (1997)

 

Math - multiplicative persistence order 6 in base 10

4 digits:6788 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [6] 5 digits:23788 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [6] 5 digits:49999 -> 26244 -> 384 -> 96 -> 54 -> 20 -> 0 [6] 5 digits:66999 -> 26244 -> 384 -> 96 -> 54 -> 20 -> 0 [6] 5 digits:67788 -> 18816 -> 384 -> 96 -> 54 -> 20 -> 0 [6] 6 digits:229999 -> 26244 -> 384 -> 96 -> 54 -> 20 -> 0 [6] 6 digits:237788 -> 18816 -> 384 -> 96 -> 54 -> 20 -> 0 [6] 6 digits:477789 -> 98784 -> 16128 -> 96 -> 54 -> 20 -> 0 [6] 6 digits:667778 -> 98784 -> 16128 -> 96 -> 54 -> 20 -> 0 [6] 6 digits:777899 -> 222264 -> 384 -> 96 -> 54 -> 20 -> 0 [6] 6 digits:888888 -> 262144 -> 384 -> 96 -> 54 -> 20 -> 0 [6] 6 digits:888899 -> 331776 -> 2646 -> 288 -> 128 -> 16 -> 6 [6] 7 digits:2277789 -> 98784 -> 16128 -> 96 -> 54 -> 20 -...

Movies - Metal Lords (2022)

Movies - The Man from U.N.C.L.E. (2015)

TV Show - Murdoch Mysteries (2008) - Season 15

 

Math - multiplicative persistence order 7 in base 10

5 digits:68889 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [7] 6 digits:238889 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [7] 6 digits:267799 -> 47628 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [7] 6 digits:347799 -> 47628 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [7] 6 digits:377779 -> 64827 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [7] 6 digits:377889 -> 84672 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [7] 6 digits:467789 -> 84672 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [7] 9 digits:888888888 -> 134217728 -> 18816 -> 384 -> 96 -> 54 -> 20 -> 0 [7] 10 digits:2488888888 -> 134217728 -> 18816 -> 384 -> 96 -> 54 -> 20 -> 0 [7] 11 digits:26777777899 -> 914838624 -> 331776 -> 2646 -> 288 -> 128 -> 16 -> 6 [7] 11 digits:27777888999 -> 1792336896 -> 2939328 -> 23328 -> 288 -> ...

Math - multiplicative persistence order 8 in base 10

7 digits:2677889 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [8] 7 digits:2799999 -> 826686 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [8] 7 digits:3477889 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [8] 7 digits:3679999 -> 826686 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [8] 7 digits:6888999 -> 2239488 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [8] 7 digits:6999999 -> 3188646 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [8] 8 digits:23888999 -> 2239488 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [8] 8 digits:23999999 -> 3188646 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [8] 8 digits:27899999 -> 6613488 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [8] 8 digits:36789999 -> 6613488 -> 27648 -> 2688 -> 768 ...

TV Serie - From (2022) - Season 1

 

The GuardianWeekly - 2022 March 18 (Vol 206, No 12)

 

Math - multiplicative persistence order 9 in base 10

8 digits:26888999 -> 4478976 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [9] 8 digits:34888999 -> 4478976 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [9] 10 digits:7777788999 -> 784147392 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [9] 11 digits:24777778999 -> 784147392 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [9] 11 digits:33777778899 -> 784147392 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [9] 12 digits:377788888889 -> 19421724672 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [9] 12 digits:467778888889 -> 19421724672 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [9] 14 digits:27777777777779 -> 249143169618 -> 2239488 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [9] 14 digit...

Math - multiplicative persistence order 11 in base 10

15 digits:277777788888899 -> 4996238671872 -> 438939648 -> 4478976 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [11] 15 digits:367777778888889 -> 4996238671872 -> 438939648 -> 4478976 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [11] 15 digits:447777778888899 -> 4996238671872 -> 438939648 -> 4478976 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [11] 17 digits:27777789999999999 -> 937638166841712 -> 438939648 -> 4478976 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [11] 17 digits:36777778999999999 -> 937638166841712 -> 438939648 -> 4478976 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [11] 17 digits:44777779999999999 -> 937638166841712 -> 438939648 -> 4478976 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [11]

Math - multiplicative persistence order 10 in base 10

10 digits:3778888999 -> 438939648 -> 4478976 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [10] 10 digits:4677888999 -> 438939648 -> 4478976 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [10] 13 digits:3888888888889 -> 231928233984 -> 4478976 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [10] 13 digits:4688888888889 -> 231928233984 -> 4478976 -> 338688 -> 27648 -> 2688 -> 768 -> 336 -> 54 -> 20 -> 0 [10]

TV Show - Severance (2022) - Season 1

 

Movies - Knight and Day (2010)

 

Movies - Alice (2022)

 

Movies - The Quick and the Dead (1995)

 

Movies - The Shop Around the Corner (1940)

 

Movies - The Girl Who Had Everything (1953)

  Elizabeth Taylor was 21 years old Fernando Lamas was 38 years old William Powell was 61 years old

Movies - Libeled Lady (1936)

  Free the nipple

Movies - My Man Godfrey (1936)

 

Movies - Ladies' Man (1931)

  Free the nipple 1931:A gigolo's career is threatened when the daughter of one of his clients becomes attracted to him.  A gigolo's career is threatened when the daughter of one of his clients becomes attracted to him.

Movies - The Last Command (1928)

 

Movies - The Bubble (2022)

  Back to Evolution (2001) .

Movies - The Contractor (2022 )

 

Movies - The Thin Man Goes Home (1945)

  Free the nipple "Wife beater"