├── .gitignore ├── LICENSE ├── README.md ├── images ├── ibm-cloud-mindmap.jpeg ├── ibm-developer-animation-final-50.gif ├── ibmcloud-cli.png └── upkar-lucas.jpg └── presentations ├── README.md ├── call-for-code-ibm-deploy.pdf ├── hackrpi-hackathon_LSv3.pdf ├── helloworld-node-red.pdf └── ibmcloud-mindmap.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upkarlidder/ibmhacks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upkarlidder/ibmhacks/HEAD/README.md -------------------------------------------------------------------------------- /images/ibm-cloud-mindmap.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upkarlidder/ibmhacks/HEAD/images/ibm-cloud-mindmap.jpeg -------------------------------------------------------------------------------- /images/ibm-developer-animation-final-50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upkarlidder/ibmhacks/HEAD/images/ibm-developer-animation-final-50.gif -------------------------------------------------------------------------------- /images/ibmcloud-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upkarlidder/ibmhacks/HEAD/images/ibmcloud-cli.png -------------------------------------------------------------------------------- /images/upkar-lucas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upkarlidder/ibmhacks/HEAD/images/upkar-lucas.jpg -------------------------------------------------------------------------------- /presentations/README.md: -------------------------------------------------------------------------------- 1 | ## Presentations 2 | -------------------------------------------------------------------------------- /presentations/call-for-code-ibm-deploy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upkarlidder/ibmhacks/HEAD/presentations/call-for-code-ibm-deploy.pdf -------------------------------------------------------------------------------- /presentations/hackrpi-hackathon_LSv3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upkarlidder/ibmhacks/HEAD/presentations/hackrpi-hackathon_LSv3.pdf -------------------------------------------------------------------------------- /presentations/helloworld-node-red.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upkarlidder/ibmhacks/HEAD/presentations/helloworld-node-red.pdf -------------------------------------------------------------------------------- /presentations/ibmcloud-mindmap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upkarlidder/ibmhacks/HEAD/presentations/ibmcloud-mindmap.pdf --------------------------------------------------------------------------------