This file contains 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 あ | |
ba ば | |
bd べん | |
be べ | |
bh ぶう | |
bi び | |
bj ぶん | |
bk びん |
This file contains 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
javascript:(function(){location.href=location.href.match(/https*:\/\/[a-z.]*\//)[0]+location.href.match(/dp\/[A-Z0-9]{10}/)[0]})() |
This file contains 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
F13 & A::Send,{Blind}{Left} | |
F13 & S::Send,{Blind}{Down} | |
F13 & W::Send,{Blind}{Up} | |
F13 & D::Send,{Blind}{Right} | |
F13 & J::Send,{Esc} | |
~j up:: | |
Input, jout, I T0.1 V L1, {j} | |
if(ErrorLevel == "EndKey:J"){ | |
SendInput, {BackSpace 2} | |
Send,{Esc} |
This file contains 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
module.exports = { | |
I: '我が名は神龍', | |
actions: { | |
waitForElement: '要素が表示されるまで待ってやろう', | |
waitForClickable: 'クリック可能になるまで待ってやろう', | |
waitForVisible: '要素が見えるようになるまで待ってやろう', | |
waitForText: 'テキストが表示されるまで待ってやろう', | |
refresh: 'ページを更新してやろう', | |
amOnPage: 'URLにアクセスしてやろう', | |
click: 'クリックしてやろう', |
This file contains 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 mandrill = require('mandrill-api/mandrill') | |
const sleep = require('sleep-promise') | |
require('dotenv').config() | |
class FetchMail extends Helper { | |
_before() { | |
this.apiKey = process.env.MANDRILL_API_KEY | |
this.client = new mandrill.Mandrill(this.apiKey) | |
} |
This file contains 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
('https?://[\w/:%#\$&\?\(\)~\.=\+\-]+/)(\S*') // from | |
'{{ asset('/$2) }} // to |
This file contains 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
sudo sh -e ~/Downloads/crouton -r xenial -t xfce-desktop |
This file contains 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
import requests | |
import xml.etree.ElementTree as ET | |
def filecheck(): | |
user = 'username' | |
password = 'password' | |
url = 'https://example.com/dav' | |
req = requests.Request('PROPFIND', url, headers={'Depth': '1'},auth=(user,password)) | |
prepped = req.prepare() |