あー、加賀ちゃん、またあたしのプリンたべてるー!! こらあー!
え、、、お仕事で疲れてて、間違えちゃったの? そっか……疲れてるならしょうがないよね
よーし、加賀ちゃんが元気出るように、おねーちゃんが魔法かけてあげる!
加賀ちゃん、マイペースにがんばって、ゆっくりはたらいて…… あたしのプリン、返してね!
| // ==UserScript== | |
| // @name Remove Twitter Follower Count | |
| // @namespace https://gist.github.com/aiya000/9c5a16c3a96f0b14576923128fe261b4 | |
| // @version 2025-04-09 | |
| // @description Remove Twitter(X)'s follower count at profile. This solves the problem of the 'Control Panel for Twitter' extension not being able to hide the number of followers of a Twitter account. | |
| // @author aiya000 | |
| // @match https://x.com/* | |
| // @match https://twitter.com/* | |
| // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
| // @grant none |
| import { toRaw } from 'vue' | |
| import { z } from 'zod' | |
| /** | |
| * ```typescript | |
| * import { ref } from 'vue' | |
| * const x = ref({ a: { b: 42 } }) | |
| * // const y = structureClone(toRaw(x.value)) // 深いProxy(x.value.a.b)を除去できずに例外が出る | |
| * const y = structureClone(toRawDeep(x.value)) // OK | |
| * ``` |
| #!/bin/bash | |
| # Shows GitHub issues in interactive filter and opens selected issue with gh issue view. | |
| # | |
| # ```shell-session | |
| # $ gh-issue-view-select | |
| # # Shows interactive filter with issues | |
| # # Opens selected issue with gh issue view | |
| # ``` |
| #!/bin/bash | |
| # This respects the following original script: | |
| # - Original: https://gist.github.com/nemasu/9d89d2998822980a07284bf442342482 | |
| # | |
| # I'm also developing the newer version at here: | |
| # - Support: https://github.com/aiya000/bash-toys | |
| if [[ $# -eq 0 ]] ; then |
| #!/usr/bin/env zsh | |
| # https://gist.github.com/chigirits/55d6eed4396ed5da64878af2b43111ed | |
| dist=./vrcss-fov-dist | |
| if [[ ! -d $dist ]] ; then | |
| mkdir $dist | |
| fi |
あー、加賀ちゃん、またあたしのプリンたべてるー!! こらあー!
え、、、お仕事で疲れてて、間違えちゃったの? そっか……疲れてるならしょうがないよね
よーし、加賀ちゃんが元気出るように、おねーちゃんが魔法かけてあげる!
加賀ちゃん、マイペースにがんばって、ゆっくりはたらいて…… あたしのプリン、返してね!
| #!/bin/bash | |
| i_have xsel && alias pbcopy='xsel --clipboard --input' |
| The MIT License (MIT) | |
| Copyright (c) 2021 aiya000 | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
| /** | |
| * Exposes type functions. | |
| */ | |
| /** | |
| * [Reference](https://stackoverflow.com/questions/42999983/typescript-removing-readonly-modifier) | |
| */ | |
| export type DeepMutable<T> = { | |
| -readonly [P in keyof T]: DeepMutable<T[P]>; | |
| }; |
| [merge] | |
| tool = unityyamlmerge | |
| [mergetool "unityyamlmerge"] | |
| trustExitCode = false | |
| cmd = "C:\\\\Program\\ Files\\\\Unity\\\\Hub\\\\Editor\\\\2019.4.30f1\\\\Editor\\\\Data\\\\Tools\\\\UnityYAMLMerge.exe" merge -p "$BASE" "$REMOTE" "$LOCAL" "$MERGED" |