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> | |
<style> | |
:root { | |
background-color: white; | |
background-image: | |
linear-gradient(45deg, #000 25%, transparent 25%), | |
linear-gradient(-45deg, #000 25%, transparent 25%), | |
linear-gradient(45deg, transparent 75%, #000 75%), | |
linear-gradient(-45deg, transparent 75%, #000 75%); | |
background-size:2px 2px; |
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> | |
<meta name="viewport" content="width=device-width"> | |
<style> | |
:root { | |
font-family: sans-serif; | |
background: black; | |
color: white; | |
} | |
#frameInfo, #timeInfo, #fps { | |
font-size: 5em; |
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> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<style> | |
:root { | |
font-family: sans-serif; | |
-webkit-text-size-adjust: 100%; | |
text-size-adjust: 100%; /* needed for chrome to not increase some text and some not (in flexbox) */ | |
} |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <sys/socket.h> | |
#include <net/if.h> | |
#include <sys/ioctl.h> | |
#include <unistd.h> | |
#include <sys/errno.h> | |
// adopted from https://developer.apple.com/documentation/technotes/tn3158-resolving-xcode-15-device-connection-issues#Update-software-using-packet-filtering-rules |
OlderNewer