-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgourdle.html
107 lines (94 loc) · 4.69 KB
/
gourdle.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en" prefix="og: http://ogp.me/ns#">
<head>
<link href="http://gmpg.org/xfn/11" rel="profile">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<!-- Metadata -->
<meta name="description" content="">
<meta property="og:description" content="">
<meta property="og:title" content="Gourdle!" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://darrenwiens.github.io/gourdle.html" />
<meta property="og:image" content="https://darrenwiens.github.io/images/face.png" />
<!-- Enable responsiveness on mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>Darren Wiens</title>
<!-- CSS -->
<link href="//fonts.googleapis.com/" rel="dns-prefetch">
<link href="//fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic|Abril+Fatface|PT+Sans:400,400italic,700&subset=latin,latin-ext" rel="stylesheet">
<link rel="stylesheet" href="https://darrenwiens.github.io/theme/css/poole.css" />
<link rel="stylesheet" href="https://darrenwiens.github.io/theme/css/hyde.css" />
<link rel="stylesheet" href="https://darrenwiens.github.io/theme/css/syntax.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/fork-awesome.min.css" crossorigin="anonymous">
<!-- Feeds -->
<!-- Analytics -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9664J8VT36"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9664J8VT36');
</script>
<!-- Ads -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2681534008399266"
crossorigin="anonymous"></script>
</head>
<body class="theme-base-08">
<div class="sidebar">
<div class="container sidebar-sticky">
<div class="sidebar-about">
<h1>
<a href="/">
<img class="profile-picture" src="https://darrenwiens.github.io/images/face.png">
Darren Wiens
</a>
</h1>
<p class="lead"></p>
<p class="lead"> </p>
<p></p>
</div>
<ul class="sidebar-nav">
</ul>
<nav class="sidebar-social">
<a class="sidebar-social-item" href="http://twitter.com/dkwiens" target="_blank">
<i class="fa fa-twitter"></i>
</a>
<a class="sidebar-social-item" href="https://fosstodon.org/@dkwiens" target="_blank">
<i class="fa fa-mastodon"></i>
</a>
<a class="sidebar-social-item" href="http://github.com/darrenwiens" target="_blank">
<i class="fa fa-github"></i>
</a>
<a style="display:none" class="sidebar-social-item" href="https://darrenwiens.github.io/None">
<i class="fa fa-rss"></i>
</a>
<a rel="me" style="display:none" href="https://fosstodon.org/@dkwiens">Mastodon</a>
</nav>
</div>
</div> <div class="content container">
<div class="post">
<h1 class="post-title">Gourdle!</h1>
<span class="post-date">Sat 12 March 2022</span>
<p>Launched independently in October 2021, <a href="https://www.nytimes.com/games/wordle/index.html">Wordle</a>, now owned by NY Times, has spawned many clones. In fact, my morning routines currently features:</p>
<ul>
<li><a href="https://www.nytimes.com/games/wordle/index.html">Wordle</a> (guess one word!)</li>
<li><a href="https://www.quordle.com/">Quordle</a> (guess four words!)</li>
<li><a href="https://www.heardle.app/">Heardle</a> (guess one song!)</li>
</ul>
<p>Surprisingly, to my delight, as far as I can tell, there is not yet a game called Gourdle<sup><a href="#gourdle_footnote">1</a></sup>, a gourd guessing game! I've made a prototype <a href="https://gist.github.com/darrenwiens/4534408f506118176a4c5fad56f5f7ca">here</a>, with a hardcoded value for a gourd image (making the image dynamic will be part of phase 2, once I've secured funding).</p>
<p><img alt="Gourdle" src="https://darrenwiens.github.io/images/gourdle.gif"></p>
<p><a name="gourdle_footnote">1</a>: There are rumours of a Pokemon named <a href="https://wiki.pokeheroes.com/wiki/Gourdle">Gourdle</a>, however it doesn't seem to be in what I assume is the <a href="https://www.pokemon.com/us/pokedex/">official Pokedex</a>, which I interpret as a legal document, so I should be good from an ownership perspective.</p>
<span class="post-tags">
Tags:
<ul>
<li><a href="https://darrenwiens.github.io/tag/javascript.html">javascript</a></li>
<li><a href="https://darrenwiens.github.io/tag/web-app.html">web app</a></li>
<li><a href="https://darrenwiens.github.io/tag/game.html">game</a></li>
</ul>
</span>
</div>
</div>
</body>
</html>