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).
Private | |
Industry | Media & Entertainment |
Founded | 2010 |
Founder | Dinesh Vijan |
Headquarters | |
Key people | Dinesh Prem Vijan Kiran Prem Vijan |
Products | Film production |
Owner | Dinesh Vijan |
Films produced
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
- "Exclusive: Deepika Padukone's first look from Finding Fanny". The Times of India.
- "Sriram Raghavan's next with Varun titled Badlapur". Bollywood Hungama.
- "Hindi Medium box office collection: Irrfan Khan's film has crossed the Rs 200 crore mark at the worldwide market". Bollywood Life.
- "People finding 'raabta' in us: Kriti Sanon on bond with Sushant Singh Rajput". Hindustan Times.
- "Rajkummar Rao, Shraddha Kapoor begin shooting for horror-comedy titled Stree". Hindustan Times.
- "'Luka Chuppi' trailer: Kriti Sanon and Kartik Aaryan's quirky love story will charm you". The Times of India.
- "Kriti Sanon: 'Arjun Patiala' is a spoofy kind of comedy". The Times of India.
- "Made in China: Rajkummar Rao introduces his character from upcoming film with Mouni Roy". Firstpost.
- "Ayushmann Khurrana, Yami Gautam and Bhumi Pednekar start shooting for Bala". Hindustan Times.
- "Irrfan Khan back to work, begins shooting for Hindi Medium sequel, Angrezi Medium in Udaipur". Times Now.
- "Janhvi Kapoor kicks off Roohi Afza with Rajkummar Rao". India Today.
- "Kriti Sanon on surrogacy film Mimi: Glad to be a part of my first women-centric project". India Today.
- "Dinesh Vijan confirms about his next love story titled 'Shiddat- Journey Beyond Love', says as he got married recently, he can feel it". The Times of India.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.