- ドラゴンランドがまだ平和だったころに撮ったもの?
- ドム、マンモス、木が全てドラゴンランドの土着の生きモノであれば、そうかもしれない
- 3種ともウイウイジャンボや、浮遊城砦に居た何かに呼び出されたり、取り込まれたものでなければ
- スペースハリアー3D以後、スペースハリアー本編以前に撮られたもの、ということになる
- ドム、マンモス、木が全てドラゴンランドの土着の生きモノであれば、そうかもしれない
- ドラゴンランドに平和が戻ったあとに撮ったもの?
- 文章の印象としては、ハリアーは事件解決後すぐにどこかへ向かって旅立ったように見えるが…
- スナップ撮影のようなものなので、10秒もあれば撮れるはず
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
// | |
// Open Source ? Skate 3 : EA WebKit 1.10 | |
// http://gpl.ea.com/skate3.html | |
// | |
// Webkit browser for PS3 by EA available to developers | |
// http://community.us.playstation.com/thread/3332685 | |
// | |
// Origyn Web Browser | |
// http://en.wikipedia.org/wiki/Origyn_Web_Browser | |
// |
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
/** | |
XMVectorModAngles() compatible function for ARM NEON | |
@sa XMVectorModAngles() | |
*/ | |
float32x4_t vectorModAngles(float32x4_t vAngle) { | |
#define M_PI 3.1415926535f | |
float32x4_t v0 = vmulq_f32(vAngle, vdupq_n_f32(1.0f/M_PI)); // v0.xyzw = vAngle.xyzw * vReciprocalPi.xyzw | |
uint32x4_t iq = vcgeq_f32(vAngle, vmovq_n_f32(0.0f)); // iq.xyzw = foreach(vAngle.xyzw) : a { (a > 0) ? -1 : 0; } |
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
NCSA Mosaic for the X Window System | |
=================================== | |
Welcome to NCSA Mosaic. | |
This README details installation steps. More complete information and | |
documentation on NCSA Mosaic is available online, via NCSA Mosaic. | |
Binaries |
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
Everything not already copyrighted by CERN is copyrighted by NCSA | |
(including the contents of the libhtmlw, libdmf, and src directories, | |
but not including the contents of libdtm, which is entirely public | |
domain). | |
The official NCSA Mosaic copyright statement follows; NOTE THAT THIS | |
HAS CHANGED FOR 1.1: | |
/**************************************************************************** | |
* NCSA Mosaic for the X Window System * |
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
#include <stdio.h> | |
class A { | |
public: | |
A() { printf("A : begin\n"); } | |
~A() { printf("A : end\n"); } | |
operator bool() const { return true; } | |
}; | |
#define SCOPED_OBJ() if(A a = A()) |
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
#include <windows.h> | |
#include <stdio.h> | |
#define DIRECTINPUT_VERSION 0x0800 | |
#include <dinput.h> | |
#pragma comment(lib, "dinput8.lib") | |
#pragma comment(lib, "dxguid.lib") | |
class DiJoyStick { | |
public: |
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
// This application needs | |
// | |
// <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | |
// | |
// in AndroidManifest.xml : <manifest> section. | |
package com.example.my.checkgps; | |
import android.app.Activity; | |
import android.os.Bundle; |
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
;; https://gist.github.com/1478850 | |
;; GNU Emacs 23.3.1 (x86_64-apple-darwin11.2.0, NS apple-appkit-1138.23) | |
;; | |
;; Kotoeri Shortcut plist | |
;; /System/Library/Input Methods/Kotoeri.app/Contents/Resources/Menu.plist | |
; 言語を日本語にする | |
(set-language-environment 'Japanese) | |
; UTF-8をできるだけ使う | |
(prefer-coding-system 'utf-8) |
OlderNewer