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 { createServer } from 'net' | |
import { Hono } from 'hono' | |
// import { Hono } from './dist' | |
const PORT = 3000 | |
/** | |
* TODO: Remove globalThis.Response | |
* The Response object is normally supported by the runtime. | |
* This is a workaround for the issue where `new Response` is not |
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 os | |
from gql import gql, Client | |
from gql.transport.requests import RequestsHTTPTransport | |
token = os.getenv("GITHUB_TOKEN") | |
transport = RequestsHTTPTransport( | |
url="https://api.github.com/graphql", | |
use_json=True, | |
headers={"Authorization": f"bearer {token}"}, |
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 path from "node:path"; | |
import fs from "node:fs"; | |
import { spawn } from "node:child_process"; | |
/** | |
* $ node getCompletionsCycling.mjs ./sample.ts | |
*/ | |
const server = spawn("node", ["./copilot.vim/dist/agent.js"]); // https://github.com/github/copilot.vim |
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 sys | |
import openai | |
import json | |
def run_conversation(input): | |
content = f""" | |
ダジャレの面白さをAからEに評価して、評価の理由を論理的にコメントします。 | |
ダジャレ:{input} |
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
package com.example.openaikotlintest | |
import com.aallam.openai.api.BetaOpenAI | |
import com.aallam.openai.api.chat.ChatCompletionRequest | |
import com.aallam.openai.api.chat.ChatMessage | |
import com.aallam.openai.api.chat.ChatRole | |
import com.aallam.openai.api.http.Timeout | |
import com.aallam.openai.api.model.ModelId | |
import com.aallam.openai.client.OpenAI | |
import com.aallam.openai.client.OpenAIConfig |
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 { connect } from 'cloudflare:sockets'; | |
export default { | |
async fetch(req, env) { | |
const socket = connect({ | |
hostname: 'neverssl.com', | |
port: 80 | |
}); | |
const writer = socket.writable.getWriter() |
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 asyncio | |
import uuid | |
import semantic_kernel as sk | |
import semantic_kernel.ai.open_ai as sk_oai | |
KV = {} # DBのかわり | |
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
// Step 1 | |
let nodes = Array.from(document.querySelectorAll('span span:not(:empty)')).filter(d => d.textContent != 'Remove'); | |
for (const node of nodes) { | |
node.dispatchEvent( new MouseEvent('mouseover', { | |
bubbles: true, | |
cancelable: true, | |
view: window | |
})); | |
} |
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
// api/post.ts | |
export const config = { | |
runtime: 'experimental-edge', | |
} | |
export default async (req: Request) => { | |
if (req.method !== 'POST') { | |
return new Response('Method not allowed', { status: 405 }); | |
} |
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
// pages/posts/[id].js | |
export default function Page(props) { | |
const router = useRouter() | |
const [post, setPost] = useState(props.post) | |
if (!post) { | |
return <Locading /> | |
} | |
useEffect(async () => { | |
if (!post) { | |
const resp = fetch(`https://example.com/api/post/${router.params.id}`) |