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
| #rhs { | |
| display: none !important; | |
| } | |
| #center_col { | |
| min-width: calc(100vw - 320px) !important; | |
| max-width: calc(100vw - 320px) !important; | |
| } | |
| #fbar { |
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: mohemohe <mohemohe(at)ghippos.net> | |
| pkgname=ttf-cica | |
| pkgver=2.0.4 | |
| pkgrel=1 | |
| pkgdesc="Composite font with Ubuntu Mono and Rounded Mgen+." | |
| url="https://github.com/miiton/Cica" | |
| license=('custom') | |
| arch=('any') | |
| depends=('fontconfig' 'xorg-font-utils') |
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 checkUnread() { | |
| const unreadsArray = document.querySelectorAll('.channel_name .badge.pull-right'); | |
| let counter = 0; | |
| unreadsArray.forEach((value, index, array) => { | |
| const innterString = value.innerHTML; | |
| const parseData = parseInt(innterString, 10); | |
| if(!isNaN(parseData)) { | |
| counter += parseData; | |
| } |
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
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2017 mohemohe <mohemohe@ghippos.net> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
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 | |
| curl https://www.archlinux.org/mirrorlist/all/ | grep .jp/ | cut -d'#' -f2 >| /etc/pacman.d/mirrorlist | |
| cp /etc/pacman.conf /etc/pacman.conf.orig | |
| cat <<EOS >> /etc/pacman.conf | |
| [antergos] | |
| SigLevel = Never | |
| Server = http://mirror.antergos.jp/$repo/$arch | |
| EOS |
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
| #include <iostream> | |
| using namespace std; | |
| int main(void){ | |
| for(char i = 65; i < 91; i++) { | |
| string _(1, i); | |
| cout << _ + "はアナルの" + _ + "!" << endl; | |
| } | |
| return 0; | |
| } |
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
| KONSOLE_PROFILE= | |
| function precmd_preexec_ssh-iikanji() { | |
| local CMD=${1} | |
| local NEXT_PROFILE= | |
| case "$CMD" in | |
| *ssh*prd* ) { | |
| NEXT_PROFILE=ArgonautRed | |
| } ;; | |
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
| INIT_VERBOSE=true | |
| INDICATOR_MESSAGE= | |
| INDICATOR_PID= | |
| function indicator() { | |
| trap "echo -en '\e[1A'; for ((i=0; i<`tput cols`; i++)); do { printf ' ' } done; kill $INDICATOR_PID &> /dev/null; exit 0" INT | |
| while [[ 0 ]] | |
| do { | |
| eval 'echo -e " ⠋ $INDICATOR_MESSAGE\e[1A"'; sleep 0.05; | |
| eval 'echo -e " ⠙ $INDICATOR_MESSAGE\e[1A"'; sleep 0.05; |
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/zsh | |
| find ~/.ssh -type d -exec chmod 700 {} + | |
| find ~/.ssh -type f -exec chmod 400 {} + | |
| find ~/.ssh -name '*.sshconf' | xargs -I_ chmod 600 _ | |
| chmod 600 ~/.ssh/config |
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
| /*! normalize.css v2.1.3 | MIT License | git.io/normalize */ | |
| /* ========================================================================== | |
| HTML5 display definitions | |
| ========================================================================== */ | |
| /** | |
| * Correct `block` display not defined in IE 8/9. | |
| */ |