Somlek Sakdikul
Somlek Sakdikul (Thai: สมเล็ก ศักดิกุล) is a Thai film actor and musician. He is sometimes credited as Somchai Sakdikul. He portrayed "Suwat" or "Daddy", the lecherous music producer in Pen-Ek Ratanaruang's 2001 comedy, Monrak Transistor. A prolific actor, he appears in several Thai films each year.
He also works as a tennis commentator for United Broadcasting Corporation, a cable television in Thailand.
Partial filmography
- Monrak Transistor (2001)
- Mekhong Full Moon Party (2002)
- Buppah Rahtree (2003)
- Hom rong (The Overture) (2004)
- Sai Lor Fah (Pattaya Maniac) (2004)
- SARS Wars (2004)
- Jaew (M.A.I.D.) (2004)
- Pad Thai Bride (2004)
- Buppah Rahtree 2: Rahtree Returns (2005)
- Promise Me Not (2005)
- Rohng Tiam (Happy Inn) (2005)
- Luang Phii Theng (The Holy Man) (2005)
- In the Name of the Tiger (Seua phuu khaao) (2005)
- Ghost Variety (Variety phii chalui) (2005)
- Nam Prig Lhong Rua (Navy Boys) (2006)
- Thai Thief (2006)
gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```
gollark: It doesn't require classes. Hold on.
gollark: I saw `getunicode`, which seems python2-ish since python3 has better unicode handling.
gollark: Also, please use Flask and Python3.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.