I hereby claim:
- I am yanorei32 on github.
- I am yanorei32 (https://keybase.io/yanorei32) on keybase.
- I have a public key whose fingerprint is 435A 05EA 7032 8348 962C 7D0C 7E84 1086 AA66 F001
To claim this, I am signing this object:
U-Boot 1.1.5-linino-g2d891225 (Nov 22 2017 - 09:06:12) | |
Linino Board (ar9331) U-boot | |
DRAM: 64 MB | |
Top of RAM usable for U-Boot at: 84000000 | |
Reserving 218k for U-Boot at: 83fc8000 | |
Reserving 192k for malloc() at: 83f98000 | |
Reserving 44 Bytes for Board Info at: 83f97fd4 | |
Reserving 36 Bytes for Global Data at: 83f97fb0 | |
Reserving 128k for boot params() at: 83f77fb0 |
U-Boot 1.1.4-linino-gdd727126 (Mar 19 2014 - 19:37:10) | |
Linino Board (ar9331) U-boot | |
DRAM: 64 MB | |
Top of RAM usable for U-Boot at: 84000000 | |
Reserving 217k for U-Boot at: 83fc8000 | |
Reserving 192k for malloc() at: 83f98000 | |
Reserving 44 Bytes for Board Info at: 83f97fd4 | |
Reserving 36 Bytes for Global Data at: 83f97fb0 | |
Reserving 128k for boot params() at: 83f77fb0 |
私は、GPG鍵 (主鍵) をシステムパーティションごと消しました。 | |
Yubikey (署名副鍵 / 有効期限切れ) は持っているため、 | |
システム時間をずらし、この文書に署名しようと思います。 | |
旧公開鍵は以下の通りです。 | |
PGP Signature: 7E84 1086 AA66 F001 | |
-----BEGIN PGP PUBLIC KEY BLOCK----- |
Linux version 2.6.33-rc4 (delta@delta-desktop) (gcc version 4.3.3 (Sourcery G++ Lite 2009q1-203) ) #1 Thu Aug 30 21:50:43 JST 2012 | |
CPU: ARM926EJ-S [41069265] revision 5 (ARMv5TEJ), cr=00053177 | |
CPU: VIVT data cache, VIVT instruction cache | |
Machine: NECAT Delta | |
Memory policy: ECC disabled, Data cache writeback | |
On node 0 totalpages: 16384 | |
free_area_init_node: node 0, pgdat c0640484, node_mem_map c065f000 | |
DMA zone: 128 pages used for memmap | |
DMA zone: 0 pages reserved | |
DMA zone: 16256 pages, LIFO batch:3 |
root=/dev/ram0 console=ttyS0,9600n8 ip=none quiet mem=240M |
ed | |
------flush priority: 10 | |
flush_page_cache: do flush... | |
hotplug eth0: link up, 100Mbps, full-duplex | |
yaffs: dev is 32505858 name is "mtdblock2" | |
yaffs: Attempting MTD mount on 31.2, "mtdblock2" | |
yaffs: auto selecting yaffs2 | |
eth0: Set multicast. |
uniform int horiz_res = 64; | |
float4 mainImage(VertData v_in) : TARGET { | |
float ratio = uv_size.y / uv_size.x; | |
float2 res = float2(horiz_res, horiz_res * ratio); | |
float2 sampling_pos = (floor(v_in.uv * res) + 0.5) * rcp(res); | |
return image.Sample(textureSampler, sampling_pos); | |
} |
I hereby claim:
To claim this, I am signing this object:
uniform int shadow_blur_unit_dist; | |
uniform float shadow_blur_gain; | |
uniform float4 shadow_color; | |
float4 mainImage(VertData v_in) : TARGET { | |
float invsqrt2 = 0.70710678118654; | |
float2x2 rotateClockwise45 = { | |
invsqrt2, -invsqrt2, | |
invsqrt2, invsqrt2, |
<html> | |
<head> | |
<style> | |
html, body { | |
width: 100%; | |
height: 100%; | |
margin: 0; | |
background-color: limegreen; | |
} | |
.container { |