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 <opencv2/core.hpp> | |
#include <opencv2/highgui.hpp> | |
#include <opencv2/imgproc.hpp> | |
#include <opencv2/opencv.hpp> | |
#include <array> | |
#include <string_view> | |
#include <utility> | |
using namespace std::string_view_literals; |
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> | |
<title>Typewriter Monkeys Feedback</title> | |
</head> | |
<body> | |
<h1>Feedback plx</h1> | |
<form action="forms.php" method="POST"> | |
<label for="ID">Student ID:</label> | |
<input type="text" autofocus required name="ID" /> |
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
import * as React from 'react'; | |
import './App.css'; | |
const baseURL = 'http://www.sfu.ca/bin/wcm/course-outlines'; | |
interface MyProps {} | |
interface Data { | |
text: string; | |
value: number; |
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
using System.Collections.Generic; | |
using System.Linq; | |
using System.Numerics; | |
namespace NetCoreConsolePlayground | |
{ | |
class Entity | |
{ | |
public Vector3 Postion; | |
public Quaternion Rotation; |
OlderNewer