javascript:(function(){javascript:(function(){var url = window.location.href;url = url.replace(/name=.+/, 'name=orig');window.location.href = url;})()})();
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
javascript:(function(){ | |
function check_extention(url) { | |
for (const ext of [".jpg", ".jpeg", ".png", ".png"]) { | |
if (url.includes(ext)) return true; | |
} | |
return false; | |
} | |
function append_image(el) { | |
var el_img = document.createElement("img"); |
「円滑なインターネット利用環境の確保に関する検討会 対応の方向性」及び意見募集結果の公表 平成30年2月20日 http://www.soumu.go.jp/menu_news/s-news/01kiban18_01000037.html
アメリカで動きがあったので、そのついでに国内動向を少し調査
The Register と@heatwave_p2p( ツイート1 、 ツイート2 ) によると、アメリカのDMCA(デジタルミレニアム著作権法)の見直しにより、以下のアクセスコントロール回避が解禁されたとのこと
- 教育、ドキュメンタリーのための録画・ストリーミングビデオの使用
- アクセシビリティ確保のための電子テキスト媒体の使用
- 相互互換性、不要ソフト削除のための電話・タブレットの脱獄
twitterの画像を開いた画面でこのブックマークレットを起動すると、オリジナルサイズになります。
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
Start | |
d = 114514 | |
3 | |
10 | |
924 | |
0 | |
Finish |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="/local.js"></script> | |
<title></title> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<meta http-equiv="cache-control" content="no-cache"> | |
<meta http-equiv="expires" content="0"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> | |
<meta name="COPYRIGHT" content="Copyright 2017 Trend Micro"> |
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
Sub SaveAsPng() | |
Dim ExportFileName As String | |
ExportFileName = Application.ActivePage.Name + ".png" | |
Dim PathPrefix As String | |
PathPrefix = "images/" | |
'(Re)Create export folder | |
If Not DirExists(PathPrefix) Then | |
MkDir PathPrefix |
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/env python | |
from sys import stdin, stdout | |
import argparse | |
DESCRIPTION = "binary reverser v.1,0" | |
STDIN = "-" | |
parser = argparse.ArgumentParser(description=DESCRIPTION) | |
parser.add_argument('File', metavar='File', type=str, nargs="?", | |
default=STDIN, |
NewerOlder