123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <!doctype html>
- <html lang="en-us">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-
- <title>CV</title>
-
- <meta name="title" content="CV">
- <meta name="description" content="A template for raylib games">
- <meta name="keywords" content="programming, C, C++, library, CV, rendering">
- <meta name="viewport" content="width=1500, user-scalable=yes">
- <script src=headersetter.js></script>
- <!-- Open Graph metatags for sharing -->
- <meta property="og:title" content="CV">
- <meta property="og:image:type" content="image/png">
- <meta property="og:image" content="https://manuel5975p.github.io/cvlogo.png">
- <meta property="og:site_name" content="manuel5975p.github.io">
- <meta property="og:url" content="https://manuel5975p.github.io">
- <meta property="og:description" content="CV">
- <!-- Twitter metatags for sharing
- <meta name="twitter:card" content="summary">
- <meta name="twitter:site" content="@raysan5">
- <meta name="twitter:title" content="raylib web game">
- <meta name="twitter:image" content="https://www.raylib.com/common/raylib_logo.png">
- <meta name="twitter:url" content="https://www.raylib.com/games.html">
- <meta name="twitter:description" content="New raylib web game, developed using raylib videogames library">-->
-
- <!-- Favicon -->
- <link rel="shortcut icon" href="https://manuel5975p.github.io/favicon.ico">
-
- <!-- body { margin: 0px; } -->
- <style>
- html, body, div, canvas {
- margin: 0;
- padding: 0;
- }
- canvas.emscripten { border: 0px none; background-color: black; }
- </style>
- <script type='text/javascript' src="https://cdn.jsdelivr.net/gh/eligrey/FileSaver.js/dist/FileSaver.min.js"> </script>
- <script type='text/javascript'>
- function saveFileFromMEMFSToDisk(memoryFSname, localFSname) // This can be called by C/C++ code
- {
- var isSafari = false; // Not supported, navigator.userAgent access is being restricted
- //var isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent);
- var data = FS.readFile(memoryFSname);
- var blob;
- if (isSafari) blob = new Blob([data.buffer], { type: "application/octet-stream" });
- else blob = new Blob([data.buffer], { type: "application/octet-binary" });
- // NOTE: SaveAsDialog is a browser setting. For example, in Google Chrome,
- // in Settings/Advanced/Downloads section you have a setting:
- // 'Ask where to save each file before downloading' - which you can set true/false.
- // If you enable this setting it would always ask you and bring the SaveAsDialog
- saveAs(blob, localFSname);
- }
- </script>
- </head>
- <body style="background-color:black;">
- <canvas class=emscripten id=canvas oncontextmenu=event.preventDefault() tabindex=-1 crossorigin></canvas>
- <p id="output" />
- <script>
- var Module = {
- print: (function() {
- var element = document.getElementById('output');
- if (element) element.value = ''; // clear browser cache
- return function(text) {
- if (arguments.length > 1) text = Array.prototype.slice.call(arguments).join(' ');
- console.log(text);
- if (element) {
- element.value += text + "\n";
- element.scrollTop = element.scrollHeight; // focus on bottom
- }
- };
- })(),
- canvas: (function() {
- var canvas = document.getElementById('canvas');
- return canvas;
- })()
- };
- </script>
- {{{ SCRIPT }}}
- </body>
- </html>
|