111: A Nelson Number

111: A Nelson Number is a Bangladeshi supernatural drama television series based on a dorm room numbered 111, where the students living there are spooked by unnatural presence. The series was directed by Nayeem Imtiaz Neyamul, written by Sirajul Islam and produced by Ferdaus.[1][2] The series, which aired at 9:45 pm on NTV, began on September 27, 2007[3] and ended after 26 episodes on April 17, 2008.[2]

111: A Nelson Number
GenreHorror
Thriller
Written bySirajul Islam
Directed byNayeem Imtiaz Neyamul
Starring
Composer(s)S I Tutul
Country of originBangladesh
Original language(s)Bengali
No. of episodes26
Production
Producer(s)Ferdaus Ahmed
Production location(s)Bangladesh
Editor(s)
  • Israfil Bablu
  • Rasel Zayedi
Running time21 minutes
Release
Original networkNTV
Picture format480i
Original releaseSeptember 27, 2007 
April 17, 2008
External links
[www.ntvbd.tv Production website]

Cast

Actor
Anisur Rahman Milon
Nusrat Imrose Tisha
Mamnun Hasan Emon
Ziaul Faruq Apurba
Abir Khan
Himu
gollark: Your config can be a programming language too, since it's useful for specifying some things without having to repeat yourself, but it should be separate from the code.
gollark: Application code is stuff which should be the same across deployments. Config is stuff which shouldn't.
gollark: Then your application is wrong.
gollark: * specify, not design
gollark: ```rust let with_db = warp::any().map(move || pool.clone()); let static_files = warp::path("assets").and(warp::fs::dir("assets")); let view_page = warp::path!(String).and(warp::get()).and(with_db.clone()) // repeating the next bit for every route is kind of bad, see if it can be changed somehow .and_then(|title, db| async { error_to_http_response(view_page(db, title).await) }); let editor_page = warp::path!(String / "edit").and(warp::get()).and(with_db.clone()) .and_then(|title, db| async { error_to_http_response(editor_page(db, title).await) }); let save_edit = warp::path!(String / "edit").and(warp::post()).and(warp::body::form()).and(with_db) .and_then(|title, form, db| async { error_to_http_response(save_edit(db, title, form).await) }); let not_found = warp::any().map(|| warp::reply::with_status("404 Not Found", http::StatusCode::NOT_FOUND)); let main = editor_page.or(save_edit).or(view_page); let app = static_files.or(main).or(not_found);```See, this is how you SHOULD design routes: incomprehensibly.

References

  1. "111 A Nelson Number". AmarNatok.com. Retrieved 2014-01-31.
  2. "Last episode of '111- A Nelson Number' tonight". The Daily Star. Dhaka, Bangladesh: Transcom Group. 2014-04-17. Archived from the original on 2014-01-31. Retrieved 2014-11-10.
  3. "Drama serial '111 A Nelson Number' on ntv tonight". The Daily Star. Dhaka, Bangladesh: Transcom Group. 2007-09-27. Retrieved 2014-11-10.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.