Sunday, August 20, 2023

TC Lazy Screening: Movies Based On True Stories

  • Adrift (2018) - A true story of survival, as a young couple's chance encounter leads them first to love, and then on the adventure of a lifetime as they face one of the most catastrophic hurricanes in recorded history.


  • Alpha Dog (2006) - Johnny and his pals kidnap Jake's 15-year-old brother Zach, then assign his buddy Frankie to be Zach's minder. They develop a brotherly friendship. Zach parties with his captors as things begin to spin out of control.


  • The Social Network (2010) - The story of the founding and rise of Facebook, directed by David Fincher.




  • Schindler's List (1993) - Based on the true story of Oskar Schindler, a German businessman who saved the lives of more than a thousand Jewish refugees during World War II, directed by Steven Spielberg.


  • Catch Me If You Can (2002) - The incredible life story of Frank Abagnale Jr., a skilled con artist who successfully impersonated various professionals while eluding capture from the FBI, directed by Steven Spielberg.


  • Hidden Figures (2016) - This film tells the untold story of three African-American mathematicians working at NASA during the Space Race in the 1960s, directed by Theodore Melfi.


  • The Pursuit of Happyness (2006) - Based on Chris Gardner's memoir about his struggles as a homeless salesman and single father trying to secure a better future for himself and his son, starring Will Smith.


  • 127 Hours (2010) - A survival drama based on Aron Ralston's harrowing experience when he became trapped under a boulder while hiking alone in Utah's Canyonlands National Park, directed by Danny Boyle.


  • Dallas Buyers Club (2013) - Set in mid-1980s Texas during the AIDS crisis, it follows Ron Woodroof's fight against pharmaceutical companies after being diagnosed with HIV/AIDS, starring Matthew McConaughey and Jared Leto.


  • Hacksaw Ridge (2016) – The extraordinary true story of Desmond Doss, an American Army medic who served during WWII without carrying any weapons due to religious beliefs but saved numerous lives during one of history’s bloodiest battles, directed by Mel Gibson.


  • The Imitation Game (2014) - A biographical drama about Alan Turing, the British mathematician who played a vital role in breaking Nazi Germany's Enigma code during World War II, starring Benedict Cumberbatch.


  • Apollo 13 (1995) - Based on the real-life events of the aborted Apollo 13 lunar mission in 1970 and the efforts made to bring the astronauts safely back to Earth, directed by Ron Howard.


  • Oppenheimer (2023) - A 2023 epic biographical thriller film[5] written and directed by Christopher Nolan. Based on the 2005 biography American Prometheus by Kai Bird and Martin J. Sherwin, the film chronicles the career of American theoretical physicist J. Robert Oppenheimer


Wednesday, December 29, 2021

TC Cup of Codes: Creating Responsive Three Columns Layout

I've made another change in my blog! Now I'm adding my videography portfolio


Previously, I used a simple table to just put my embedded videos and some information related to the videos in one row. Sadly, it looked so pathetic when the clients opened it from their phone, since it only resize the table into smaller size, and the videos are squeezed into their smallest dimensions.

Then, I remembered one time that I saw a random portfolio of someone which smoothly change its table visualization from columns to rows when the screen-size changed. I try to meditate Google it up and found out it's called Responsive Column Layout.


So, in this post I would like to show you how to make a responsive column layout like how I showcase my current videography portfolio

1. Set up your <meta>

The <meta>  tag defines metadata about an HTML document. Metadata is data (information) about data. Just a quick reminder, in case you're interested.

 
1
<meta name="viewport" content="width=device-width, initial-scale=1">
 
 
<meta name="viewport" content="width=device-width, initial-scale=1">

2. Set up the column

Add this CSS class to your theme (check first if there's already the same class used before in your theme). It will create equals columns that floats next to each other.

 
1
2
3
4
5
6
.column {
  float: left;
  width: calc(100%/3);
  padding: 10px;
  height: 300px; /* Should be removed. Only for demonstration */
}
 
 
.column {
  float: left;
  width: calc(100%/3);
  padding: 10px;
  height: 300px; /* Should be removed. Only for demonstration */
}

3. Set up the row

Add this CSS class to set another row whenever you finished adding the columns.

 
1
2
3
4
5
.row:after {
  content: "";
  display: table;
  clear: both;
}
 
 
.row:after {
  content: "";
  display: table;
  clear: both;
}

4. Set up the responsive layout

Add this responsive layout to makes the columns stack on top of each other instead of next to each other.

 
1
2
3
4
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
 
 
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }

