Last active
October 18, 2022 23:53
-
-
Save JanMiksovsky/e0bc199555d3814deaaa6d1664fff02a to your computer and use it in GitHub Desktop.
Graph Origami demo of an A/B test overlaying experimental files on top of control files
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
control: | |
index.html: | | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width,initial-scale=1" /> | |
<link rel="stylesheet" href="styles/styles.css" /> | |
</head> | |
<body> | |
Hello, world! | |
</body> | |
</html> | |
styles: | |
styles.css: | | |
body { | |
color: #333; | |
font-family: Arial, Helvetica, sans-serif; | |
} | |
"experiment = merge(this, control)": | |
styles: | |
styles.css: | | |
body { | |
color: darkred; | |
font-family: Menlo, Monaco, "Courier New", monospace; | |
font-size: x-large; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment