This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| license: mit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "Title": "Hobo with a Shotgun", | |
| "Year": "2011", | |
| "Rated": "Not Rated", | |
| "Released": "12 May 2011", | |
| "Runtime": "86 min", | |
| "Genre": "Action, Comedy, Horror, Thriller", | |
| "Director": "Jason Eisener", | |
| "Writer": "John Davies", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"/> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/> | |
| <meta name="description" content="Stream"/> | |
| <title>Stream</title> | |
| <style> | |
| html { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const exceptions = ["www.example.com"]; | |
| if (!exceptions.includes(new URL(window.location).hostname)) { | |
| console.log("Adding slash keybinding"); | |
| document.addEventListener("keydown", function (event) { | |
| const searchInput = | |
| // https://caniuse.com/css-case-insensitive | |
| document.querySelector('input[type="search" i]') ?? | |
| document.querySelector('form[role="search" i] text[type="text"]') ?? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const exceptions = ["www.example.com"]; | |
| if (!exceptions.includes(new URL(window.location).hostname)) { | |
| console.log("Adding slash keybinding"); | |
| document.addEventListener("keydown", function (event) { | |
| const searchInput = | |
| // https://caniuse.com/css-case-insensitive | |
| document.querySelector('input[type="search" i]') ?? | |
| document.querySelector('form[role="search" i] text[type="text"]') ?? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Required parameters: | |
| # @raycast.schemaVersion 1 | |
| # @raycast.title Connect to airpods | |
| # @raycast.mode compact | |
| # Optional parameters: | |
| # @raycast.icon 🤖 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Name: New Astro Blog Post | |
| import "@johnlindquist/kit"; | |
| const title = await arg("What's the title of the post?"); | |
| const description = await arg("What's the description of the post?"); | |
| const slug = title.toLowerCase().split(" ").join("-"); | |
| const blogCollectionPath = await env("ASTRO_BLOG_COLLECTION_PATH"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Name: Markdown Link | |
| // Author: Kevin Kipp | |
| // Twitter: @kevin_kipp | |
| // Github: https://github.com/third774 | |
| import '@johnlindquist/kit'; | |
| const url = await arg('URL'); | |
| const selectedText = await getSelectedText(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Name: Fix Spelling and Grammar | |
| // Author: Kevin Kipp | |
| // Email: kevin.kipp@gmail.com | |
| // Twitter: https://twitter.com/kevin_kipp | |
| // Github: https://github.com/third774 | |
| import '@johnlindquist/kit'; | |
| import OpenAI from 'openai'; | |
| const openai = new OpenAI({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Name: Fix Spelling and Grammar | |
| // Author: Kevin Kipp | |
| // Email: kevin.kipp@gmail.com | |
| // Twitter: https://twitter.com/kevin_kipp | |
| // Github: https://github.com/third774 | |
| import '@johnlindquist/kit'; | |
| import OpenAI from 'openai'; | |
| const openai = new OpenAI({ |