- portability
- nahtloser netzwerk support
- efficiency
- (hard) realtime
- Increasing OS Efficiency
| <script type="text/javascript"> | |
| // Request Objekt Anlegen | |
| var httpRequest; | |
| if (window.XMLHttpRequest) { // Mozilla, Safari, ... | |
| httpRequest = new XMLHttpRequest(); | |
| } else if (window.ActiveXObject) { // IE 8 and older | |
| httpRequest = new ActiveXObject("Microsoft.XMLHTTP"); |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" dir="ltr"> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
| <title>AJAX Demo</title> | |
| </head> | |
| <body> | |
| <h1>huuuuui Ajax!</h1> |
| Param: X * 63 | |
| Hello XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX | |
| Param: X * 64 | |
| Hello XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX | |
| Param: X * 65 | |
| Hello XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX | |
| Param: X * 66 | |
| Hello XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX | |
| Param: X * 67 | |
| Hello XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX |
| #include "memory.h" | |
| #include <stdio.h> | |
| #include <errno.h> | |
| /* Do not change !! */ | |
| static char mem[4096]; | |
| static size_t MEMSIZE = 4096; | |
| // BLOCKGROESSE: 1 byte |
| // normalize and flip | |
| for (ii = 0; ii < npoints; ii++) | |
| { | |
| cv::Point p, pn; | |
| p = selected.at(ii); | |
| pn.x = 100*(p.x - xmin) / (xmax-xmin); | |
| pn.y = 100*(p.y - ymin) / (ymax-ymin); | |
| normalized.push_back(pn); | |
| std::cout << "Normalized: " << pn.x << " " << pn.y << "\n"; |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import re | |
| import glob | |
| import os | |
| # (C) 2015 Ich konzentriere mich völlig auf meine Bachelorarbeit GmbH | |
| # v2: now mildly recursive (depth of 1) | |
| # v3: sortiert die meisten Latexbefehle aus |