View index.html
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
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>har reader</title> | |
<style type="text/css"> | |
body { | |
white-space: nowrap; | |
} | |
.browser .nw { |
View install chromium.cmd
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
@(echo `") >$null <# ") >NUL | |
@ECHO OFF | |
SETLOCAL ENABLEEXTENSIONS | |
SET x=.ps1 | |
SET f="%~dpn0%x%" | |
( | |
REN "%~f0" "%~n0%x%" 2>NUL | |
PowerShell -ExecutionPolicy Unrestricted -NoProfile -File %f% %* | |
REN %f% "%~nx0" 2>NUL | |
) |
View gpu.js
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
var GPU = (function () { | |
function GPU(canvas) { | |
this.gl = canvas.getContext(CONTEXT_TYPE); | |
if (this.gl == null) { | |
throw new Error(CONTEXT_TYPE); | |
} | |
this._extensions = {}; | |
for (var i = 0; i < EXTENSION_NAMES.length; i++) { |
View w32time.reg
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
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config] | |
"MaxAllowedPhaseOffset"=dword:0000012c | |
"PhaseCorrectRate"=dword:00000007 | |
"UpdateInterval"=dword:00000064 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters] | |
"NtpServer"="ntp.nict.jp,0x8" |
View uploader.js
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
var Uploader = (function () { | |
function Uploader(url, name) { | |
this.chunk = 0; | |
this.retry = 0; | |
this.timeout = 0; | |
this._url = url; | |
this._name = name; | |
this._i = -1; |
View promise.js
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
var Promise = (function (global, undefined) { | |
"use strict"; | |
var Promise = (function () { | |
function Promise(executor) { | |
if (executor instanceof constructor) { | |
this._ = executor; | |
} else { | |
this._ = new constructor(); |
View bfrtex.js
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
/* | |
GitHub Pages を利用するため、移動しました。 | |
https://github.com/yuru4c/bfrtex-gmo | |
*/ |
View phase.css
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
[data-phase] { | |
position: relative; | |
overflow: hidden; | |
border: solid black; | |
background-color: black; | |
} | |
[data-phase] *, [data-phase]:before { | |
position: absolute; | |
left: 0; |
View attrParser.js
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
var parse = (function () { | |
var cb = '\\', cd = '"', cq = "'"; | |
var re = /\\(?=[;/*])/g, rc = /\\(?=:)/g, rt = /[^\s]/; | |
function slice(css, h, i) { | |
return css.substring(h, i).replace(re, ''); | |
} | |
function prop(css, h, i) { | |
return slice(css, h, i).replace(rc, ''); | |
} | |
function trim(s) { |
View template.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html lang="ja-JP"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<meta http-equiv="Content-Style-Type" content="text/css"> | |
<meta http-equiv="Content-Script-Type" content="text/javascript"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>#text</title> | |
NewerOlder