Skip to content

Instantly share code, notes, and snippets.

View wataruru35's full-sized avatar

青木渉 wataruru35

View GitHub Profile
@wataruru35
wataruru35 / grade.php
Created March 11, 2013 10:30
[PHP]誕生日から現在の学年(小学校)を求める関数 小学生意外の場合は年齢
<?php
$birth = "20040501";
echo grade($birth);
//誕生日から現在の学年(小学校)を求める 小学生ではない場合:歳
function grade($birth){
//今日の日付を取得
@wataruru35
wataruru35 / game.js
Last active December 14, 2015 04:18
game.js基本
enchant();
var SCREEN_WIDTH =320;
var SCREEN_HEIGHT =320;
window.onload = function() {
// ゲームオブジェクトを作成する
game = new Game(SCREEN_WIDTH, SCREEN_HEIGHT);
@wataruru35
wataruru35 / index.html
Last active December 14, 2015 04:18
enchant.jsのHTMLの基本
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- ステータスバーを半透明で表示する(iPad/iPhpne用) -->
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<title>enchant</title>
@wataruru35
wataruru35 / fadeout.js
Last active December 14, 2015 03:48
enchant.js クリックするとスプライトがフェードアウト
enchant();
var SCREEN_WIDTH =320;
var SCREEN_HEIGHT =320;
window.onload = function() {
// ゲームオブジェクトを作成する
game = new Game(SCREEN_WIDTH, SCREEN_HEIGHT);
@wataruru35
wataruru35 / facebook_login.php
Created January 6, 2013 02:20
Facebookアカウントを使ってログイン
<?php
$appId = '205979979526XXX';//アプリID
$appSecret = 'c6907f5f234b6ba40e91xxxxxxxxxxx';//アプリの秘匿コード
$myUrl = 'http://www.xxxx.jp/FBAccountLogin/sample.php';//サイトURL
//ユーザーがログインしているか確認
$code = $_REQUEST["code"];
@wataruru35
wataruru35 / Random.java
Created December 27, 2012 12:50
乱数を取得
//1~52までの乱数を取得
Random rnd = new Random();
int card1 = rnd.nextInt(51)+1;