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; | |
| using System.Collections.Generic; | |
| using System.ComponentModel; | |
| using System.Data; | |
| using System.Drawing; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Net; | |
| using System.Text; | |
| using System.Threading.Tasks; |
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 UnityEngine; | |
| using UnityEditor; | |
| using System.Collections.Generic; | |
| using VRC.SDK3.Components; | |
| namespace VRChatTools | |
| { | |
| [System.Serializable] | |
| public class AvatarData | |
| { |
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
| // VRChat Favorite Worlds ID Extractor | |
| // Chrome DevTools Snippetで実行してください | |
| (function() { | |
| console.log('VRChat Favorite Worlds ID Extractor - 開始'); | |
| // 詳細なDOM解析を行う関数 | |
| function deepScanForWorldIds() { |
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 UnityEngine; | |
| using UnityEditor; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| public class PrefabFavoriteManager : EditorWindow | |
| { | |
| private List<GameObject> favoritePrefabs = new List<GameObject>(); | |
| private Vector2 scrollPosition; |
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
| /* | |
| * JXR to JPG Converter for Windows11. | |
| * | |
| * Author: Carotene | |
| * | |
| * License: MIT | |
| * | |
| * Requires: | |
| * Windows11 | |
| * Visual Studio 2022 |
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 myutils | |
| myutils.put_gallery_node('something') |
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 ClockKit | |
| class ComplicationController: NSObject, CLKComplicationDataSource { | |
| // MARK: - Complication Configuration | |
| func getComplicationDescriptors(handler: @escaping ([CLKComplicationDescriptor]) -> Void) { | |
| let descriptors = [ | |
| CLKComplicationDescriptor(identifier: "complication", displayName: "WatchBlock", supportedFamilies: CLKComplicationFamily.allCases) |
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 debian:bookworm | |
| ENV USER root | |
| RUN rm /bin/sh \ | |
| && ln -s /bin/bash /bin/sh | |
| RUN mkdir /build \ | |
| && cd \ | |
| && apt update \ | |
| && apt install -y curl build-essential pkg-config \ | |
| && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \ | |
| && source $HOME/.cargo/env \ |
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 debian:bookworm | |
| ENV USER root | |
| RUN rm /bin/sh \ | |
| && ln -s /bin/bash /bin/sh | |
| RUN mkdir /build \ | |
| && cd \ | |
| && apt update \ | |
| && apt install -y curl build-essential \ | |
| && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \ | |
| && source $HOME/.cargo/env \ |
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
| """ | |
| Battery Monitor | |
| Author: Carotene | |
| License: LGPLv3 | |
| Requirements: | |
| PySide6 | |
| pyqtgraph (optional) |
NewerOlder