https://github.com/harshcasper/pycon-my-2021
Slides and Code for the PyCon Malaysia 2021 talk
https://github.com/harshcasper/pycon-my-2021
metacall metacall-core pycon pycon-21 pycon-my slides talk
Last synced: about 2 months ago
JSON representation
Slides and Code for the PyCon Malaysia 2021 talk
- Host: GitHub
- URL: https://github.com/harshcasper/pycon-my-2021
- Owner: HarshCasper
- License: mit
- Created: 2021-09-17T10:27:19.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-19T05:57:03.000Z (over 3 years ago)
- Last Synced: 2025-04-14T16:21:33.108Z (about 2 months ago)
- Topics: metacall, metacall-core, pycon, pycon-21, pycon-my, slides, talk
- Language: JavaScript
- Homepage: https://pycon-my.harshcasper.com/
- Size: 7.03 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PyCon MY 2021
This repository hosts the slides and examples for PyCon MY 2021 talk on "Building Polyglot applications using MetaCall Core". The speakes for the conference can be viewed on the [Speakers Page](https://2021.pycon.my/speakers#) and the schedule can be viewed on the [Schedule Page](https://2021.pycon.my/schedule). The recordings would be soon released.
## Setup
To setup the slides on your local machine, follow these steps:
1. Install [hugo](https://gohugo.io/getting-started/installing/)
2. For development:
```sh
hugo server -D
```3. In `config.toml` set `baseURL` to be the baseURL of your hosted website.
4. To build and serve it using Docker, push the following command:
```sh
docker run --rm -it \
-v $(pwd):/src \
-p 1313:1313 \
klakegg/hugo:0.83.1 \
server
```## Examples
The instructions to run the examples are given in the individual `README.md` for each example. To make sure the examples run, install the MetaCall CLI:
```sh
curl -sL https://raw.githubusercontent.com/metacall/install/master/install.sh | sh
```- [Calculation Demo](examples/calculation-demo): Example to showcase cross-language function calls between Python and JavaScript.
- [Google News Scrapper](examples/google-news-scrapper): Polyglot Scrapping API to showcase a Python scrapping script being used in an Express API.
- [Machine Learning-based News scrapper](examples/ml-news-article-scraper-example): Polyglot Node App using a Python script to scrap similar news articles from all over the Web using Machine Learning.## Acknowledgements
The slide format is inspired from [Anirudh Dagar's Quansight Labs Internship talk](https://github.com/AnirudhDagar/qs-intern-talk) and [Thomas J. Fan's Hugo+Reveal Slide template](https://github.com/thomasjpfan/slides-template-hugo).