https://github.com/azooKey/AzooKeyKanaKanjiConverter/blob/c0d5e46b470a3177de44c9f44e66e19748afe62a/Docs/about_windows_support.md ここら辺参考に ビルドが終わったら、server-swift以下に
パッチの当たったllama.libでないといけないらしい 問題なくビルドできた
| { | |
| "last_node_id": 67, | |
| "last_link_id": 178, | |
| "nodes": [ | |
| { | |
| "id": 16, | |
| "type": "PrimitiveNode", | |
| "pos": [ | |
| -297, | |
| 90 |
| import { $ } from "bun" | |
| async function installVscodeExtensions() { | |
| const EXTENSIONS_FILE = ".vscode/extensions.json" | |
| try { | |
| const { recommendations } = await $`cat ${EXTENSIONS_FILE}`.json() | |
| if (!recommendations || recommendations.length === 0) { | |
| console.error("Can not find your recommendations extensions list.") |
| const assistant = await window.ai.assistant.create({ topK: 5, temperature: 0.8 }); | |
| try { | |
| const response = await assistant.prompt("What is your name"); | |
| console.log(response); | |
| } catch (error) { | |
| console.error("Error during prompt:", error); | |
| } |
| import ky from 'ky'; | |
| interface QiitaArticle { | |
| created_at: string; | |
| updated_at: string; | |
| } | |
| const accessToken = process.env.QIITA_ACCESS_TOKEN; | |
| if (!accessToken) { |
| <?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Fuwari</title><description>Demo Site</description><link>https://fuwari.vercel.app/</link><language>en</language><item><title>Markdown Extended Features</title><link>https://fuwari.vercel.app/posts/markdown-extended/</link><guid isPermaLink="true">https://fuwari.vercel.app/posts/markdown-extended/</guid><description>Read more about Markdown features in Fuwari</description><pubDate>Wed, 01 May 2024 00:00:00 GMT</pubDate><content:encoded><h2>GitHub Repository Cards</h2> | |
| <p>You can add dynamic cards that link to GitHub repositories, on page load, the repository information is pulled from the GitHub API.</p> | |
| <p>::github{repo="Fabrizz/MMM-OnSpotify"}</p> | |
| <p>Create a GitHub repository card with the code <code>::github{repo="&lt;owner&gt;/&lt;repo&gt;"}</code>.</p> | |
| <pre><code>::githu |
https://github.com/azooKey/AzooKeyKanaKanjiConverter/blob/c0d5e46b470a3177de44c9f44e66e19748afe62a/Docs/about_windows_support.md ここら辺参考に ビルドが終わったら、server-swift以下に
パッチの当たったllama.libでないといけないらしい 問題なくビルドできた
| import { visit } from "unist-util-visit"; | |
| import type { Root, Text, HTML, Link, PhrasingContent } from "mdast"; | |
| const extractYouTubeVideoID = (url: string): string | undefined => { | |
| try { | |
| const { hostname, pathname, searchParams } = new URL(url); | |
| if (/(^|\.)youtube\.com$/.test(hostname)) { | |
| if (pathname === "/watch") { | |
| return searchParams.get("v") ?? undefined; |
| <?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Fuwari</title><description>Demo Site</description><link>https://fuwari.vercel.app/</link><language>en</language><item><title>Markdown Extended Features</title><link>https://fuwari.vercel.app/posts/markdown-extended/</link><guid isPermaLink="true">https://fuwari.vercel.app/posts/markdown-extended/</guid><description>Read more about Markdown features in Fuwari</description><pubDate>Wed, 01 May 2024 00:00:00 GMT</pubDate><content:encoded><h2>GitHub Repository Cards</h2> | |
| <p>You can add dynamic cards that link to GitHub repositories, on page load, the repository information is pulled from the GitHub API.</p> | |
| <p>::github{repo="Fabrizz/MMM-OnSpotify"}</p> | |
| <p>Create a GitHub repository card with the code <code>::github{repo="&lt;owner&gt;/&lt;repo&gt;"}</code>.</p> | |
| <pre><code>::githu |
| ! LINE | |
| ||im.c.yimg.jp^ | |
| ||a.line.me^ | |
| ||obs.line-scdn.net^ | |
| ||gw.line.naver.jp^ | |
| ||ad.line-scdn.net^ | |
| ||scdn.line-apps.com^ | |
| ||linevoom.line.me^ | |
| ||voom-assets.line-scdn.net^ | |
| ||voom-obs.line-scdn.net^ |
| #!/usr/bin/env node | |
| // Local issue management script. Invoke via `vp run issues <subcommand>`. | |
| // Conventions live in .claude/rules/issues.md. | |
| import { readFileSync, writeFileSync, readdirSync } from "node:fs"; | |
| import { dirname, join } from "node:path"; | |
| import { fileURLToPath } from "node:url"; | |
| const ISSUES_DIR = dirname(fileURLToPath(import.meta.url)); |