RES_VER | 日付 | 内容 |
---|---|---|
10000001 | 2015/09/02 | 初期データ |
10005000 | 2015/09/17 | ガチャ更新(前川みく) |
10005100 | 2015/09/17 | 緊急メンテのためガチャ更新時間を変更 |
10006000 | 2015/09/25 | アタシポンコツアンドロイド開始 |
10007000 | 2015/09/30 | ガチャ更新(十時愛梨) |
10007002 | 2015/09/30 | 高森藍子、十時愛梨、浜口あやめのアピール値修正 |
10008000 | 2015/10/05 | 楽曲追加(ショコラ・ティアラ)、アイドル追加(鷺沢文香、五十嵐響子、松山久美子) |
10009000 | 2015/10/09 | シンデレラキャラバン開始(星輝子、綾瀬穂乃香) |
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
public bool isEmulator() | |
{ | |
Process[] processes = Process.GetProcesses(); | |
Process[] array = processes; | |
for (int i = 0; i < array.Length; i++) | |
{ | |
Process process = array[i]; | |
if (process.ProcessName.Contains("com.bluestacks")) | |
{ | |
return true; |
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
// Chrome console | |
$("body").removeClass('morning').addClass('night');url="core_sys/images/main/top/main_img_ni.jpg";a=new Image();a.onload=function(){$("#main_img").children("img").attr({'src':url});};a.src=url; | |
// URL | |
javascript:(function(){$("body").removeClass('morning').addClass('night');url="core_sys/images/main/top/main_img_ni.jpg";a=new Image();a.onload=function(){$("#main_img").children("img").attr({'src':url});};a.src=url;})(); |
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
順番はランダムです | |
自動で生成したので中には存在しないボイスのURLが存在します | |
アジ・ダハーカ | |
種族:魔種 | |
画像URL:http://cache.lova.jp/servantdatabase/ver20150424/art/mcY_jSRUinw-_art.jpg | |
ボイスURL:http://cache.lova.jp/servantdatabase/ver20150424/voice/mcY_jSRUinw-_voice.mp3 | |
データインポートURL:http://lova.jp/servantdatabase/?key=2mBcZ.ELWiNKUszF38h36BDELYHt5OUhI_xaqJbN0BJqusAh9l4HMR6Z8xCckDDafF66sOxJ5rzX4iMFWWOvfg-- | |
コノハナサクヤ |
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
<?php | |
$id = "screen_name"; | |
$pass = "password"; | |
$newpass = "newpassword"; | |
//authenticitytokenの取得 | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_URL, "https://twitter.com"); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); |
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
<?php | |
require_once("TwistOAuth.php"); | |
$to = new TwistOAuth("CK", "CS", "OT", "OS"); | |
$res = $to->get("search/tweets", array( | |
"q" => "#はじめてのツイート", | |
'lang' => 'ja', | |
)); | |
foreach($res->statuses as $data){ | |
if(!preg_match('/default_profile_images/', $data->user->profile_image_url)){ |
NewerOlder