まっぴーさんが発言した(に向けて発言された)、迷セリフまとめです。
URL: https://detail.chiebukuro.yahoo.co.jp/qa/question_detail/q13149033688
汎用性: 高い
その他: ありえないことはありえない。。。
/* 実際にこういう風に保管されているという意味ではないです。 あくまで実現方法の一つ*/ | |
[ | |
{ | |
"title": "お願いシンデレラ", /*曲名*/ | |
"mode": "MASTER", /*難易度*/ | |
"lv": 20, /*楽曲レベル*/ | |
"bpm": 175, /*BPM*/ | |
"speed": 10, /*ノードが降ってくるスピード(同じ曲(=同じBPM)でも難易度ごとで降ってくる速度が違う)*/ | |
"notes": [ | |
/* 種類1:単純なノード */ |
var AbilityList = { | |
"Ice Body": "アイスボディ", | |
"Stench": "あくしゅう", | |
"Thick Fat": "あついしぼう", | |
"Analytic": "アナライズ", | |
"Contrary": "あまのじゃく", | |
"Rain Dish": "あめうけざら", | |
"Drizzle": "あめふらし", | |
"Arena Trap": "ありじごく", | |
"Aroma Veil": "アロマベール", |
const fs = require("fs"); | |
//this.clearのあとにこの関数を呼ぶだけ | |
await this.clear("hoge/fuga"); | |
await checkDelete("hoge/fuga"); | |
async function checkDelete(path){ | |
return new Promise(function check(resolve,reject){ | |
fs.stat(path,(err,stats)=>{ | |
if(!err){ |
(function(){ | |
var i,flag,res,times = 1000000; | |
console.time("rand"); | |
res = 0; | |
for(i=0;i<times;++i){ | |
flag = ["","true"][Math.random()*2|0]; | |
if(flag){ | |
res += Math.random(); | |
} |
var _ = GaoFunctional(); | |
var input = "114514"; | |
var res = input[_.count](); | |
console.log(res); // 6 | |
var input2 = [1,1,4,5,1,4]; | |
var res2 = input2[_.count]((x)=>x===1); | |
console.log(res2); // 3 |
!function(){ | |
// 多重実行防止 | |
if(!window.GAO_WATCH_USA_AUTO_PLAY) window.GAO_WATCH_USA_AUTO_PLAY = {}; | |
else return; | |
// Game.Processをオーバーライド | |
var _GameProcess = Game.Process; | |
window.Game.Process = function(){ | |
// 基底メソッドの実行 | |
_GameProcess.apply(this,arguments); |
class Util{ | |
static createPromiseContainer(){ | |
return {resolve:null,reject:null,_resolved:[]}; | |
} | |
static createPromiseCallback(callback,promiseContainer){ | |
return (...args)=>{ | |
var isFirst = true; | |
for(var res of callback(...args)){ | |
if(typeof(res)==="undefined"){ |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>bug component</title> | |
<script src="js/vue.js"></script> | |
</head> | |
<body> | |
<h1>selectタグだと中に入らない</h1> |
まっぴーさんが発言した(に向けて発言された)、迷セリフまとめです。
URL: https://detail.chiebukuro.yahoo.co.jp/qa/question_detail/q13149033688
汎用性: 高い
その他: ありえないことはありえない。。。
$(function() { | |
// 揺らしアニメーション管理用のフラグ変数 | |
var waitShake = false; | |
$("#syaro_pyonpyon").on({ | |
"mouseover": function() { | |
// マウスが上に乗ったら、揺らしアニメーションを強制的に中断して | |
// バウンドアニメーションに切り替えていく | |
$(this).removeClass("shake") | |
.addClass("animated bounce"); |