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 | |
| #### require | |
| # curl | |
| # jq | |
| # seq | |
| #### config | |
| # 最後に/を含めない | |
| MASTODON_BASE_URL=https://mstdn.plusminus.io |
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
| .video-player__volume { | |
| display: inline-flex !important; | |
| } | |
| a[href*="/web/accounts"]::before { | |
| content: attr(title); | |
| font-weight: bold; | |
| color: white; | |
| } |
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
| function pad(n) { | |
| return ("00" + n).slice(-2); | |
| } | |
| use lxbot; | |
| db.brain.find({}).toArray().forEach(doc => { | |
| let key = doc.key; | |
| let value = doc.value; | |
| // 社会 |
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
| a[href*="/following"]::after { | |
| content: "監視対象"; | |
| color: #9baec8; | |
| } | |
| a[href*="/follower"]::after { | |
| content: "変態"; | |
| color: #9baec8; | |
| } |
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
| # Maintainer: Yang Niao <ksmt4699 at gmail dot com> | |
| # Contributor: MASAKI Haruka <yek at reasonset dot net> | |
| # Contributor: UTUMI Hirosi <utuhiro78 att yahoo dott co dott jp> | |
| # Contributor: Felix Yan <felixonmars@gmail.com> | |
| # Contributor: ponsfoot <cabezon dot hashimoto at gmail dot com> | |
| ## Mozc compile option | |
| _bldtype=Release | |
| _mozcver=2.23.2815.102 |
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 -e | |
| PAUSE="/tmp/__bitbar_virtualbox_$(whoami)" | |
| function start_watch() { | |
| rm -f "$PAUSE" | |
| exit $? | |
| } | |
| function pause_watch() { |
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
| wait..... | |
| fetch '@Naomii1@pawoo.net' | |
| not found. skip. | |
| wait..... | |
| fetch '@Naomii2@pawoo.net' | |
| not found. skip. | |
| wait..... | |
| fetch '@Naomii3@pawoo.net' | |
| not found. skip. | |
| wait..... |
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 | |
| TARGET_USER=mohemohe | |
| groupadd -f wheel | |
| useradd -G wheel -m -s /bin/bash ${TARGET_USER} | |
| mkdir -p /home/${TARGET_USER}/.ssh | |
| chmod 700 /home/${TARGET_USER}/.ssh | |
| curl https://github.com/${TARGET_USER}.keys > /home/${TARGET_USER}/.ssh/authorized_keys | |
| chmod 600 /home/${TARGET_USER}/.ssh/authorized_keys | |
| chown ${TARGET_USER}: -R /home/${TARGET_USER} |
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
| // ==UserScript== | |
| // @name Mastodon X Files | |
| // @namespace mizle.net | |
| // @description :thinking_face: | |
| // @author Eai <eai@mizle.net> | |
| // @license MIT | |
| // @version 1.2.2 | |
| // @include https://*/web/* | |
| // @grant GM.xmlHttpRequest |
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
| /* ==UserStyle== | |
| @name Slack like Mastodon | |
| @namespace io.plusminus.mstdn.like.slack | |
| @version 1.0.0 | |
| @description Slack like Mastodon | |
| @author mohemohe | |
| ==/UserStyle== */ | |
| @-moz-document regexp("https://mstdn\\..*/web/?.*") { | |
| @media(min-width:631px) { |