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
| const CALLENDAR_ID = '<calendar_id>' | |
| const SHEET_ID = '<sheet_id>' | |
| function main() { | |
| // 現在の年と月を取得 | |
| const [year, month] = getCurrentYearMonth(); | |
| // 月の開始時刻と終了時刻を取得 | |
| const [startTime, endTime] = getCurrentMonthTimes(year, month); |
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
| diff --git a/libxslt/xsltutils.h b/libxslt/xsltutils.h | |
| index 7a12f7b3..65ef78e0 100644 | |
| --- a/libxslt/xsltutils.h | |
| +++ b/libxslt/xsltutils.h | |
| @@ -247,6 +247,19 @@ XSLTPUBFUN xmlXPathCompExprPtr XSLTCALL | |
| const xmlChar *str, | |
| int flags); | |
| +#ifdef IN_LIBXSLT | |
| +#define XSLT_SOURCE_NODE_MASK 15 |
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
| #compdef vm | |
| # Copyright (c) 2025, Koichiro Iwao (metalefty) <[email protected]> | |
| # SPDX-License-Identifier: BSD-2-Clause | |
| # | |
| # vim: ts=4 sw=4 expandtab | |
| _vm() | |
| { |
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
| --- /etc/mock/almalinux-9-x86_64.cfg 2024-12-06 03:32:09.116184024 +0000 | |
| +++ /etc/mock/almalinux-9.4-x86_64.cfg 2024-12-06 03:32:03.033261792 +0000 | |
| @@ -1,4 +1,4 @@ | |
| -include('templates/almalinux-9.tpl') | |
| +include('templates/almalinux-9.4.tpl') | |
| config_opts['root'] = 'almalinux-9-x86_64' | |
| config_opts['description'] = 'AlmaLinux 9' |
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
| include('templates/almalinux-10-kitten.tpl') | |
| config_opts['root'] = 'almalinux-10-kitten-aarch64' | |
| config_opts['description'] = 'AlmaLinux 9' | |
| config_opts['target_arch'] = 'aarch64' | |
| config_opts['legal_host_arches'] = ('aarch64',) |
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
| build started at Tue Aug 6 15:35:47 JST 2024 | |
| port directory: /usr/ports/x11-drivers/xorgxrdp | |
| package name: xorgxrdp-0.10.2 | |
| building for: FreeBSD 14amd64-default 14.0-RELEASE-p6 FreeBSD 14.0-RELEASE-p6 amd64 | |
| maintained by: [email protected] | |
| port version: 0.10.2 | |
| port revision: 0 | |
| Makefile datestamp: -rw-r--r-- 1 root wheel 1252 Aug 6 03:53 /usr/ports/x11-drivers/xorgxrdp/Makefile | |
| Ports top last git commit: aa1abe685f | |
| Ports top unclean checkout: no |
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
| #!/usr/bin/env python3 | |
| # -*-:python; coding:utf-8; -*- | |
| # author: Louis Abel <[email protected]> | |
| # modified version of repo-rss from yum utils | |
| # changelog | |
| # -> 20230912: do not xmlescape entire description variable | |
| import sys | |
| import os | |
| import re |
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
| /* | |
| * Compile with | |
| * gcc -Wall -o paint paint.c | |
| * | |
| * Run with | |
| * ./paint $(tput lines) $(tput cols) | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> |
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 -rresolv -ane 'puts "#{(Resolv.getname($F[0]) rescue $F[0])} #{$F[1..-1].join(" ")}"' |
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
| #!/bin/bash -xe | |
| MOUNTPOINT=$(mktemp -d) | |
| CHECKSUM=$(mktemp) | |
| LODEV=$(losetup -f) | |
| IMAGE_FILE=AlmaLinux-9-RaspberryPi-GNOME-latest.aarch64.raw.xz | |
| IMAGE_URL=$(curl -s https://mirrors.almalinux.org/mirrorlist/9/raspberrypi/ | \ | |
| sort -R | head -n1 | grep -o "^.*almalinux/" )/9/raspberrypi/images/ |
NewerOlder