├── .github └── workflows │ ├── scraper.yml │ └── syntax.yml ├── README.md ├── ekonomi └── kurs.json ├── games ├── asahotak.json ├── caklontong.json ├── family100.json ├── siapakahaku.json ├── susunkata.json ├── tebakbendera.json ├── tebakbendera2.json ├── tebakgambar.json ├── tebakkabupaten.json ├── tebakkalimat.json ├── tebakkata.json ├── tebakkimia.json ├── tebaklirik.json ├── tebaktebakan.json └── tekateki.json ├── kata-kata ├── bucin.json ├── dare.json ├── renungan.json └── truth.json ├── meteorologi-klimatologi-geofisika └── gempa │ ├── gempa_dirasakan.json │ └── gempa_terkini.json ├── package.json ├── religi └── asmaulhusna.json ├── scraper ├── gempa.js ├── index.js └── kurs.js └── test.js /.github/workflows/scraper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/.github/workflows/scraper.yml -------------------------------------------------------------------------------- /.github/workflows/syntax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/.github/workflows/syntax.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/README.md -------------------------------------------------------------------------------- /ekonomi/kurs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/ekonomi/kurs.json -------------------------------------------------------------------------------- /games/asahotak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/games/asahotak.json -------------------------------------------------------------------------------- /games/caklontong.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/games/caklontong.json -------------------------------------------------------------------------------- /games/family100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/games/family100.json -------------------------------------------------------------------------------- /games/siapakahaku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/games/siapakahaku.json -------------------------------------------------------------------------------- /games/susunkata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/games/susunkata.json -------------------------------------------------------------------------------- /games/tebakbendera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/games/tebakbendera.json -------------------------------------------------------------------------------- /games/tebakbendera2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/games/tebakbendera2.json -------------------------------------------------------------------------------- /games/tebakgambar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/games/tebakgambar.json -------------------------------------------------------------------------------- /games/tebakkabupaten.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/games/tebakkabupaten.json -------------------------------------------------------------------------------- /games/tebakkalimat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/games/tebakkalimat.json -------------------------------------------------------------------------------- /games/tebakkata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/games/tebakkata.json -------------------------------------------------------------------------------- /games/tebakkimia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/games/tebakkimia.json -------------------------------------------------------------------------------- /games/tebaklirik.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/games/tebaklirik.json -------------------------------------------------------------------------------- /games/tebaktebakan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/games/tebaktebakan.json -------------------------------------------------------------------------------- /games/tekateki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/games/tekateki.json -------------------------------------------------------------------------------- /kata-kata/bucin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/kata-kata/bucin.json -------------------------------------------------------------------------------- /kata-kata/dare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/kata-kata/dare.json -------------------------------------------------------------------------------- /kata-kata/renungan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/kata-kata/renungan.json -------------------------------------------------------------------------------- /kata-kata/truth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/kata-kata/truth.json -------------------------------------------------------------------------------- /meteorologi-klimatologi-geofisika/gempa/gempa_dirasakan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/meteorologi-klimatologi-geofisika/gempa/gempa_dirasakan.json -------------------------------------------------------------------------------- /meteorologi-klimatologi-geofisika/gempa/gempa_terkini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/meteorologi-klimatologi-geofisika/gempa/gempa_terkini.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/package.json -------------------------------------------------------------------------------- /religi/asmaulhusna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/religi/asmaulhusna.json -------------------------------------------------------------------------------- /scraper/gempa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/scraper/gempa.js -------------------------------------------------------------------------------- /scraper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/scraper/index.js -------------------------------------------------------------------------------- /scraper/kurs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/scraper/kurs.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BochilTeam/database/HEAD/test.js --------------------------------------------------------------------------------