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 lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | |
<title>Date Difference Calculator & Calendar</title> | |
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | |
<style> | |
table { width: 100%; border-collapse: collapse; margin-bottom: 20px; } | |
th, td { border: 1px solid #ddd; padding: 8px; text-align: center; } |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | |
<title>Date Difference Calculator & Calendar</title> | |
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | |
<style> | |
table { width: 100%; border-collapse: collapse; margin-bottom: 20px; } | |
th, td { border: 1px solid #ddd; padding: 8px; text-align: center; } |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | |
<title>Date Difference Calculator & Calendar</title> | |
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | |
<style> | |
table{width:100%;border-collapse:collapse;margin-bottom:20px} | |
th,td{border:1px solid #ddd;padding:8px;text-align:center} |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | |
<title>Date Difference Calculator & Calendar</title> | |
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | |
<style> | |
table{width:100%;border-collapse:collapse;margin-bottom:20px} | |
th,td{border:1px solid #ddd;padding:8px;text-align:center} |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Day, Month, Year Picker</title> | |
<style> | |
label, select { margin-right: 10px; } | |
#result { font-size: 18px; margin-top: 20px; font-weight: bold; } | |
</style> | |
</head> |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | |
<title>Date Difference & Calendar</title> | |
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | |
<style> | |
table{width:100%;border-collapse:collapse;margin-bottom:20px} | |
th,td{border:1px solid #ddd;padding:8px;text-align:center} |
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
#include <iostream> | |
#include <unordered_map> | |
#include <string> | |
#include <memory> | |
// Base class for tracked objects | |
class TrackedObject { | |
public: | |
TrackedObject(const std::string& customName); | |
virtual ~TrackedObject(); |
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> | |
<style> | |
#screen { border: 1px solid #000; cursor: crosshair; } | |
#coordinates { font-family: monospace; } | |
.txt_blue { color: blue; } | |
.txt_orange { color: orange; } | |
</style> | |
</head> |
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> | |
<body> | |
<canvas id="screen" width="800" height="480"></canvas> | |
<script> | |
// Global variables | |
let cvs = null; | |
let ctx = null; | |
// Tile and logo directories |
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> | |
<style> | |
#screen { border: 1px solid #000; cursor: crosshair; } | |
#coordinates { font-family: monospace; } | |
.txt_blue { color: blue; } | |
.txt_orange { color: orange; } | |
</style> | |
</head> |
NewerOlder