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 <iostream> | |
using namespace std; | |
struct Person | |
{ | |
string name; | |
string room; | |
}; |
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
1 .bss | |
2 NUMBERS: .skip 1000 | |
3 | |
4 .text | |
5 formatstr: .asciz "%d\n" | |
6 | |
7 .global main | |
8 | |
9 main: | |
10 movq %rsp, %rbp |
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
# ************************************************************************ | |
# * Program name : sieve * | |
# * Description : this program prints all the prime numbers below 1000 * | |
# ************************************************************************ | |
.bss | |
NUMBERS: .skip 1000 # memory space for the number table | |
.text | |
formatstr: .asciz "%d\n" # format string for number printing |
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 HTML5(experimental)> | |
<html> | |
<head> | |
<title> | |
Jacked Phones | |
</title> | |
<link rel="stylesheet" type="text/css" href="WebPageScreen.css"> | |
<style> | |
img { |
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 HTML5(experimental)> | |
<html> | |
<head> | |
<title> | |
Jacked Phones | |
</title> | |
<link rel="stylesheet" type="text/css" href="WebPageScreen.css"> | |
<style> | |
img { |
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
//this loads html content from the VU into the table | |
$(document).ready(function() | |
{ | |
$.ajax({ | |
//ajax request with paramaters to get a json file from the VU | |
url: 'https://wt.ops.labs.vu.nl/api18/f47cbdfe', | |
type: 'get', | |
dataType:'json', | |
success: function (response) | |
//if succesful do the following |
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> | |
Jacked Phones | |
</title> | |
<link rel="stylesheet" type="text/css" href="Screen_matthias.css"> | |
<meta charset="UTF-8"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></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
$(document).ready(function() | |
{ | |
$.ajax({ | |
//ajax request with paramaters to get a json file from the VU | |
url: 'https://wt.ops.labs.vu.nl/api18/f47cbdfe', | |
type: 'get', | |
dataType:'json', | |
success: function (response) | |
{ | |
var trHTML = ''; |
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
//this loads html content from the VU into the table | |
$(document).ready(function() | |
{ | |
$.ajax({ | |
//ajax request with paramaters to get a json file from the VU | |
url: 'https://wt.ops.labs.vu.nl/api18/f47cbdfe', | |
type: 'get', | |
dataType:'json', | |
success: function (response) | |
{ |
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> | |
Jacked Phones | |
</title> | |
<link rel="stylesheet" type="text/css" href="Screen_matthias.css"> | |
<meta charset="UTF-8"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> |
OlderNewer