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
| 👨👩👧👨👩👧👨👩👧👨👩👧 | |
| あ゙゙゙゙゙゙゙゙゙゙゙゙゙゙゙゙゙゙゙゙゙゙゙゙゙゙ | |
| い゚゚゚゚゚゚゚゚゚゚ |
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
| ########################################################### | |
| # | |
| # 自分のマイク入力とスピーカー出力を合成して録音するスクリプト | |
| # オンライン会議の録音などに | |
| # | |
| ############################################################ | |
| Write-Host "録音処理を開始する場合、何かキーを押して下さい..." -NoNewLine | |
| [Console]::ReadKey($true) > $null | |
| $input="Microphone (Sound BlasterX G1)" |
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
| """ | |
| title: Gemini Manifold Pipe | |
| author: justinh-rahb | |
| author_url: https://github.com/justinh-rahb | |
| funding_url: https://github.com/open-webui | |
| version: 0.1.4 | |
| license: MIT | |
| """ | |
| import os |
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 errorObject = (param) => { | |
| if (param === true) { | |
| return { | |
| isError: false, | |
| payload: 'TRUE', | |
| }; | |
| } else { | |
| return { | |
| isError: true, | |
| payload: 'ERR', |
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
| <?php | |
| # ===================================================== | |
| # Confirmed work with Misskey 13.12.2 | |
| # Requires openssl extension and PHP 7.4.0 or later | |
| # Edit php.ini | |
| # ;extension=openssl -> extension=openssl | |
| # ===================================================== | |
| set_time_limit(0); | |
| # ==================== Config 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset='utf-8'> | |
| <meta http-equiv='X-UA-Compatible' content='IE=edge'> | |
| <title>Slack Reminder Creator</title> | |
| <meta name='viewport' content='width=device-width, initial-scale=1'> | |
| <script> | |
| const inputState = { | |
| chName: '', |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| <?php | |
| function get_post_data($post_id) { | |
| $url = esc_url(get_permalink($post_id)); | |
| $title = esc_attr(get_the_title($post_id)); | |
| $img = ''; | |
| if (has_post_thumbnail($post_id)) { | |
| $img = get_the_post_thumbnail_url($post_id, 'thumb-520'); | |
| } else { |
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 | |
| getProgress() { | |
| local issueNo=$1 | |
| local issue=$(curl -sS \ | |
| -H "Authorization: token $GH_TOKEN" \ | |
| -H "Accept: 'application/vnd.github.v3+json'" \ | |
| https://api.github.com/repos/$TARGET_REPO/issues/$issueNo \ | |
| | perl -lpe 's/\n//') |
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
| /** | |
| * ## 使い方 | |
| * | |
| * 1. あすけん PC サイトにログイン | |
| * 2. データを取得したい範囲で beginYear, endYear を設定 | |
| * 3. ブラウザのコンソールにこのスクリプトを流す | |
| * 4. TSV がコンソールに出力される | |
| */ | |
| /** データ取得開始年 */ |
NewerOlder