Skip to content

Instantly share code, notes, and snippets.

View bouwe77's full-sized avatar

Bouwe K. Westerdijk bouwe77

View GitHub Profile
import "@johnlindquist/kit";
// Name: Join Google Meet
// Description: Joins the Google Meet URL by opening it in the browser and clicking "Join"
// Shortcut: CMD 1
// IMPORTANT: This script uses AppleScript to interact with the Google Meet page,
// so be sure to enable AppleScript in Chrome: View -> Developer -> Allow JavaScript from Apple Events
const meetUrl = await env("MEET_URL", async () => {
import "@johnlindquist/kit";
// Name: Join Google Meet
// Description: Joins the Google Meet URL by opening it in the browser and clicking "Join"
// Shortcut: CMD 1
// IMPORTANT: This script uses AppleScript to interact with the Google Meet page,
// so be sure to enable AppleScript in Chrome: View -> Developer -> Allow JavaScript from Apple Events
const meetUrl = await env("MEET_URL", async () => {
@bouwe77
bouwe77 / Gifs.jsx
Created January 23, 2020 04:05
useGiphy
import React from "react";
import styles from "./Gifs.module.css";
function Gifs({ gifs }) {
return (
<div className={styles["gifs-container"]}>
<div className={styles["row"]}>
{gifs.map(gif => (
<div className={styles["item"]} key={gif}>
<video autoPlay loop src={gif} />