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
| -- phpMyAdmin SQL Dump | |
| -- version 4.4.13.1deb1 | |
| -- http://www.phpmyadmin.net | |
| -- | |
| -- Host: localhost | |
| -- Generation Time: Apr 13, 2016 at 06:22 PM | |
| -- Server version: 5.6.28-0ubuntu0.15.10.1 | |
| -- PHP Version: 5.6.11-1ubuntu3.1 | |
| SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
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
| SimpleXMLElement Object | |
| ( | |
| [OperationRequest] => SimpleXMLElement Object | |
| ( | |
| [HTTPHeaders] => SimpleXMLElement Object | |
| ( | |
| [Header] => SimpleXMLElement Object | |
| ( | |
| [@attributes] => Array | |
| ( |
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
| { | |
| "docs": [ | |
| { | |
| "name": "Squirtle", | |
| "type": ["Water"], | |
| "trainer": "Ash", | |
| "gender": "m", | |
| "owned": "1999-05-21" | |
| }, | |
| { |
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
| -- phpMyAdmin SQL Dump | |
| -- version 4.5.4.1deb2ubuntu2 | |
| -- http://www.phpmyadmin.net | |
| -- | |
| -- Host: localhost | |
| -- Generation Time: Jul 06, 2016 at 06:57 AM | |
| -- Server version: 5.7.12-0ubuntu1.1 | |
| -- PHP Version: 5.6.23-2+deb.sury.org~xenial+1 | |
| SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
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
| #fact source | |
| male(goku). | |
| female(chichi). | |
| parent(goku, gohan). | |
| parent(chichi, gohan). | |
| parent_of(X, Y, Z) :- male(X), female(Y), parent(X, Z), parent(Y, Z). | |
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
| package activity; | |
| import java.io.BufferedReader; | |
| import java.io.File; | |
| import java.io.FileNotFoundException; | |
| import java.io.FileReader; | |
| import java.io.IOException; | |
| import java.util.Scanner; | |
| import java.util.logging.Level; |
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
| !function(){function t(n){function o(t){return t.split("/").slice(-1).toString().replace(".js","")}return n.slice?t[o(n)]:function(e,i){n(e={exports:{}}),t[o(i)]=e.exports}}var n;"undefined"!=typeof window&&(n=window),"undefined"!=typeof global&&(n=global),n=n||{};var o=n.console||{log:function(){}};if("undefined"!=typeof module)var e=module;t(function(t){var n={};n.fns=n.fn={is:function(t){return!!t&&"function"==typeof t}},n.bi={is:function(t){return t instanceof Boolean||"boolean"==typeof t}},n.num={is:function(t){return!e(t)&&(t-parseFloat(t)+1>=0||1/0===t||-(1/0)===t)}},n.text={is:function(t){return"string"==typeof t}},n.text.ify=function(t){return n.text.is(t)?t:"undefined"!=typeof JSON?JSON.stringify(t):t&&t.toString?t.toString():t},n.text.random=function(t,n){var o="";for(t=t||24,n=n||"0123456789ABCDEFGHIJKLMNOPQRSTUVWXZabcdefghijklmnopqrstuvwxyz";t>0;)o+=n.charAt(Math.floor(Math.random()*n.length)),t--;return o},n.text.match=function(t,o){function e(t,n){for(var o,e=-1,i=0;o=n[i++];)if(!~(e=t.indexOf( |
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
| // App.js | |
| import React, { Component } from 'react'; | |
| import { View, Alert, Dimensions } from 'react-native'; | |
| import { GameEngine } from 'react-native-game-engine'; | |
| import RNRestart from 'react-native-restart'; | |
| import { | |
| accelerometer, | |
| setUpdateIntervalForType, | |
| SensorTypes |
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
| // App.js | |
| const GRID_X = 11; | |
| const GRID_Y = 16; | |
| const maze = CreateMaze(GRID_X, GRID_Y); |
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
| // App.js | |
| const BALL_SIZE = Math.floor(width * .02); | |
| const ballStartPoint = GetRandomPoint(GRID_X, GRID_Y); | |
| const theBall = Matter.Bodies.circle( | |
| ballStartPoint.x, | |
| ballStartPoint.y, | |
| BALL_SIZE, | |
| { | |
| label: "ball" | |
| } |