Muru-D

muru-D is an Australian startup accelerator founded in 2013. It is backed by the Australian telecommunications company Telstra. To date, over 44 startups have been through the program, with 42 still in operation.[1]

muru-D
Industrystartup accelerator
Founded2013
Founders
  • Mick Liubinskas
  • Annie Parker
Headquarters,
Number of locations
3 (2017)
Key people
Julie Trell (Head)
ParentTelstra
Websitewww.muru-d.com

muru-D, stylised with a lowercase 'm', is derived from the Sydney Aboriginal Eora word ‘Muru’, meaning ‘path’, and 'D' standing for digital: ‘path to digital.'[2]
muru-D is currently based in 3 locations (Sydney, Singapore and Melbourne), with partner programs in Perth at Spacecubed and Brisbane at River City Labs.[3] They also have space in Telstra's San Francisco office, providing alumni with US customer and investor connections.[4]

History

muru-D was founded by Annie Parker and Mick Liubinkas in October 2013 after Telstra recognised that it needed to be more involved in the tech startup scene.[5] It was officially opened by former Prime Minister of Australia, Malcolm Turnbull.

In 2015, muru-D expanded operations to Singapore due to its "fast-developing start-up ecosystem, pro-business policies and access to local capital."[6]

At the end of 2016, Annie Parker left muru-D and was replaced by ex-Salesforce executive, Julie Trell.[7][8]

In 2017, muru-D altered its funding model to be more founder friendly and attract later-stage startups.[9] It also launched its new IoT themed space in Melbourne, based at Telstra's Gurrowa Labs.[10]

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.
gollark: no!
gollark: Your *routes* shouldn't be config. They're code. They're part of the application.

References

  1. Mason, Max. "Telstra's muru-D accelerator is pushing start-ups to think global". The Sydney Morning Herald. Retrieved 29 June 2017.
  2. "Telstra - Indigenous Australians - Community & Environment". www.telstra.com.au. Retrieved 1 July 2017.
  3. "muru-D - A Global Startup Accelerator | muru-D, a global startup accelerator". muru-d.com. Retrieved 30 June 2017.
  4. Korporaal, Glenda. "US link for start-up accelerator Muru-D". The Australian. Retrieved 30 June 2017.
  5. Cochrane, Nate. "Telstra hits the start-up road". The Sydney Morning Herald. Retrieved 29 June 2017.
  6. Redrup, Yolanda. "Telstra launches muru-D start-up accelerator in Singapore". The Australian Financial Review. Retrieved 29 June 2017.
  7. Redrup, Yolanda. "Telstra's muru-D loses co-founder". The Australian. Retrieved 29 June 2017.
  8. Pash, Chris. "Julie Trell is the new head of Telstra's muru-D". Business Insider Australia. Retrieved 29 June 2017.
  9. Connolly, Byron. "Muru-D alters funding model to attract more mature firms". CIO. Retrieved 29 June 2017.
  10. Redrup, Yolanda. "Telstra launches IoT lab and expands muru-D to Melbourne". The Australian Financial Review. Retrieved 29 June 2017.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.