Skip to content

Instantly share code, notes, and snippets.

View OsaSoft's full-sized avatar

Oscar Hernández OsaSoft

View GitHub Profile

Greach 2018 awesome list

What is this?

A compilation of all the links to slides and repositories used in workshops or shown by the speakers.

Why

It can be difficult to retrieve all that material on twitter after the conference.

Contents

@neelsmith
neelsmith / instanceFromName.groovy
Last active February 11, 2024 15:52
groovy: get an instance of a class from its name as a string
def objectInstance = Class.forName("NAME.AS.STRING").newInstance()