├── .gitignore ├── hola-talk.nimble ├── slides ├── images │ └── logo-agilelab.png ├── index.nim ├── my.html ├── index.html └── my.nim ├── nim.cfg └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | deps -------------------------------------------------------------------------------- /hola-talk.nimble: -------------------------------------------------------------------------------- 1 | requires "nimiSlides" 2 | 3 | -------------------------------------------------------------------------------- /slides/images/logo-agilelab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietroppeter/hola-talk/main/slides/images/logo-agilelab.png -------------------------------------------------------------------------------- /nim.cfg: -------------------------------------------------------------------------------- 1 | ############# begin Atlas config section ########## 2 | --noNimblePath 3 | --path:"deps/nimiSlides/src" 4 | --path:"deps/nimib/src" 5 | --path:"deps/parsetoml/src" 6 | --path:"deps/mustache/src" 7 | --path:"deps/markdown/src" 8 | --path:"deps/jsony/src" 9 | --path:"deps/fusion/src" 10 | ############# end Atlas config section ########## 11 | -------------------------------------------------------------------------------- /slides/index.nim: -------------------------------------------------------------------------------- 1 | import nimib, nimislides 2 | import my 3 | 4 | template titleSlide* = 5 | slide: 6 | nbText """ 7 | ## ¡Hola(cracy)🤙! 8 | 9 | A way to self manage organizations 10 | explained and experienced 🏄 11 | 12 | **Pietro Peterlongo, AgileLab** 13 | 14 | *Surfing Colors, FuerteVentura, Nov 11 2025* 15 | 16 | """ 17 | reference "[github.com/pietroppeter/hola-talk](https://github.com/pietroppeter/hola-talk)" 18 | 19 | template presentation* = 20 | titleSlide 21 | 22 | when isMainModule: 23 | myInit("index.nim") 24 | presentation 25 | nbSave -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # hola talk 2 | 3 | first delivery: at FuerteVentura, during Agile Nomads 4 | 5 | **title**: ¡Hola!(cracy)🤙: a way to self manage organizations explained and experienced 🏄 6 | 7 | **abstract** 8 | A new wave of organizations has embraced self management systems as opposed to a traditional hierarchical managing system. In this talk I will explain one such system called Holacracy that we use in our company (AgileLab). If you think organizations should evolve and there is room for a better way of working, more empowering and which you gives you more ownership and clarity about your work, come and say hi! 9 | 10 | **bio** 11 | Hi, I am Pietro, I am here in Fuerte with colleagues thanks to a Nomads project of our company AgileLab, a consulting company in the Data space. I have a few years of experience in Data Science and lead teams delivering data projects in the Enterprise. I am passionate about tech communities and public speaking and I have been involved especially in the Python and PyData communities. 12 | 13 | 14 | ## setup 15 | 16 | this repo uses atlas. if you have a recent nim installation (grab it with grabnim) you should be able to make it work with `atlas install`. 17 | but it is the first time I am using atlas (and grabnim) so no idea if it actually works. 18 | -------------------------------------------------------------------------------- /slides/my.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 30 | 31 | 32 |