I hereby claim:
- I am mfakane on github.
- I am mfakane (https://keybase.io/mfakane) on keybase.
- I have a public key ASBe-4DFcnP4z92y47ut8BzkM1RDw--0treUlgt83q346go
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name Generate random email address from placeholders | |
| // @namespace https://github.com/mfakane | |
| // @version 0.1 | |
| // @description Automatically replaces placeholders in email addresses during input. Intended to use with plus aliases (e.g. [email protected]) or custom domains (e.g. [email protected]) | |
| // @author mfakane | |
| // @match http://*/* | |
| // @match https://*/* | |
| // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
| // @grant none |
| ^+r:: | |
| ClipSaved := ClipboardAll | |
| Send ^c | |
| ClipWait | |
| Clipboard := Flip(Clipboard) | |
| Send ^v | |
| Clipboard := ClipSaved | |
| ClipSaved = | |
| Return |
| .sidebar-2K8pFh { | |
| width: 64px; | |
| transition: all 0.25s ease; | |
| } | |
| .sidebar-2K8pFh:hover { | |
| width: 240px; | |
| } | |
| .panel-24C3ux, .container-3baos1, .container-1giJp5 { | |
| padding-left: 16px; |
| #!/bin/sh | |
| # Get external input states | |
| input_statuses=$(./bravia-cmd.sh avContent getCurrentExternalInputsStatus 105 '[]' 1.1 | jq -c '.result[][]') | |
| while IFS= read -r input; do | |
| if [[ $(echo $input | jq -r '.status') = 'true' ]]; then | |
| # When input signal is detected | |
| uri=$(echo $input | jq -r '.uri') | |
| current_input=$(./bravia-cmd.sh avContent getPlayingContentInfo 103 '[]' 1.0) |
| .theme-light #bd-settingspane-container h2.ui-form-title, | |
| .theme-light #bd-settingspane-container .ui-switch-item h3 { | |
| color: #4f5f5c; | |
| } | |
| .theme-light #bd-settingspane-container .ui-switch-item .style-description { | |
| color: hsla(218, 5%, 47% .6); | |
| } | |
| .theme-light #bd-settings-sidebar .ui-tab-bar-item { |
| #!/bin/bash | |
| cd /tmp | |
| curl -O http://nami.jp/ipv4bycc/cidr.txt.gz && gunzip -f cidr.txt.gz | |
| ipset create -exist WHITELIST hash:net | |
| ipset flush WHITELIST | |
| sed -n 's/^JP\t//p' cidr.txt | while read ADDRESS; do ipset add WHITELIST $ADDRESS; done | |
| ipset create -exist BLACKLIST hash:net |
I hereby claim:
To claim this, I am signing this object:
| include "/usr/share/nano/*.nanorc" | |
| set autoindent | |
| set const | |
| set cut | |
| set morespace | |
| #set mouse | |
| set multibuffer | |
| set nohelp | |
| set nonewlines |
| using System; | |
| using System.Collections.Generic; | |
| using System.Reflection; | |
| using System.Windows; | |
| using System.Windows.Markup; | |
| namespace Test | |
| { | |
| [MarkupExtensionReturnType(typeof(Delegate))] | |
| class MethodBinding : MarkupExtension |
| #!/bin/sh | |
| PROGNAME=$(basename $0) | |
| #urldecode="nkf --url-input" | |
| urldecode='eval echo -e $(sed "s/+/ /g; s/%/\\\\x/g")' | |
| account="" | |
| password="" | |
| cookie="" | |
| savecookie="" | |
| outdir="." |