5. Set up the content

Now, we're going to put these floating columns on your page

 
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<div class="row">
  <div class="column" style="background-color:#aaa;">
    <h2>Column 1</h2>
    <p>Some text..</p>
  </div>
  <div class="column" style="background-color:#bbb;">
    <h2>Column 2</h2>
    <p>Some text..</p>
  </div>
  <div class="column" style="background-color:#ccc;">
    <h2>Column 3</h2>
    <p>Some text..</p>
  </div>
</div>
<div class="row">
  <div class="column" style="background-color:#aaa;">
    <h2>Column 1</h2>
    <p>Some text..</p>
  </div>
  <div class="column" style="background-color:#bbb;">
    <h2>Column 2</h2>
    <p>Some text..</p>
  </div>
  <div class="column" style="background-color:#ccc;">
    <h2>Column 3</h2>
    <p>Some text..</p>
  </div>
</div>
 
 
<div class="row">
  <div class="column" style="background-color:#aaa;">
    <h2>Column 1</h2>
    <p>Some text..</p>
  </div>
  <div class="column" style="background-color:#bbb;">
    <h2>Column 2</h2>
    <p>Some text..</p>
  </div>
  <div class="column" style="background-color:#ccc;">
    <h2>Column 3</h2>
    <p>Some text..</p>
  </div>
</div>
<div class="row">
  <div class="column" style="background-color:#aaa;">
    <h2>Column 1</h2>
    <p>Some text..</p>
  </div>
  <div class="column" style="background-color:#bbb;">
    <h2>Column 2</h2>
    <p>Some text..</p>
  </div>
  <div class="column" style="background-color:#ccc;">
    <h2>Column 3</h2>
    <p>Some text..</p>
  </div>
</div>


That's it! Now you have a more interesting visual with a responsive effect (try resize the window size to see how it works or try open it from your phone with mobile view).

--
Source:

Friday, September 17, 2021

TC Speaks Fluently: Some English Proverbs Equivalent to Indonesian Proverbs

