forked from viresh-ratnakar/viresh-ratnakar.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1043 lines (1012 loc) · 20.5 KB
/
index.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<base target="_parent">
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="exolve-m.css?v1.05"/>
<script src="exolve-m.js?v1.05"></script>
<title>Crossword puzzles By Gussalufz (and doppelgängers, and friends!)</title>
<style>
body {
font-family: monospace;
}
.puzlist {
box-sizing: border-box;
max-height: 400px;
overflow-y: auto;
width: 100%;
}
table {
border-collapse: collapse;
border-spacing: 0;
max-width: 1000px;
}
td {
padding: 10px;
vertical-align: top;
border: 1px solid darkgreen;
border-width: 0 thin 0 thin;
}
.puztitle {
font-weight: bold;
}
.puzdetails {
font-size: x-small;
}
nav * {
margin: 0 20px;
}
#gussalufz-wizard {
position: absolute;
top: 0;
left:0;
width: 15%;
z-index: 1;
max-width: 200px;
}
</style>
<script>
function shadeTable() {
let trs = document.getElementsByTagName('TR')
let parity = 0
for (tr of trs) {
if (parity == 0) {
tr.style.background = 'gainsboro'
}
parity = 1 - parity
}
}
</script>
</head>
<body onload="shadeTable()">
<img id="gussalufz-wizard" alt="Old, cross-looking man holding a grid-wand" src="gussalufz-wizard.png">
<center>
<nav>
<a href="#crosswords">Crosswords</a>
<a href="#exolve">Exolve</a>
<a href="#exet">Exet</a>
<a href="#resources">Resources</a>
<a href="#about">About</a>
<a href="#comments">Comments</a>
</nav>
</center>
<div id="exolve"></div>
<style>
.xlv-prefill {
font-weight: bold;
}
</style>
<script>
function customizeExolve(puz) {
if (puz.id != 'gussalufz-logo') {
return;
}
document.getElementById('xlv1-title').style.display = 'none';
document.getElementById('xlv1-controls-etc').style.display = 'none';
puz.currClueParent.style.display = 'none'
}
createExolve(`
exolve-begin
exolve-id: gussalufz-logo
exolve-title: Gussalufz
exolve-width: 18
exolve-height: 5
exolve-grid:
. 0 . 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 G!U!S!S!A!L!U!F!Z!0 . . . 0 0 0 0
. 0 . 0 0 0 0 0 0 0 0 0 0 0 0 . 0 .
0 0 0 0 . . . 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 . 0 .
exolve-colour: lightgray a4 a2 c2 d2 d3 d5 k3 k4 k5 h1 h2 h3
exolve-colour: lightgray i1 j1 k1 l1 m1 n1 o1 l3 m3 n3 o3 r2 o4 p4 r4
exolve-colour: lightgray e3 e5 f3 f5 g3 g5 h3 h5 i3 i5 j3 j5
exolve-option: colour-prefill:black
exolve-end
`, '', false);
</script>
<center>
<br>
<br>
<a name="crosswords"></a>
<div class="puzlist">
<table>
<!-- ------------------------- -->
<tr>
<td colspan="4">
<h3>Crossword puzzles By Gussalufz (and doppelgängers, and friends!)</h3>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
THC-02-2021
</td>
<td>
April 2021
</td>
<td class="puztitle">
<a href="https://crossword.thehindu.com/crossword/hindu-cryptic">THC #13221 (subscription needed)</a>
<br/>
<br/>
</td>
<td class="puzdetails">
A hidden drawer!
<br/>
<br/>
The Hindu Cryptic #13221, April 14, 2021. Ninas, theme.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
THC-12-2020
</td>
<td>
March 2021
</td>
<td class="puztitle">
<a href="https://crossword.thehindu.com/crossword/hindu-cryptic">THC #13199 (subscription needed)</a>
<br/>
<br/>
</td>
<td class="puzdetails">
Is there a running theme?
<br/>
<br/>
The Hindu Cryptic #13199, March 19, 2021. Ninas, theme.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
THC-11-2020
</td>
<td>
February 2021
</td>
<td class="puztitle">
<a href="https://crossword.thehindu.com/crossword/hindu-cryptic">THC #13172 (subscription needed)</a>
<br/>
<br/>
</td>
<td class="puzdetails">
Hacky...
<br/>
<br/>
The Hindu Cryptic #13172, February 16, 2021. Ninas, theme(s).
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
THC-01-2021
</td>
<td>
January 2021
</td>
<td class="puztitle">
<a href="https://crossword.thehindu.com/crossword/hindu-cryptic">THC #13147 (subscription needed)</a>
<br/>
<br/>
</td>
<td class="puzdetails">
भौतिक विज्ञान
<br/>
<br/>
The Hindu Cryptic #13147, January 18, 2021. Ninas, theme(s).
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
THC-10-2020
</td>
<td>
December 2020
</td>
<td class="puztitle">
<a href="https://crossword.thehindu.com/crossword/hindu-cryptic">THC #13120 (subscription needed)</a>
<br/>
<br/>
</td>
<td class="puzdetails">
Good for the constitution.
<br/>
<br/>
The Hindu Cryptic #13120, December 16, 2020. Nina, pangram.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
ixl-09-2020
</td>
<td>
November 2020
</td>
<td class="puztitle">
<a href="gussalufz-ixl-09-2020-unsolved.html">IXL 2020 City Round</a>
<br/>
<br/>
<a href="gussalufz-ixl-09-2020-solved.html">IXL 2020 City Round (with solutions)</a>
</td>
<td class="puzdetails">
Encouraging words...
<br/>
<br/>
I was the anonymous setter for this IXL 2020 crossword.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
THC-09-2020
</td>
<td>
November 2020
</td>
<td class="puztitle">
<a href="https://crossword.thehindu.com/crossword/hindu-cryptic">THC #13094 (subscription needed)</a>
<br/>
<br/>
</td>
<td class="puzdetails">
Guru aani guruche ...
<br/>
<br/>
The Hindu Cryptic #13094, November 16, 2020. Theme, nina.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
20
</td>
<td>
October 2020
</td>
<td class="puztitle">
<a href="gussalufz-20-unsolved.html">Unlock and find a bug</a>
<br/>
<br/>
<a href="gussalufz-20-solved.html">Unlock and find a bug (with solutions)</a>
</td>
<td class="puzdetails">
Elementary, etc.
<br/>
<br/>
I ran this as another fun competition across a few online groups. Solvers'
comments can be seen after clicking on "Reveal All" in the solved version.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
THC-08-2020
</td>
<td>
October 2020
</td>
<td class="puztitle">
<a href="https://crossword.thehindu.com/crossword/hindu-cryptic">THC #13072 (subscription needed)</a>
<br/>
<br/>
</td>
<td class="puzdetails">
Garam!
<br/>
<br/>
The Hindu Cryptic #13072, October 21, 2020. Theme, nina.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
By Ribelle & Gussalufz
</td>
<td>
September 2020
</td>
<td class="puztitle">
<a href="ribelle-gussalufz-1-unsolved.html">Chain Letters</a>
<br/>
<br/>
<a href="ribelle-gussalufz-1-solved.html">Chain Letters (with solutions)</a>
</td>
<td class="puzdetails">
A puzzle jointly created with <a href="https://twitter.com/FatenIsmail2">Faten Ismail</a>,
a brilliant and natural setter.
<br/>
<br/>
We ran this as a fun competition across a few online groups. Solvers' comments
can be seen after clicking on "Reveal All" in the solved version.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
THC-07-2020
</td>
<td>
September 2020
</td>
<td class="puztitle">
<a href="https://crossword.thehindu.com/crossword/hindu-cryptic">THC #13044 (subscription needed)</a>
<br/>
<br/>
</td>
<td class="puzdetails">
Dr. Who?
<br/>
<br/>
The Hindu Cryptic #13044, September 18, 2020. Theme, nina.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
THC-06-2020
</td>
<td>
August 2020
</td>
<td class="puztitle">
<a href="https://crossword.thehindu.com/crossword/hindu-cryptic">THC #13013 (subscription needed)</a>
<br/>
<br/>
</td>
<td class="puzdetails">
#13013 on August 13: lots of 13s in there, Ghalib!
<br/>
<br/>
The Hindu Cryptic #13013, August 13, 2020. Theme, nina, pangram.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
THC-05-2020
</td>
<td>
July 2020
</td>
<td class="puztitle">
<a href="https://crossword.thehindu.com/crossword/hindu-cryptic">THC #12983 (subscription needed)</a>
<br/>
<br/>
</td>
<td class="puzdetails">
quaquaquaqua
<br/>
<br/>
The Hindu Cryptic #12983, July 9, 2020. Theme, nina.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
21
</td>
<td>
July 2020
</td>
<td class="puztitle">
<a href="gussalufz-21-unsolved.html">Last Solo</a>
<br/>
<br/>
<a href="gussalufz-21-solved.html">Last Solo (with solutions)</a>
</td>
<td class="puzdetails">
Is shahar mein...
<br/>
<br/>
<a href="https://www.losaltosonline.com/news/sections/community/177-features/62809-cryptic-crossword">In the <i>Los Altos Town Crier</i></a>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
THC-04-2020
</td>
<td>
June 2020
</td>
<td class="puztitle">
<a href="https://crossword.thehindu.com/crossword/hindu-cryptic">THC #12950 (subscription needed)</a>
<br/>
<br/>
</td>
<td class="puzdetails">
What connects Bela and Diana?
<br/>
<br/>
The Hindu Cryptic #12950, June 1, 2020. Theme, nina.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
19
</td>
<td>
May 2020
</td>
<td class="puztitle">
<a href="gussalufz-19-unsolved.html">Wormholes</a>
<br/>
<br/>
<a href="gussalufz-19-solved.html">Wormholes (with solutions)</a>
</td>
<td class="puzdetails">
Travellers...
<br/>
<br/>
<a href="http://www.1across.org/2020/WH.html">
In the 1ACross blog</a>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
THC-03-2020
</td>
<td>
April 2020
</td>
<td class="puztitle">
<a href="https://crossword.thehindu.com/crossword/hindu-cryptic">THC #12917 (subscription needed)</a>
<br/>
<br/>
</td>
<td class="puzdetails">
Who is Carwardine?
<br/>
<br/>
The Hindu Cryptic #12917, April 23, 2020. Theme, nina.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
THC-02-2020
</td>
<td>
March 2020
</td>
<td class="puztitle">
<a href="https://crossword.thehindu.com/crossword/hindu-cryptic">THC #12884 (subscription needed)</a>
<br/>
<br/>
</td>
<td class="puzdetails">
I protest!
<br/>
<br/>
The Hindu Cryptic #12884, March 16, 2020. Theme, nina.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
18
</td>
<td>
February 2020
</td>
<td class="puztitle">
<a href="gussalufz-18-unsolved.html">Bar Bar Dekko</a>
<br/>
<br/>
<a href="gussalufz-18-solved.html">Bar Bar Dekko (with solutions)</a>
</td>
<td class="puzdetails">
Reading between lines?
<br/>
<br/>
<a href="http://www.1across.org/2020/02/02/bar-bar-dekko/">
In the 1ACross blog</a>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
THC-01-2020
</td>
<td>
February 2020
</td>
<td class="puztitle">
<a href="https://crossword.thehindu.com/crossword/hindu-cryptic">THC #12852 (subscription needed)</a>
<br/>
<br/>
</td>
<td class="puzdetails">
Thoda khao, ...
<br/>
<br/>
The Hindu Cryptic #12852, Feb 7, 2020. Theme, nina.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
THC-12-2019
</td>
<td>
December 2019
</td>
<td class="puztitle">
<a href="https://crossword.thehindu.com/crossword/hindu-cryptic">THC #12820 (subscription needed)</a>
<br/>
<br/>
</td>
<td class="puzdetails">
Ancient Greek's right...
<br/>
<br/>
My debut as a setter for The Hindu Cryptic (#12820 on Dec 31, 2019).
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
15
</td>
<td>
December 2019
</td>
<td class="puztitle">
<a href="gussalufz-15-unsolved.html">Al's Trick</a>
<br/>
<br/>
<a href="gussalufz-15-solved.html">Al's Trick (with solutions)</a>
</td>
<td class="puzdetails">
Who is Al and what's his trick?
<br/>
<br/>
<a href="http://www.1across.org/2019/11/03/als-trick/">
In the 1ACross blog</a>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
17
</td>
<td>
July 2019
</td>
<td class="puztitle">
<a href="gussalufz-17-unsolved.html">Puzzling Times</a>
<br/>
<br/>
<a href="gussalufz-17-solved.html">Puzzling Times (with solutions)</a>
</td>
<td class="puzdetails">
Sometimes...!
<br/>
<br/>
In the book
<i><a href="http://www.1across.org/book/cc2/">Cryptic Crossroads Volume 2</a></i>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
16
</td>
<td>
July 2019
</td>
<td class="puztitle">
<a href="gussalufz-16-unsolved.html">Untitled Crossword</a>
<br/>
<br/>
<a href="gussalufz-16-solved.html">Untitled Crossword (with solutions)</a>
</td>
<td class="puzdetails">
Ninas foreshadow Exolve!
<br/>
<br/>
<a href="https://thehinducrosswordcorner.blogspot.com/2019/07/special-sunday-07-jul-2019-gussalufz.html">
In THCC
</a>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
14
</td>
<td>
June 2019
</td>
<td class="puztitle">
<a href="gussalufz-14-unsolved.html">Putting Two And Two Together</a>
<br/>
<br/>
<a href="gussalufz-14-solved.html">Putting Two And Two Together (with solutions)</a>
</td>
<td class="puzdetails">
Partly diagramless; metas probably my best.
<br/>
<br/>
<a href="http://www.1across.org/2019/06/30/putting-two-and-two-together/">
In the 1ACross blog
</a>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
13
</td>
<td>
May 2019
</td>
<td class="puztitle">
<a href="gussalufz-13-unsolved.html">Cursory Appearances</a>
<br/>
<br/>
<a href="gussalufz-13-solved.html">Cursory Appearances (with solutions)</a>
</td>
<td class="puzdetails">
Why is "squinting" part of the instructions?
<br/>
<br/>
<a href="http://www.1across.org/2019/04/17/cursory-appearances/">
In the 1ACross blog
</a>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
12
</td>
<td>
January 2019
</td>
<td class="puztitle">
<a href="gussalufz-12-unsolved.html">Fifteen Puzzles</a>
<br/>
<br/>
<a href="gussalufz-12-solved.html">Fifteen Puzzles (with solutions)</a>
</td>
<td class="puzdetails">
What is a fifteen puzzle?
<br/>
<br/>
<a href="http://www.1across.org/2019/01/20/fifteen-puzzles/">
In the 1ACross blog
</a>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
11
</td>
<td>
December 2018
</td>
<td class="puztitle">
<a href="gussalufz-11-unsolved.html">Missing Instructions</a>
<br/>
<br/>
<a href="gussalufz-11-solved.html">Missing Instructions (with solutions)</a>
</td>
<td class="puzdetails">
Find the instructions!
<br/>
<br/>
<a href="http://www.1across.org/2018/11/18/missing-instructions/">
In the 1ACross blog
</a>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
10
</td>
<td>
August 2018
</td>
<td class="puztitle">
<a href="gussalufz-10-unsolved.html">King's Rule</a>
<br/>
<br/>
<a href="gussalufz-10-solved.html">King's Rule (with solutions)</a>
</td>
<td class="puzdetails">
Hhgttg-themed clues, but is that it?
<br/>
<br/>
<a href="http://www.1across.org/2018/08/01/kings-rule/">
In the 1ACross blog
</a>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
8
</td>
<td>
April 2018
</td>
<td class="puztitle">
<a href="gussalufz-8-unsolved.html">Do Squares Reveal?</a>
<br/>
<br/>
<a href="gussalufz-8-solved.html">Do Squares Reveal? (with solutions)</a>
</td>
<td class="puzdetails">
Does the title reveal?
<br/>
<br/>
<a href="https://issuu.com/prestonpages/docs/pp-april18-lr/44">
In Preston Pages
</a>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
5
</td>
<td>
April 2018
</td>
<td class="puztitle">
<a href="gussalufz-5-unsolved.html">French Toast</a>
<br/>
<br/>
<a href="gussalufz-5-solved.html">French Toast (with solutions)</a>
</td>
<td class="puzdetails">
Appropriately numbered puzzle.
<br/>
<br/>
<a href="http://www.1across.org/2018/04/18/french-toast/">
In the 1ACross blog
</a>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
4
</td>
<td>
January 2018
</td>
<td class="puztitle">
<a href="gussalufz-4-unsolved.html">Hidden Figure</a>
<br/>
<br/>
<a href="gussalufz-4-solved.html">Hidden Figure (with solutions)</a>
</td>
<td class="puzdetails">
Rocket scientist needed.
<br/>
<br/>
<a href="http://www.1across.org/2018/01/24/hidden-figure/">
In the 1ACross blog
</a>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
3
</td>
<td>
December 2017
</td>
<td class="puztitle">
<a href="gussalufz-3-unsolved.html">Smashing Plates</a>
<br/>
<br/>
<a href="gussalufz-3-solved.html">Smashing Plates (with solutions)</a>
</td>
<td class="puzdetails">
Moving puzzle.
<br/>
<br/>
<a href="http://www.1across.org/2017/11/22/smashing-plates/">
In the 1ACross blog
</a>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
-
</td>
<td>
September 2017
</td>
<td class="puztitle">
<a href="ragitvach-1-unsolved.html">22⅘ Across</a>
<br/>
<br/>
<a href="ragitvach-1-solved.html">22⅘ Across (with solutions)</a>
</td>
<td class="puzdetails">
Fractionally crazy.
<br/>
<br/>
<a href="http://www.1across.org/2017/09/23/1acgridfest-grid-9/">
In the 1ACross blog
</a>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
2
</td>
<td>
July 2017
</td>
<td class="puztitle">
<a href="gussalufz-2-unsolved.html">Many Rustams</a>
<br/>
<br/>
<a href="gussalufz-2-solved.html">Many Rustams (with solutions)</a>
</td>
<td class="puzdetails">
Lots hidden!
<br/>
<br/>
In the book, <i><a href="https://books.google.com/books/about/Cryptic_Crossroads.html?id=kLUzDwAAQBAJ">Cryptic Crossroads</a></i>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
1
</td>
<td>
June 2016
</td>
<td class="puztitle">
<a href="gussalufz-1-unsolved.html">Gussalufz</a>
<br/>
<br/>
<a href="gussalufz-1-solved.html">Gussalufz (with solutions)</a>
</td>
<td class="puzdetails">
My first grid after at least 10 years.
<br/>
<br/>
In the 1ACross Facebook group
</td>
</tr>
</table>
</div>
<br>
<br>
<a name="resources"></a>
<table>
<!-- ------------------------- -->
<tr>
<td colspan=2>
<h3>Links to crossword resources</h3>
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
<a name="exolve" href="https://github.com/viresh-ratnakar/exolve">Exolve</a>
</td>
<td>
Free open source software (MIT License) for setting up interactively
solvable crosswords. All my puzzles above are powered by it. I have
developed this software and I actively maintain it. The link
takes you to the Exolve GitHub project that includes a detailed README
file with instructions.
<br>
<br>
Also, here's an
<a href="https://viresh-ratnakar.github.io/exolve-player.html">Exolve-based
player</a> that works with Exolve as well as ipuz and .puz files.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
<a name="exet" href="exet.html">Exet</a>
</td>
<td>
Free open source software (MIT License) for constructing crosswords.
You can save the crosswords as Exolve files as well as .puz files.
I have developed this software and I actively maintain it. You can
directly start using the web app link given to the left, or you can
access the
<a href="https://github.com/viresh-ratnakar/exet">Exet GitHub project</a>
for the source code and documentation.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
<a href="https://www.crosswordunclued.com">Crossword Unclued</a>
</td>
<td>
@ShuchiU's blog with excellent articles on various aspects of cryptic
crosswords, including nice compilations of lists of indicator words.
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
<a href="http://bigdave44.com/">Big Dave's Crossword Blog</a>
</td>
<td>
Blog articles on Daily and Sunday Telegraph cryptic crosswords.
Many other interesting sections (such as an annotated list of mythological
characters).
</td>
</tr>
<!-- ------------------------- -->
<tr>
<td>
<a href="http://www.fifteensquared.net/">Fifteensquared</a>
</td>
<td>
Daily analysis of most British newspaper cryptic crosswords. If I come up with
an indicator that I'm not sure of, I search in this site to see if someone
else has pulled off the same trick previously, without inviting ridicule.
</td>
</tr>
</table>
<br>
<br>
<a name="about"></a>
<table>
<!-- ------------------------- -->
<tr>
<td colspan=2>
<h3>About</h3>