3
4export let getLocationEntities = async (text) => {
5 const URL = `https://language.googleapis.com/v1beta2/documents:analyzeEntities?key=${process.env.googleAPIKey}`;
6 const bodyText = {
7 document: {
1export function myApi(name) {
2 return "hi " + name;
3}
1export function myApi(name) {
2 return "hi " + name;
3}
1export function myApi(name) {
2 return "hi " + name;
3}
3export const githubEvents = (username) =>
4 fetchJSON(
5 `https://api.github.com/users/${username}/events`
6 );
1export function myApi(name) {
2 return "hi " + name;
3}
1import { fetch } from "https://esm.town/v/std/fetch";
2import { set } from "https://esm.town/v/std/set?v=11";
3import { postHogAPICapture } from "https://esm.town/v/ianvph/postHogAPICapture";
4import { email } from "https://esm.town/v/ianvph/email";
5import { phProjectAPIKey } from "https://esm.town/v/ianvph/phProjectAPIKey";
6import { newestReleaseId } from "https://esm.town/v/ianvph/newestReleaseId";
7import { parseXML } from "https://esm.town/v/stevekrouse/parseXML?v=1";
25 };
26 const captureData = {
27 key: phProjectAPIKey,
28 event: "new release",
29 properties: properties,
30 distinct_id: email,
31 };
32 postHogAPICapture(captureData);
33 await set("newestReleaseId", newestEntry.id);
34 return "new release captured";
3export let dict = async (word: string) => {
4 const req = await fetch(
5 `https://api.dictionaryapi.dev/api/v2/entries/en/${word}`
6 );
7 const res = await req.json();
1export function myApi(name) {
2 return "hi " + name;
3}
3// Predict the nationality of a name
4export let nameNationality = fetchJSON(
5 "https://api.nationalize.io/?name=axel",
6);