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 lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>フランスゴデイナ</title> | |
<style> | |
.content { | |
width: 50em; | |
margin: 2rem auto; |
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 lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>ポパパポピポパポ ピピョロロロピーピョロピーゴーーーーーピーーーーゴーーーーザーーーーーーーガピー</title> | |
<style> | |
#image { | |
height: 400px; | |
} |
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
//============================================================================= | |
// Lunatlazur_EventCommandSkip.js | |
// ---------------------------------------------------------------------------- | |
// Copyright (c) 2018 Taku Aoi | |
// This plugin is released under the zlib/libpng License. | |
// http://zlib.net/zlib_license.html | |
// ---------------------------------------------------------------------------- | |
// Version | |
// 1.0.0 2018/04/01 | |
// ---------------------------------------------------------------------------- |
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
/** | |
* PictureCommand.js | |
*/ | |
/*:ja | |
* @target MZ | |
* @plugindesc プラグインコマンドからピクチャの操作を行えるようにします。 | |
* @author aoitaku | |
* @license Zlib | |
* | |
* @help PictureCommand.js |
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
//============================================================================= | |
// Lunatlazur_MessageTextShake.js | |
// ---------------------------------------------------------------------------- | |
// Copyright (c) 2020 Taku Aoi | |
// This plugin is released under the zlib/libpng License. | |
// http://zlib.net/zlib_license.html | |
// ---------------------------------------------------------------------------- | |
// Version | |
// 1.0.0 2020/07/24 | |
// ---------------------------------------------------------------------------- |
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
{ | |
"title": "A JSON Schema for OpenAPI 3.0 API.", | |
"id": "http://swagger.io/v3/schema.json#", | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"type": "object", | |
"required": [ | |
"openapi", | |
"info", | |
"paths" | |
], |
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
/// <reference path='typings/index.d.ts' /> | |
import * as _ from 'lodash' | |
declare module 'lodash' { | |
// tslint:disable-next-line:interface-name | |
interface LoDashStatic { | |
chunkBy <T> (array: T[], predicate: (element: T) => boolean): T[][] | |
} | |
} | |
_.mixin({ | |
chunkBy <T> (array: T[], predicate: (element: T) => boolean): T[][] { |
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
module Quincite | |
module UI | |
module Event | |
def fire(type, current_target, target, *args) | |
__send__(type, current_target, target, *args) | |
end |
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
module Rpk | |
module Win32 | |
class API | |
def self.setup | |
require 'fiddle/import' | |
const_set(:DLL, {}) unless defined? DLL |
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
def _CHECK_(yield_stack, options, &block) | |
# Proc#[] は Proc#call の別名で、これを利用すると Hash#[] と同じように呼び出せるようになります | |
datastore = options[:_ARGUMENT_] ? @root_control.send(options[:_ARGUMENT_]) : proc {|key| send(key) } | |
# いずれかが真のときに true ということならここも any? が使えます | |
result = options.any? do |condition, value| | |
case condition | |
#指定されたデータと値がイコールかどうか | |
when :equal | |
value.any?{|key, val| datastore[key] == val} | |
#指定されたデータと値がイコールでない場合 |
NewerOlder