netstat -ano | findstr :
taskkill /PID /F
| // ==UserScript== | |
| // @name ClickUp - Copy Issue Link & Description | |
| // @namespace https://openuserjs.org/users/lieszkol | |
| // @description Add a button to your ClickUp Tasks pages to easily copy the task URL & Title to the browser clipboard | |
| // @copyright 2020, lieszkol (https://openuserjs.org/users/lieszkol) | |
| // @license MIT | |
| // @version 1.0.0 | |
| // @match https://app.clickup.com/* | |
| // @grant GM_setClipboard | |
| // ==/UserScript== |
| import "@johnlindquist/kit" | |
| // Menu: Chrome History | |
| // Description: Open a url from your history | |
| // Author: John Lindquist | |
| // Twitter: @johnlindquist | |
| let historyFilePath = home( | |
| "Library/Application Support/Google/Chrome/Default/History" | |
| ) |
| // Name: Open New Google Hangout | |
| import "@johnlindquist/kit" | |
| browse(`https://meet.google.com/getalink?hs=202&authuser=0&illm=1684140641797&hl=en`) |
| // Name: Open New Google Hangout | |
| import "@johnlindquist/kit" | |
| let text = await arg("search...") | |
| browse(`https://meet.google.com/getalink?hs=202&authuser=0&illm=1684140641797&hl=en`) |
| import { auth, firestore } from './firebase-config'; | |
| import { doc, collection, getDoc, setDoc, onSnapshot } from '@firebase/firestore'; | |
| import { useCallback, useEffect, useState } from 'react'; | |
| import { useAuthState } from 'react-firebase-hooks/auth'; | |
| // Custom hook to read auth record and user profile doc | |
| export function useUserData() { | |
| const [user] = useAuthState(auth); | |
| const [username, setUsername] = useState(null); |
| {"lastUpload":"2021-05-16T09:50:56.178Z","extensionVersion":"v3.4.3"} |
| git reset $(git merge-base master $(git rev-parse --abbrev-ref HEAD)) | |
| git add -A | |
| git commit -m "Commit message" | |
| git push -f |