- A recent version of Node.js
npm install -g create-react-app
๐
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: Chrome bookmarks with folders | |
// Author: Taran "tearing it up" Bains | |
// GitHub: @tearingitup786 | |
import "@johnlindquist/kit"; | |
// Reading the Chrome bookmarks file from the user's system | |
// Maybe allow for a choice of different browsers? | |
let bookmarks = await readFile( | |
home("Library/Application Support/Google/Chrome/Default/Bookmarks"), |
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: Chrome bookmarks with folders | |
// Author: Taran "tearing it up" Bains | |
// GitHub: @tearingitup786 | |
import "@johnlindquist/kit"; | |
// Reading the Chrome bookmarks file from the user's system | |
// Maybe allow for a choice of different browsers? | |
let bookmarks = await readFile( | |
home("Library/Application Support/Google/Chrome/Default/Bookmarks"), |
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: Chrome bookmarks with folders | |
// Author: Taran "tearing it up" Bains | |
// Importing the necessary module from the Script Kit | |
import "@johnlindquist/kit"; | |
// Reading the Chrome bookmarks file from the user's system | |
let bookmarks = await readFile( | |
home("Library/Application Support/Google/Chrome/Default/Bookmarks"), | |
); |
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
// Menu: Cloudinary upload | |
// Description: Upload an image to cloudinary | |
// Shortcut: | |
// Author: Kent C. Dodds | |
// Twitter: @kentcdodds | |
import path from 'path' | |
import '@johnlindquist/kit' | |
const cloudinaryCloudName = await env('CLOUDINARY_CLOUD_NAME') |
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
// ==UserScript== | |
// @name Epic React | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @include https://epicreact.dev/modules/* | |
// @grant none | |
// ==/UserScript== |
NewerOlder