Maddock Films

Maddock Films Pvt. Ltd. is an Indian production house founded by film director and producer Dinesh Vijan. Established in 2010, the Maddock Films Pvt. Ltd. has produced critically and commercially acclaimed Hindi films that include, Love Aaj Kal (2009) Cocktail (2012), Badlapur (2015), Hindi Medium (2017), Stree (2018), Luka Chuppi (2019) and Bala (2019).

Maddock Films Pvt. Ltd.
Private
IndustryMedia & Entertainment
Founded2010
FounderDinesh Vijan
Headquarters
Key people
Dinesh Prem Vijan
Kiran Prem Vijan
ProductsFilm production
OwnerDinesh Vijan

Films produced

No Year Film Cast Director(s) Notes Ref.
12005Being CyrusHomi AdajaniaEnglish film
22008HijackKunal Shivdasani
32009Love Aaj KalImtiaz Ali
42012Agent Vinod
Sriram Raghavan
5Cocktail
Homi Adajania
62013Go Goa GoneRaj and D.K.
72014Lekar Hum Deewana Dil
Arif Ali
8Finding Fanny
Homi Adajania[1]
9Happy EndingRaj and D.K.
102015BadlapurSriram Raghavan[2]
112017Hindi MediumSaket Chaudhary[3]
12RaabtaDinesh Vijan[4]
132018StreeAmar Kaushik[5]
142019Luka Chuppi
Laxman Utekar[6]
15Arjun PatialaRohit Jugraj Chauhan[7]
16Made In China
Mikhil Musale[8]
17BalaAmar Kaushik[9]
182020Love Aaj Kal 2Imtiaz Ali
19Angrezi MediumHomi Adajania[10]
20Roohi AfzanaHardik Mehta[11]
21Mimi
Laxman Utekar[12]
22Shiddat
Kunal Deshmukh[13]
232021Go Goa Gone 2
  • Saif Ali Khan
  • Kunal Khemu
  • Vir Das
  • Anand Tiwari
Raj and D.K.
gollark: All three.
gollark: Unless you turn up the optimization setting to ~30, at which point it makes quite fast code.
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description='Compile a WHY program')parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```The compiler for the new `WHY` language. Made as a joke because someone on the esolangs server insisted that all compiled languages were fast.
gollark: BT being bad, who would ever guess so?
gollark: Amazing, right?

References

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