Skip to content

Instantly share code, notes, and snippets.

@tenpoku1000
tenpoku1000 / AC_2017-12-06.md
Last active December 11, 2024 14:53
自作 OS の GUI 開発のためのメモ

自作 OS の GUI 開発のためのメモ

2024/04/20 更新

この記事は、自作OS Advent Calendar 2017の 12/6 の記事として書かれました。

主に、ライブラリや仕様書のダウンロード・サイトやリポジトリなどの URL を集めてみました。この他の URL は、以下でブックマークを公開していますので、興味がある方は参照してみてください。

@wpmark
wpmark / hd-user-categories.php
Created June 11, 2021 11:05
A WordPress plugin that adds categories to users. It allows you to assign categories to users which you could then use elsewhere in your site.
<?php
/*
Plugin Name: User Categories
Plugin URI: https://highrise.digital/
Description: Adds categories to users. It allows you to assign categories to users which you could then use elsewhere in your site.
Version: 1.0
License: GPL-2.0+
Author: Highrise Digital Ltd
Author URI: https://highrise.digital/
Text domain: hd-user-categories
@J56tw
J56tw / 教學用電子書免登入破解教學.md
Last active December 11, 2024 14:53
教學用電子書免登入破解教學 | 本指令碼用於繞過台灣電子書與教學工具的前端身分驗證,達成不需要教師帳號即可使用。支援 翰林、南一、康軒、何嘉仁 四大出版社 | 請勿將本指令碼作為抄答案、侵權等惡意用途,使用本指令碼者,請自行承擔所有後果與風險

教學用電子書免登入破解教學

Caution

使用前請務必閱讀《免責聲明》,使用本指令碼者,即代表您已同意《免責聲明》。

免責聲明

請勿將本指令碼作為抄答案、侵權等惡意用途,使用本指令碼,請「自行承擔」所有後果與風險。

本篇教學若有侵權請於下方留言板告知並立即刪除

簡介

@Makisuo
Makisuo / usage.tsx
Last active December 11, 2024 14:50
Pglite x Drizzle Live Query
const { data: accounts } = useDrizzleLive((db) =>
db.query.accounts.findMany({
limit: 100,
with: {
institution: true,
},
}),
)
@mjkstra
mjkstra / arch_linux_installation_guide.md
Last active December 11, 2024 14:48
A modern, updated installation guide for Arch Linux with BTRFS on an UEFI system
@voluntas
voluntas / shiguredo_tech.rst
Last active December 11, 2024 14:47
時雨堂を支える技術

時雨堂を支える技術

日時:2024-11-10
作:時雨堂
バージョン:2024.5
URL:https://shiguredo.jp/

時雨堂クラウドサービスを支える技術

@indented-automation
indented-automation / Get-InstalledSoftware.ps1
Last active December 11, 2024 14:45
Get-InstalledSoftware
function Get-InstalledSoftware {
<#
.SYNOPSIS
Get all installed from the Uninstall keys in the registry.
.DESCRIPTION
Read a list of installed software from each Uninstall key.
This function provides an alternative to using Win32_Product.
.EXAMPLE
Get-InstalledSoftware
@T1T4N
T1T4N / gist:f66a2ebbeb17b73d6643a178ede14639
Created June 18, 2024 14:54
Disable Xcode 16's Predictive Code Completion LLM Model
defaults write com.apple.dt.Xcode IDEModelAccessHasUserConsentForOnDeviceInteractions -bool FALSE
@dmfigol
dmfigol / asyncio_loop_in_thread.py
Last active December 11, 2024 14:44
Python asyncio event loop in a separate thread
"""
This gist shows how to run asyncio loop in a separate thread.
It could be useful if you want to mix sync and async code together.
Python 3.7+
"""
import asyncio
from datetime import datetime
from threading import Thread
from typing import Tuple, List, Iterable