See QT Documentation for installing PySide2.
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 unit:1.34.2-node22 | |
| COPY package.json package-lock.json /app/ | |
| WORKDIR /app | |
| RUN npm install | |
| RUN npm install unit-http | |
| COPY main.js /app/ | |
| COPY conf.json /docker-entrypoint.d/config.json |
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
| module github.com/holi0317/zero-pty | |
| go 1.24.1 | |
| require github.com/aymanbagabas/go-pty v0.2.2 | |
| require ( | |
| github.com/creack/pty v1.1.21 // indirect | |
| github.com/u-root/u-root v0.11.0 // indirect | |
| golang.org/x/crypto v0.17.0 // indirect |
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 | |
| from datetime import timedelta | |
| from typing import List | |
| from temporalio import activity, workflow | |
| from temporalio.client import Client | |
| from temporalio.worker import Worker | |
| @activity.defn |
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
| local on_windows = vim.loop.os_uname().version:match("Windows") | |
| local function join_paths(...) | |
| local path_sep = on_windows and "\\" or "/" | |
| local result = table.concat({ ... }, path_sep) | |
| return result | |
| end | |
| local handlers = require("vim.lsp.handlers") | |
| local function log(err, workspace_edit, ctx) |
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
| [Trace - 11:18:53 PM] Sending notification 'textDocument/didChange'. | |
| Params: { | |
| "textDocument": { | |
| "uri": "file:///Users/hollis.wu/Desktop/vite-project/src/App.vue", | |
| "version": 55 | |
| }, | |
| "contentChanges": [ | |
| { | |
| "range": { | |
| "start": { |
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
| local on_windows = vim.loop.os_uname().version:match("Windows") | |
| local function join_paths(...) | |
| local path_sep = on_windows and "\\" or "/" | |
| local result = table.concat({ ... }, path_sep) | |
| return result | |
| end | |
| vim.cmd([[set runtimepath=$VIMRUNTIME]]) |
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
| <template> | |
| <!-- doc: https://vuejs.org/v2/guide/components.html#Dynamic-Components --> | |
| <component :is="comp"></component> | |
| </template> | |
| <script> | |
| // Just a fallback component | |
| import EmptyComp from "./EmptyComp"; | |
| export default { |
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
| -- Standard awesome library | |
| local gears = require("gears") | |
| local awful = require("awful") | |
| require("awful.autofocus") | |
| -- Widget and layout library | |
| local wibox = require("wibox") | |
| -- Theme handling library | |
| local beautiful = require("beautiful") | |
| -- Notification library | |
| local naughty = require("naughty") |
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] | |
| name = "hello-world" | |
| version = "0.1.0" | |
| authors = ["holi0317 <[email protected]>"] | |
| [dependencies] | |
| rand = "0.4.2" |
NewerOlder