Often times, when you translate an English literature, you will stumble upon some proverbs in the language and do not want to translate it per words. Instead, you want to find equal proverbs which have the similar meaning in your target language (in this post, it will be Indonesian). Here are some examples of those proverbs:
  1. To have an axe to grind = Ada udang di balik batu
  2. One scabbed sheep is enough to spoil a flock = Sebab nila setitik rusak susu sebelanga
  3. To cherish a viper in one’s bosom = Air susu dibalas air tuba
  4. To fish in troubled waters = Memancing di air keruh
  5. Cut your coat according to your cloth = Bayang-bayang hendaklah sepanjang badan
  6. To carry coals to New-castle = Membuang garam ke laut
  7. The pot calls the cattle black = Udang hendak mengatai ikan
  8. He is a dog in the manger = Badak-badak, minta aku daging; Bangau2, minta aku leher
  9. A thorn in one’s flesh = Seperti duri dalam daging
  10. Home, sweet home = Hujan emas di negeri orang, hujan batu di negeri awak, elok juga di negeri awak
  11. Huge winds blow on high hills = Besar kapal besar gelombangnya, besar kayu besar dahannya
  12. Barking dogs seldom bite = Anjing menggonggong tidak akan menggigit
  13. No rose without thorn = Tiada gading yang tak retak
  14. Like father, like child = Air cucuran atap jatuhnya ke pelimpahan juga
  15. Misfortunes never come singly = Antan patah, lesung hilang
  16. Out of the frying-pan into the fire = Lepas dari mulut harimau jatuh ke mulut buaya
  17. To behold the mote in the eye of one’s neighbour, but not the beam in one’s own = Gajah di kelopak mata tak tampak, kuman di seberang lautan tampak
  18. Once a use and ever a custom = Kebiasaan menjadi tabiat
  19. Strike the iron while it is hot = Menjemur di waktu hari panas.
  20. Such things bring grist to his mill = Pucuk dicinta ulam tiba
  21. Such as the tree, such is the fruit = Bagaimana biduk, bagaimana pengayuh
  22. The apple falls near the tree = Air cucuran atap jatuhnya ke pelimpahan juga
  23. Harm set, haram get= Siapa menggali lubang, ia juga terperosok ke dalamnya
  24. After rain comes sunshine = Sesudah hujan datang terang
  25. His bread is buttered on both sides = Seperti parang bermata dua
  26. There is no smoke without a fire = Kalau tak ada api takkan ada asap
  27. The right man in the right place = Asal ayam pulang ke lesung, asal itik pulang ke pelimpahan
  28. The tongue wounds more than a lance = Berkata peliharakan lidah
  29. To show the white feather = Malu berani, mati takut
  30.  When at Rome, do as Rome does = Di mana tanah dipijak, disitu langit dijunjung
  31. In the land of the blind, the one-eyed is king = Dimana tiada elang, kata belalang, akulah elang
  32. To kill two birds with one stone = Sekali merangkuh dayung, dua, tiga pulau terlampaui
  33. To pour water into a broken basin = Bagai menghasta kain sarung
  34. Too much of a good thing is good for nothing = Seperti kersik di pulau
  35. To save money for a rainy day = Sebelum hujan sediakan payung
  36. Where there is a will there is a way = Dimana ada kemauan disitu ada jalan
  37. You must not countyour chickens before they are hatched = Belum beranak sudah ditimang
  38. Repentance always comes too late = Sesal dahulu pendapatan, sesal kemudian tiada berguna
  39. So many countries, so many customs = Lain ladang lain belalang, lain lubuk lain ikannya
  40. Spare the rod and spoil the child = Kasih akan anak dipertangis, kasih akan istri dipertinggalkan
  41. Falling crumb one must be content with crust = Tidak ada rotan, akar pun jadi
  42. Bean-pods are noisiest when dry = Tong kosong nyaring bunyinya
  43. The die is cast = Nasi sudah menjadi bubur
  44. Many a little makes a mickle = Sehari selembar benang, lama2 menjadi sehelai kain
  45. To put the cart before the horse = Dahulu bajak dari jawi
  46. With one’s back to the wall = Seperti ikan dalam belat
  47. Once bitten twice shy = Sekali jalan terkena, dua kali jalan tahu
  48. Let sleeping dogs lie = Jangan dibangunkan kucing tidur
  49. No pains, no gains = pahit dahulu manis kemudian
  50. A penny saved is a penny gained = Hemat pangkal kaya
  51. If the blind lead the blind, both fall into the ditch = Seperti kapak menyelam beliung
  52. Between the devil and the deep sea = Bagai memakan si mala kama, jika dimakan ibu mati, tidak dimakan ayah mati.
  53. Don’t cut your nose off to spite your face = Menepuk air di dulang, terpercik muka sendiri
  54. As the twig is bent, the tree is inclined = Kecil termanja-manja, besar terbawa-bawa
  55. A dwarf is on a giant’s shoulder can see of the two = Berdiri sama tinggi, duduk sama rendah
  56. A golden key opens every door = Ada uang abang sayang, tidak ada uang abang melayang
  57. Little helps =Sedikit demi sedikit lama-lama jadi bukit
  58. Live and learn = Jauh berjalan banyak dilihat
  59. A well-regulated family often gets the accident = Sepandai-pandai tupai melompat, suatu saat akan jatuh juga

Friday, April 23, 2021

TC Speaks Fluently: Spanish Alphabets (Part One)

