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
| /specify Build a Telegram bot that allows me to save bookmarks into a self-hosted Linkding instance. | |
| When I send the /bookmark command in Telegram with a URL and tags, the bot should store the URL into Linkding including the specified tags. | |
| The bot must validate tags against a predefined tagging system to avoid uncontrolled tag growth. | |
| This tagging system is maintained in the codebase, and any updates require redeployment. | |
| The purpose of this tool is to unify my saved web content from sources like Twitter bookmarks and Safari into Linkding with consistent tagging. |
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
| <!--{{< ruby "振り仮名" "ふりがな" >}}--> | |
| <ruby> | |
| {{ .Get 0 }}<rp>(</rp><rt>{{ .Get 1 }}</rt><rp>)</rp> | |
| </ruby> |
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
| from langflow import CustomComponent | |
| from langchain.schema import Document | |
| class PlainSRTLoader(CustomComponent): | |
| display_name: str = "Plain SRT Loader" | |
| description: str = "Read .srt file as plain text" | |
| def build_config(self): | |
| return { | |
| 'uploaded_file': { |
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
| using UnityEditor; | |
| using System.Linq; | |
| using System; | |
| using System.IO; | |
| using UnityEditor.XR.Management; | |
| using UnityEngine.XR.Management; | |
| using UnityEditor.XR.Management.Metadata; | |
| static class Builder | |
| { |
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
| using System.Collections.Generic; | |
| using Unity.WebRTC; | |
| using UnityEngine; | |
| using UnityEngine.Experimental.Rendering; | |
| using UnityEngine.Rendering; | |
| using Unity.RenderStreaming; | |
| using UnityEngine.XR.ARFoundation; | |
| using UnityEngine.XR.ARSubsystems; | |
| using Unity.Collections; | |
| using System; |