├── .gitignore ├── .travis.yml ├── .vscode └── settings.json ├── README.md ├── db └── talks.json ├── scripts ├── cli.py ├── collectalk.py ├── helpers.py └── validate.py └── talks ├── Bendaia ├── 9-tricks-for-kickass-javascript-developers-in-2019.md ├── Bringing-back-dial-up.md ├── Embedding-V8-in-the-real-world.md ├── Performance-Empathy.md ├── Web-APIs-in-Node.js-Core.md ├── em-vs-rem-vs-px.md └── react-scripts.md ├── ElAmraoui ├── AI_Debate.md └── Fail to Scale.md ├── bondif └── git-intermediate-techniques.md ├── iduoad ├── 10-tips-to-host-your-web-apps-for-free.md ├── 7-tips-to-pimp-your-git-history.md ├── 700+-web-developers-asked-me-to-give-them-linkedin.md ├── benmakhlouf-tedxui.md ├── bill-gates-on-investment-and.md ├── building-a-cross-platform-native-app-with-beeware.md ├── cap-theorem-analogy.md ├── cap-theorem-examples.md ├── entrepreneur-ne-fait-surtout-pas-ces-erreurs-oussama-ammar.md ├── how-netflix-thinks-of-devops.md ├── how-to-improve-your-productivity-as-a-working-programmer.md ├── kubernetes-storage-lingo-101.md ├── kustomize-deploy-your-app-with-template-free-yaml.md ├── oops!-oop-is-not-what-i-thought.md ├── predicting-the-future-of-the-web-(2020_2025).md ├── surviving-the-framework-hype-cycle.md ├── the-javascript-starter-kit-manifesto.md ├── the-single-biggest-reason-why-startups-succeed.md └── using-containers-to-create-the-world-s-fastest-openstack.md └── nfaihi ├── 10-excellent-ways-to-secure-spring-boot-applications.md ├── 6-months-of-using-graphql.md ├── 7-security-measures-to-protect-your-servers.md ├── apache-airflow-for-beginners.md ├── i-had-to-build-my-own-markdown-editor-because-no-tool-was-fast-enough-for-me.md ├── programming-habits-you-should-adopt.md ├── software-developer-trends-of-2020-and-beyond.md └── three-ways-to-do-good-with-a-side-project.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Backup files 2 | *.bak 3 | 4 | 5 | # Python 6 | __pycache__/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/README.md -------------------------------------------------------------------------------- /db/talks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/db/talks.json -------------------------------------------------------------------------------- /scripts/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/scripts/cli.py -------------------------------------------------------------------------------- /scripts/collectalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/scripts/collectalk.py -------------------------------------------------------------------------------- /scripts/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/scripts/helpers.py -------------------------------------------------------------------------------- /scripts/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/scripts/validate.py -------------------------------------------------------------------------------- /talks/Bendaia/9-tricks-for-kickass-javascript-developers-in-2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/Bendaia/9-tricks-for-kickass-javascript-developers-in-2019.md -------------------------------------------------------------------------------- /talks/Bendaia/Bringing-back-dial-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/Bendaia/Bringing-back-dial-up.md -------------------------------------------------------------------------------- /talks/Bendaia/Embedding-V8-in-the-real-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/Bendaia/Embedding-V8-in-the-real-world.md -------------------------------------------------------------------------------- /talks/Bendaia/Performance-Empathy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/Bendaia/Performance-Empathy.md -------------------------------------------------------------------------------- /talks/Bendaia/Web-APIs-in-Node.js-Core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/Bendaia/Web-APIs-in-Node.js-Core.md -------------------------------------------------------------------------------- /talks/Bendaia/em-vs-rem-vs-px.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/Bendaia/em-vs-rem-vs-px.md -------------------------------------------------------------------------------- /talks/Bendaia/react-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/Bendaia/react-scripts.md -------------------------------------------------------------------------------- /talks/ElAmraoui/AI_Debate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/ElAmraoui/AI_Debate.md -------------------------------------------------------------------------------- /talks/ElAmraoui/Fail to Scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/ElAmraoui/Fail to Scale.md -------------------------------------------------------------------------------- /talks/bondif/git-intermediate-techniques.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/bondif/git-intermediate-techniques.md -------------------------------------------------------------------------------- /talks/iduoad/10-tips-to-host-your-web-apps-for-free.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/10-tips-to-host-your-web-apps-for-free.md -------------------------------------------------------------------------------- /talks/iduoad/7-tips-to-pimp-your-git-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/7-tips-to-pimp-your-git-history.md -------------------------------------------------------------------------------- /talks/iduoad/700+-web-developers-asked-me-to-give-them-linkedin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/700+-web-developers-asked-me-to-give-them-linkedin.md -------------------------------------------------------------------------------- /talks/iduoad/benmakhlouf-tedxui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/benmakhlouf-tedxui.md -------------------------------------------------------------------------------- /talks/iduoad/bill-gates-on-investment-and.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/bill-gates-on-investment-and.md -------------------------------------------------------------------------------- /talks/iduoad/building-a-cross-platform-native-app-with-beeware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/building-a-cross-platform-native-app-with-beeware.md -------------------------------------------------------------------------------- /talks/iduoad/cap-theorem-analogy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/cap-theorem-analogy.md -------------------------------------------------------------------------------- /talks/iduoad/cap-theorem-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/cap-theorem-examples.md -------------------------------------------------------------------------------- /talks/iduoad/entrepreneur-ne-fait-surtout-pas-ces-erreurs-oussama-ammar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/entrepreneur-ne-fait-surtout-pas-ces-erreurs-oussama-ammar.md -------------------------------------------------------------------------------- /talks/iduoad/how-netflix-thinks-of-devops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/how-netflix-thinks-of-devops.md -------------------------------------------------------------------------------- /talks/iduoad/how-to-improve-your-productivity-as-a-working-programmer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/how-to-improve-your-productivity-as-a-working-programmer.md -------------------------------------------------------------------------------- /talks/iduoad/kubernetes-storage-lingo-101.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/kubernetes-storage-lingo-101.md -------------------------------------------------------------------------------- /talks/iduoad/kustomize-deploy-your-app-with-template-free-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/kustomize-deploy-your-app-with-template-free-yaml.md -------------------------------------------------------------------------------- /talks/iduoad/oops!-oop-is-not-what-i-thought.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/oops!-oop-is-not-what-i-thought.md -------------------------------------------------------------------------------- /talks/iduoad/predicting-the-future-of-the-web-(2020_2025).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/predicting-the-future-of-the-web-(2020_2025).md -------------------------------------------------------------------------------- /talks/iduoad/surviving-the-framework-hype-cycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/surviving-the-framework-hype-cycle.md -------------------------------------------------------------------------------- /talks/iduoad/the-javascript-starter-kit-manifesto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/the-javascript-starter-kit-manifesto.md -------------------------------------------------------------------------------- /talks/iduoad/the-single-biggest-reason-why-startups-succeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/the-single-biggest-reason-why-startups-succeed.md -------------------------------------------------------------------------------- /talks/iduoad/using-containers-to-create-the-world-s-fastest-openstack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/iduoad/using-containers-to-create-the-world-s-fastest-openstack.md -------------------------------------------------------------------------------- /talks/nfaihi/10-excellent-ways-to-secure-spring-boot-applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/nfaihi/10-excellent-ways-to-secure-spring-boot-applications.md -------------------------------------------------------------------------------- /talks/nfaihi/6-months-of-using-graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/nfaihi/6-months-of-using-graphql.md -------------------------------------------------------------------------------- /talks/nfaihi/7-security-measures-to-protect-your-servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/nfaihi/7-security-measures-to-protect-your-servers.md -------------------------------------------------------------------------------- /talks/nfaihi/apache-airflow-for-beginners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/nfaihi/apache-airflow-for-beginners.md -------------------------------------------------------------------------------- /talks/nfaihi/i-had-to-build-my-own-markdown-editor-because-no-tool-was-fast-enough-for-me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/nfaihi/i-had-to-build-my-own-markdown-editor-because-no-tool-was-fast-enough-for-me.md -------------------------------------------------------------------------------- /talks/nfaihi/programming-habits-you-should-adopt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/nfaihi/programming-habits-you-should-adopt.md -------------------------------------------------------------------------------- /talks/nfaihi/software-developer-trends-of-2020-and-beyond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/nfaihi/software-developer-trends-of-2020-and-beyond.md -------------------------------------------------------------------------------- /talks/nfaihi/three-ways-to-do-good-with-a-side-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iduoad/talk-collection/HEAD/talks/nfaihi/three-ways-to-do-good-with-a-side-project.md --------------------------------------------------------------------------------