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
path /Users/geonwoo.jeong/Documents/gitrepo/chatgpt-your-files/node_modules/supabase | |
command failed | |
command sh -c node scripts/postinstall.js | |
Downloading https://github.com/supabase/cli/releases/download/v1.102.0/supabase_darwin_arm64.tar.gz | |
file:///Users/geonwoo.jeong/Documents/gitrepo/chatgpt-your-files/node_modules/node-fetch/src/index.js:108 | |
reject(new FetchError(`request to ${request.url} failed, reason: ${error.message}`, 'system', error)); | |
^ | |
FetchError: request to https://github.com/supabase/cli/releases/download/v1.102.0/supabase_darwin_arm64.tar.gz failed, reason: unable to get local issuer certificate |
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
import * as React from "react"; | |
import { Outlet } from "react-router-dom"; | |
import type { RouteObject } from "react-router-dom"; | |
import { AuthGuard } from "@/components/auth/supabase/auth-guard"; | |
import { Layout as DashboardLayout } from "@/components/dashboard/layout/layout"; | |
export const route: RouteObject = { | |
path: "dashboard", | |
element: ( |
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
π Morning 529 commits βββββββββββββββββββββ 39.0% | |
π Daytime 470 commits βββββββββββββββββββββ 34.7% | |
π Evening 142 commits βββββββββββββββββββββ 10.5% | |
π Night 215 commits βββββββββββββββββββββ 15.9% |
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 | |
if [ -f ~/Library/KeyBindings/DefaultkeyBinding.dict ]; then | |
echo "~/Library/KeyBindings/DefaultkeyBinding already" | |
exit 0 | |
fi | |
mkdir -p ~/Library/KeyBindings | |
cat << EOF > ~/Library/KeyBindings/DefaultkeyBinding.dict | |
{ | |
"β©" = ("insertText:", "\`"); | |
"~4" = ("insertText:","β©"); |