$ Measure-Command { Start-Process python -argumentList "test1.py" -Wait -NoNewWindow }-Wait と -NoNewWindow をつけないとうまくいかない。
| diff --git a/recpt1core.c b/recpt1core.c | |
| index 168a023..36dd1fd 100644 | |
| --- a/recpt1core.c | |
| +++ b/recpt1core.c | |
| @@ -39,11 +39,50 @@ close_tuner(thread_data *tdata) | |
| } | |
| void | |
| +print_stat(struct dtv_stats stat) | |
| +{ |
| /* | |
| href | |
| ┌────────────────────────────────────────┴──────────────────────────────────────────────┐ | |
| origin │ | |
| ┌────────────┴──────────────┐ │ | |
| │ authority │ | |
| │ ┌───────────────┴───────────────────────────┐ │ | |
| │ │ host resource | |
| │ │ ┌──────────┴─────────────────┐ ┌────────────┴───────────┬───────┐ | |
| │ │ hostname │ pathname │ │ |
| const convert = { | |
| binary: { | |
| toArrayBuffer(binary) { | |
| return Uint8Array.from(binary, s => s.charCodeAt(0)).buffer; | |
| }, | |
| toBlob(binary, mimeType) { | |
| return new Blob([binary], { type: mimeType }); | |
| }, | |
| toBase64: binary => btoa(binary) | |
| }, |
| #!/usr/bin/env python3 | |
| import os, sys | |
| import argparse | |
| import struct | |
| from functools import reduce | |
| """ | |
| QNAP QTS firmware encryptor/decryptor. | |
| Based on https://pastebin.com/KHbX85nG |
ヒエログリフとは、紀元前3000年頃から紀元400年頃まで古代エジプトで使用された象形文字の一つ。現代でも使用されるアルファベットの原型。19世紀にフランスのシャンポリオンによって解読された。
ヒエログリフと現代文字の変換表を元に、Unicodeで記述した表です。
Unicode 5.2.0 (U+13000 - U+1342F Egyptian Hieroglyphs)に基づいています。
| 日時: | 2024-02-01 |
|---|---|
| 作: | 時雨堂 |
| 資料 バージョン: | 2024.1 |
| GitHub URL: | https://github.com/shiguredo/momo |
| 製品 URL: | https://momo.shiguredo.jp/ |
| #!/bin/bash -u | |
| ### search.sh | |
| # searches specified words on Twitter. | |
| # | |
| # useage: ./search.sh word | |
| # requirements: jq, curl, perl | |
| # example: ./search.sh hoge | cut -f 1 | sort -u > blocklist.csv | |
| QUERY=$(echo ${1:?"search.sh query"} | jq -R '@uri') |
| Java.perform(function() { | |
| var surface_view = Java.use('android.view.SurfaceView'); | |
| var set_secure = surface_view.setSecure.overload('boolean'); | |
| set_secure.implementation = function(flag){ | |
| console.log("setSecure() flag called with args: " + flag); | |
| set_secure.call(false); | |
| }; |
| <?php | |
| function convGtJDate($src) { | |
| list($year, $month, $day) = explode('/', $src); | |
| if (!@checkdate($month, $day, $year) || $year < 1869 || strlen($year) !== 4 | |
| || strlen($month) !== 2 || strlen($day) !== 2) return false; | |
| $date = str_replace('/', '', $src); | |
| if ($date >= 20190501) { | |
| $gengo = '令和'; | |
| $wayear = $year - 2018; | |
| }elseif ($date >= 19890108) { |