So, one of my goals this year is to be able to speak yet another language. And for that I choose Spanish. Why, you said? It's because there are over 400 million Spanish speakers world-wide. With more than 33 million speakers, Spanish is the second largest language in the United States. Hispanics are the largest minority in the United States, with the majority of them being Spanish speakers. By learning Spanish, you'll be better able to communicate with Spanish speakers. Latin American countries are our most important trading partners. Being able to speak Spanish greatly enhances your resume. If you are bilingual you are more competitive in the workplace. Whether as a Spanish teacher or that of any discipline, you can make a difference in the field of education. Your language skills will enable you to interact with English Language Learners. You can travel to a Spanish-speaking country and really get to know the culture. Your ability to understand Spanish enables you to gain important insights which monolinguals cannot. As we grow older, our memory begins to fade. Learning a foreign language actually helps keep your memory sharp. so that I could watch Spanish TV series without english subtitle despite the dissapointing news from the most waited show La Casa de Papel just now.

To not wasting too much space, let's start learning this beautiful language from the very basic of its alphabets. For this part one, I'll show you a table from letter A to LL

Letter Letter Name Pronunciation Tips Word Examples
a a This letter sounds like the ah sound you use to express realization in English: Ah, that's the one! Arroz, Azul, Arepa, Comida
b be This letter often sounds like an English b. Especially when it occurs between two vowels, it is pronounced with the lips not touching, much like the Spanish v. Bueno, Alberto, Barco
c ce/td> This letter often sounds like the English k. Before e or i, it sounds like an s (or like the th in thick in many parts of Spain.)
"a, o, u -> ka, ko, ku
e, i -> che, chi, Latin America -> s
h -> c"
Cambiar, Carro, Coche, Comer, Cocina, Cucaracha
Cebolla, Cerrado, Cerdo, Cebra, Cine
Chorizo, Coche, Chimenea
d de This letter sounds much like an English d, except you should place your tongue against your upper teeth instead of the roof of your mouth when pronouncing it. It often sounds like the th in English then, especially when it comes between two vowels. Dormir, Dormitorio, Diego, Duro
e e This letter sounds like the eh sound you make when asking for clarification or agreement in English: Eh? What did you say? Elena, Empanada, Espejo, Elefante
f efe This letter sounds like the English f. Fantasma, Flor, Fuego, Fuerte
g ge 'e', 'i' -> kh
'a','o','u' -> ge
'ue' -> ge
'ui' -> gi
This letter usually sounds much like an English g. Before e or i, it sounds like a harsh English h. It's very similar to the j in Spanish."
Gimnasio, Gerardo, General, Girasol, Gerente
Gato, Galleta, Gol,Gorra, Guante
Guerra, Guerrero
Guia, Aguila
h hache "In general, this letter is silent. However, in words adopted from other languages, the breathy aspiration is maintained. For example, Hawái. Hermana, Hermosa, Hablar, Alcohol
i i This letter sounds like English ee but shorter. Ignacio, Indonesia, Idioma, Ingles
j jota This letter sounds close to the English h sound, though it varies from country to country. In some places, it makes a harsh sound (almost like you are trying to spit something up). It never sounds like the j in English judge. Jose, Juan, Jirafa, Jabon, Jalapeno
K ka This letter is uncommon in Spanish, but sounds much like the English k. Kiwi, Koala, Ketchup, Kimono, Kiosko
l ele This letter sounds close to the English l, but with the tongue raised closer to the roof of the mouth (rather than dipped down). Lapiz, Luna, Libro, Lampara, Leon
LL elle / doble ele 'ij' or 'y'
While this is not considered a letter anymore by the RAE, it sounds like the y sound in English yellow in many places. It can also be pronounced like the j in judge or the s in pleasure. You may also hear it called doble
Llamar, Llave, Lluvia, Galletas, Botella

Sunday, February 14, 2021

TC Speaks Fluently: Greetings in Indonesian Language

Thank you for having interest in learn Indonesian Language! Whether you plan to visit for short-term or long-term, the ability to speak the local language is necessary, since a lot of locals are having a hard time understand other languages. You can try resorting to English, but a lot of times you could only get some responses in broken English or on the least form of it, Yes and No answers. 

On this first part of the series, let's take a look on how you can greet others using Indonesian language.

Indonesian English
Halo! Hello!
Selamat Pagi! Good Morning!
Selamat Siang! Good Afternoon!
Selamat Malam! Good Evening / Good Night!
Apa kabar? How are you? / How's it going? / What's new?
Terima Kasih Thank You
Selamat Tinggal Good Bye
Sampai Jumpa See You Later