2024/04/20 更新
この記事は、自作OS Advent Calendar 2017の 12/6 の記事として書かれました。
主に、ライブラリや仕様書のダウンロード・サイトやリポジトリなどの URL を集めてみました。この他の URL は、以下でブックマークを公開していますので、興味がある方は参照してみてください。
2024/04/20 更新
この記事は、自作OS Advent Calendar 2017の 12/6 の記事として書かれました。
主に、ライブラリや仕様書のダウンロード・サイトやリポジトリなどの URL を集めてみました。この他の URL は、以下でブックマークを公開していますので、興味がある方は参照してみてください。
<?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 |
const { data: accounts } = useDrizzleLive((db) => | |
db.query.accounts.findMany({ | |
limit: 100, | |
with: { | |
institution: true, | |
}, | |
}), | |
) |
日時: | 2024-11-10 |
---|---|
作: | 時雨堂 |
バージョン: | 2024.5 |
URL: | https://shiguredo.jp/ |
時雨堂クラウドサービスを支える技術
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 |
defaults write com.apple.dt.Xcode IDEModelAccessHasUserConsentForOnDeviceInteractions -bool FALSE |
""" | |
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 |