├── .gitignore ├── gbu-developer-advocacy.key ├── gbu-developer-advocacy.pdf ├── profiles ├── arun_gupta.adoc ├── bruno_borges.adoc ├── hadi_hariri.adoc ├── josh_long.adoc ├── mano_marks.adoc ├── mark_heckler.adoc ├── markus_eisele.adoc ├── matthias_steiner.adoc ├── profile.adoc ├── readme.adoc ├── simon_maple.adoc ├── sven_peters.adoc ├── trisha_gee.adoc └── vlad_mihalcea.adoc └── readme.adoc /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | -------------------------------------------------------------------------------- /gbu-developer-advocacy.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/gbu-developer-advocacy.key -------------------------------------------------------------------------------- /gbu-developer-advocacy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/gbu-developer-advocacy.pdf -------------------------------------------------------------------------------- /profiles/arun_gupta.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/profiles/arun_gupta.adoc -------------------------------------------------------------------------------- /profiles/bruno_borges.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/profiles/bruno_borges.adoc -------------------------------------------------------------------------------- /profiles/hadi_hariri.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/profiles/hadi_hariri.adoc -------------------------------------------------------------------------------- /profiles/josh_long.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/profiles/josh_long.adoc -------------------------------------------------------------------------------- /profiles/mano_marks.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/profiles/mano_marks.adoc -------------------------------------------------------------------------------- /profiles/mark_heckler.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/profiles/mark_heckler.adoc -------------------------------------------------------------------------------- /profiles/markus_eisele.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/profiles/markus_eisele.adoc -------------------------------------------------------------------------------- /profiles/matthias_steiner.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/profiles/matthias_steiner.adoc -------------------------------------------------------------------------------- /profiles/profile.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/profiles/profile.adoc -------------------------------------------------------------------------------- /profiles/readme.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/profiles/readme.adoc -------------------------------------------------------------------------------- /profiles/simon_maple.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/profiles/simon_maple.adoc -------------------------------------------------------------------------------- /profiles/sven_peters.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/profiles/sven_peters.adoc -------------------------------------------------------------------------------- /profiles/trisha_gee.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/profiles/trisha_gee.adoc -------------------------------------------------------------------------------- /profiles/vlad_mihalcea.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/profiles/vlad_mihalcea.adoc -------------------------------------------------------------------------------- /readme.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arun-gupta/devrel/HEAD/readme.adoc --------------------------------------------------------------------------------