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
| Graphics Feature Status | |
| Canvas: Software only, hardware acceleration unavailable | |
| Flash: Software only. Hardware acceleration disabled | |
| Flash Stage3D: Software only. Hardware acceleration disabled | |
| Flash Stage3D Baseline profile: Software only. Hardware acceleration disabled | |
| Compositing: Software only. Hardware acceleration disabled | |
| Multiple Raster Threads: Enabled | |
| Native GpuMemoryBuffers: Software only. Hardware acceleration disabled | |
| Out-of-process Rasterization: Disabled |
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 checkIntersection(interval, tree){ | |
| var currentNode = tree.root; | |
| var intersection = {}; | |
| while(currentNode){ | |
| console.log("Searching...", currentNode); | |
| if (currentNode.list.length > 0){ | |
| for (var i = 0; i < currentNode.list.length; i++){ | |
| if (interval[0] < currentNode.list[i].interval[1] && currentNode.list[i].interval[0] < interval[1]){ | |
| intersection.interval = currentNode.list[i].interval; |
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 Node(interval, id){ | |
| this.interval = interval; | |
| this.value = interval[0]; | |
| this.max = interval[1]; | |
| this.list = []; | |
| this.left = null; | |
| this.right = null; | |
| this.id = id; | |
| } |
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> | |
| <head> | |
| <title>Title</title> | |
| <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <style> | |
| body{ | |
| font-family: 'Roboto-Thin', sans-serif; | |
| margin:0; |
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> | |
| <head> | |
| <title>Simple Splash</title> | |
| <style> | |
| .box{ | |
| height:50px; | |
| width:100px; | |
| background-color:red; | |
| overflow:hidden; |
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
| /** | |
| * Sample React Native App with GraphQL | |
| */ | |
| 'use strict'; | |
| var Lokka = require('lokka').Lokka; | |
| var Transport = require('lokka-transport-http').Transport; | |
| // Create a lokka client against SWAPI GraphQL API...changed so android queries localhost (needs to be 10.0.2.2) |
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
| 'use strict'; | |
| import React, { Component } from 'react'; | |
| import { | |
| AppRegistry, | |
| StyleSheet, | |
| Text, | |
| Dimensions, | |
| View, | |
| TouchableOpacity, |
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
| //Create Objects. | |
| private ListView myList; | |
| private ListAdapter todoListAdapter; | |
| private TodoListSQLHelper todoListSQLHelper; |
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
| import android.content.Context; | |
| import android.database.sqlite.SQLiteDatabase; | |
| import android.database.sqlite.SQLiteOpenHelper; | |
| import android.provider.BaseColumns; | |
| public class TodoListSQLHelper extends SQLiteOpenHelper { | |
| public static final String DB_NAME = "chaos.list.db"; | |
| public static final String TABLE_NAME = "LIST"; | |
| public static final String COL1_TASK = "item"; |
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
| final ArrayList<String> list = new ArrayList<>(); | |
| final MyCustomAdapter adapter = new MyCustomAdapter(this, list); |
NewerOlder