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
#include <Bridge.h> | |
#include <BridgeClient.h> | |
#include <BridgeServer.h> | |
#include <BridgeSSLClient.h> | |
#include <BridgeUdp.h> | |
#include <Console.h> | |
#include <FileIO.h> | |
#include <HttpClient.h> | |
#include <Mailbox.h> | |
#include <Process.h> |
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
#include <Bridge.h> | |
#include <BridgeClient.h> | |
#include <BridgeServer.h> | |
#include <BridgeSSLClient.h> | |
#include <BridgeUdp.h> | |
#include <Console.h> | |
#include <FileIO.h> | |
#include <HttpClient.h> | |
#include <Mailbox.h> | |
#include <Process.h> |
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
#include <Bridge.h> | |
#include <BridgeClient.h> | |
#include <BridgeServer.h> | |
#include <BridgeSSLClient.h> | |
#include <BridgeUdp.h> | |
#include <Console.h> | |
#include <FileIO.h> | |
#include <HttpClient.h> | |
#include <Mailbox.h> | |
#include <Process.h> |
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
#include <Bridge.h> | |
#include <BridgeClient.h> | |
#include <BridgeServer.h> | |
#include <BridgeSSLClient.h> | |
#include <BridgeUdp.h> | |
#include <Console.h> | |
#include <FileIO.h> | |
#include <HttpClient.h> | |
#include <Mailbox.h> | |
#include <Process.h> |
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
//MainActivity | |
package com.example.maarten.labo35; | |
import android.content.Intent; | |
import android.os.Handler; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.view.Menu; | |
public class MainActivity extends AppCompatActivity { |
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
//Main.java | |
public class MainActivity extends AppCompatActivity { | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
final int splashDelay = 1000; | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.layout); | |
new Handler().postDelayed(new Runnable() { |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>FitBuddy Monitor</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script> | |
<script src="app.js"></script> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" /> | |
<link href="https://fonts.googleapis.com/css?family=Noto+Sans" rel="stylesheet"> | |
<link rel="stylesheet" href="thema.css"> | |
</script> |
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
var app = angular.module('fitbuddy', []); | |
app.controller('MainController', function($scope, $http){ | |
$scope.result = []; | |
$http.get("IPRETRACTED").then(function (res){ | |
$scope.result = res.data; | |
console.log(res); | |
$scope.naam = res.voornaam; | |
console.log($scope.naam); | |
}); |
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 void Collision(Level activelevel) | |
{ | |
for (int x = 0; x < activelevel.Length; x++) | |
{ | |
for (int y = 0; y < activelevel.Height; y++) | |
{ | |
if (activelevel.blokTileArray[x, y] != null) | |
{ | |
if (this.ColRectangle.Bottom +6> activelevel.blokTileArray[x, y].ColRectangle.Top && | |
this.ColRectangle.Right - 20> activelevel.blokTileArray[x,y].ColRectangle.Left && |
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
[ | |
{ | |
"firstName":"Nicolas Alexis Julio", | |
"lastName":"N'Koulou N'Doubena", | |
"nickname":"N. N'Koulou", | |
"nationality":"Cameroon", | |
"age":24, | |
"birthDate":"1990-03-27T00:00:00.000Z", | |
"birthCountry":"Cameroon", | |
"birthCity":"Yaoundé", |
NewerOlder