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
| rem Ubuntuにkeychainを起動時に打ち込んでおくため(VSCode起動時に多窓でターミナルが上がるとkeychainが壊れて面倒なため) | |
| start ubuntu | |
| rem 日報などのシェルスクリプトを蹴る用。callで*.cmdを呼ばないと処理が戻ってこないのでcallが必須 | |
| call C:/env/msys64/run_zsh.cmd '/c/path/to/hoge.sh' | |
| rem エラーメッセージとかの確認用 | |
| pause |
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 | |
| createSummeryFile() { | |
| local destPath=$1 | |
| local title=$2 | |
| cat << EOF > ${destPath}/summary.md | |
| # ${title} | |
| ## やったこと |
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
| export class GraphemeTool { | |
| private segment: Intl.Segmenter; | |
| constructor() { | |
| this.segment = new Intl.Segmenter(undefined, { granularity: 'grapheme' }); | |
| } | |
| private spread(value: string) { | |
| return [...this.segment.segment(value)].map((item) => { | |
| return item.segment; |
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
| { | |
| "profiles": [ | |
| { | |
| "complex_modifications": { | |
| "rules": [ | |
| { | |
| "description": "VS Codeが前面にあるとき、左Control+@をターミナルトグルとして機能させる", | |
| "manipulators": [ | |
| { | |
| "conditions": [ |
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: '', |
NewerOlder