-
Notifications
You must be signed in to change notification settings - Fork 0
/
bundle.js
2103 lines (2004 loc) · 46 KB
/
bundle.js
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
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
"use strict";
// this script uses the write-good library to check
// HTML paragraphs for good writing style
// see https://github.com/btford/write-good for more details
const schreibGut = require('schreib-gut');
const writeGood = require('write-good');
function applyWriteGood() {
let paragraphs = document.getElementsByTagName("p");
let stats = {'oice': 0, 'iage': 0, 'eded': 0, 'ning': 0, 'iche': 0, 'ated': 0, 'word': 0};
const names = {
'oice': 'passive voice',
'iage': 'unnecessary verbiage',
'eded': 'wordy or unneeded',
'ning': 'no meaning',
'iche': 'cliché',
'ated': 'repeated word',
'word': 'weasel word'
};
[].forEach.call(paragraphs, function (paragraph) {
let text = paragraph.textContent;
let suggestions = writeGood(text);
let numSuggestions = document.createElement("span");
numSuggestions.innerHTML = suggestions.length;
paragraph.appendChild(numSuggestions);
let highlighted = "";
let lastIndex = 0;
[].forEach.call(suggestions, function (suggestion) {
console.log(suggestion)
highlighted += text.substr(lastIndex, suggestion.index - lastIndex);
let reason = suggestion.reason;
let type = reason.substr(reason.length - 4);
highlighted += "<span class='mark wg-" + type + "'>";
highlighted += text.substr(suggestion.index, suggestion.offset);
highlighted += "<span class='reason'>" + reason + "</span></span>";
lastIndex = suggestion.index + suggestion.offset;
stats[type] += 1;
});
highlighted += text.substr(lastIndex, text.length - lastIndex);
paragraph.innerHTML = highlighted
});
let output = "";
for (let key in stats) {
console.log(stats[key]);
output += "<tr><td>" + stats[key] + " x</td><td><span class='wg-" + key + "'>" + names[key] + "</span></td></tr>";
}
;
let wgtable = document.getElementById('writegoodtd');
wgtable.innerHTML = output;
}
document.addEventListener("DOMContentLoaded", function() {
// applyWriteGood();
var oldProcessLinks = __IntelliJTools && __IntelliJTools.processLinks;
// if this is in the preview window in the IDE, run the checks
if (oldProcessLinks) {
__IntelliJTools.processLinks = function() {
oldProcessLinks();
applyWriteGood();
}
}
});
},{"schreib-gut":8,"write-good":19}],2:[function(require,module,exports){
const adverbs = [
'absolutel',
'accidentall',
'additionall',
'allegedl',
'alternativel',
'angril',
'anxiousl',
'approximatel',
'awkwardl',
'badl',
'barel',
'beautifull',
'blindl',
'boldl',
'bravel',
'brightl',
'briskl',
'bristl',
'bubbl',
'busil',
'calml',
'carefull',
'carelessl',
'cautiousl',
'cheerfull',
'clearl',
'closel',
'coldl',
'completel',
'consequentl',
'correctl',
'courageousl',
'crinkl',
'cruell',
'crumbl',
'cuddl',
'currentl',
'daringl',
'deadl',
'definitel',
'deliberatel',
'doubtfull',
'dumbl',
'eagerl',
'earl',
'easil',
'elegantl',
'enormousl',
'enthusiasticall',
'equall',
'especiall',
'eventuall',
'exactl',
'exceedingl',
'exclusivel',
'extremel',
'fairl',
'faithfull',
'fatall',
'fiercel',
'finall',
'fondl',
'foolishl',
'fortunatel',
'frankl',
'franticall',
'generousl',
'gentl',
'giggl',
'gladl',
'gracefull',
'greedil',
'happil',
'hardl',
'hastil',
'healthil',
'heartil',
'helpfull',
'honestl',
'hourl',
'hungril',
'hurriedl',
'immediatel',
'impatientl',
'inadequatel',
'ingeniousl',
'innocentl',
'inquisitivel',
'interestingl',
'irritabl',
'jiggl',
'joyousl',
'justl',
'kindl',
'largel',
'latel',
'lazil',
'likel',
'literall',
'lonel',
'loosel',
'loudl',
'loudl',
'luckil',
'madl',
'man',
'mentall',
'mildl',
'mortall',
'mostl',
'mysteriousl',
'neatl',
'nervousl',
'noisil',
'normall',
'obedientl',
'occasionall',
'onl',
'openl',
'painfull',
'particularl',
'patientl',
'perfectl',
'politel',
'poorl',
'powerfull',
'presumabl',
'previousl',
'promptl',
'punctuall',
'quarterl',
'quickl',
'quietl',
'rapidl',
'rarel',
'reall',
'recentl',
'recklessl',
'regularl',
'relativel',
'reluctantl',
'remarkabl',
'repeatedl',
'rightfull',
'roughl',
'rudel',
'sadl',
'safel',
'selfishl',
'sensibl',
'seriousl',
'sharpl',
'shortl',
'shyl',
'significantl',
'silentl',
'simpl',
'sleepil',
'slowl',
'smartl',
'smell',
'smoothl',
'softl',
'solemnl',
'sparkl',
'speedil',
'stealthil',
'sternl',
'stupidl',
'substantiall',
'successfull',
'suddenl',
'surprisingl',
'suspiciousl',
'swiftl',
'tenderl',
'tensel',
'thoughtfull',
'tightl',
'timel',
'truthfull',
'unexpectedl',
'unfortunatel',
'usuall',
'ver',
'victoriousl',
'violentl',
'vivaciousl',
'warml',
'waverl',
'weakl',
'wearil',
'wildl',
'wisel',
'worldl',
'wrinkl'
];
const weakens = [
'just',
'maybe',
'stuff',
'things'
];
const adverbRegex = new RegExp(
`${'\\b('
+ '('}${adverbs.join('|')})(y)`
+ `|(${weakens.join('|')}))\\b`, 'gi'
);
const matcher = require('./matcher');
module.exports = function matchAdverbs(text) {
return matcher(adverbRegex, text);
};
},{"./matcher":3}],3:[function(require,module,exports){
function matcher(regex, text) {
const results = [];
let result = regex.exec(text);
while (result) {
results.push({ index: result.index, offset: result[0].length });
result = regex.exec(text);
}
return results;
}
module.exports = matcher;
},{}],4:[function(require,module,exports){
var toBe = [
'am',
'are',
'aren\'t',
'be',
'been',
'being',
'he\'s',
'here\'s',
'here\'s',
'how\'s',
'i\'m',
'is',
'isn\'t',
'it\'s',
'she\'s',
'that\'s',
'there\'s',
'they\'re',
'was',
'wasn\'t',
'we\'re',
'were',
'weren\'t',
'what\'s',
'where\'s',
'who\'s',
'you\'re'
];
var re = new RegExp('\\b(' + toBe.join('|') + ')\\b', 'gi');
module.exports = function (text) {
var suggestions = [];
if (!text || text.length === 0) return suggestions;
text = text.replace(/[\u2018\u2019]/g, "'"); // convert smart quotes
while (match = re.exec(text)) {
var be = match[0].toLowerCase();
suggestions.push({
index: match.index,
offset: be.length
});
}
return suggestions;
};
},{}],5:[function(require,module,exports){
const cliches = [
'a chip off the old block',
'a clean slate',
'a dark and stormy night',
'a far cry',
'a fine kettle of fish',
'a loose cannon',
'a penny saved is a penny earned',
'a tough row to hoe',
'a word to the wise',
'ace in the hole',
'acid test',
'add insult to injury',
'against all odds',
'air your dirty laundry',
'all fun and games',
'all in a day\'s work',
'all talk, no action',
'all thumbs',
'all your eggs in one basket',
'all\'s fair in love and war',
'all\'s well that ends well',
'almighty dollar',
'American as apple pie',
'an axe to grind',
'another day, another dollar',
'armed to the teeth',
'as luck would have it',
'as old as time',
'as the crow flies',
'at loose ends',
'at my wits end',
'avoid like the plague',
'babe in the woods',
'back against the wall',
'back in the saddle',
'back to square one',
'back to the drawing board',
'bad to the bone',
'badge of honor',
'bald faced liar',
'ballpark figure',
'banging your head against a brick wall',
'baptism by fire',
'barking up the wrong tree',
'bat out of hell',
'be all and end all',
'beat a dead horse',
'beat around the bush',
'been there, done that',
'beggars can\'t be choosers',
'behind the eight ball',
'bend over backwards',
'benefit of the doubt',
'bent out of shape',
'best thing since sliced bread',
'bet your bottom dollar',
'better half',
'better late than never',
'better mousetrap',
'better safe than sorry',
'between a rock and a hard place',
'beyond the pale',
'bide your time',
'big as life',
'big cheese',
'big fish in a small pond',
'big man on campus',
'bigger they are the harder they fall',
'bird in the hand',
'bird\'s eye view',
'birds and the bees',
'birds of a feather flock together',
'bit the hand that feeds you',
'bite the bullet',
'bite the dust',
'bitten off more than he can chew',
'black as coal',
'black as pitch',
'black as the ace of spades',
'blast from the past',
'bleeding heart',
'blessing in disguise',
'blind ambition',
'blind as a bat',
'blind leading the blind',
'blood is thicker than water',
'blood sweat and tears',
'blow off steam',
'blow your own horn',
'blushing bride',
'boils down to',
'bolt from the blue',
'bone to pick',
'bored stiff',
'bored to tears',
'bottomless pit',
'boys will be boys',
'bright and early',
'brings home the bacon',
'broad across the beam',
'broken record',
'brought back to reality',
'bull by the horns',
'bull in a china shop',
'burn the midnight oil',
'burning question',
'burning the candle at both ends',
'burst your bubble',
'bury the hatchet',
'busy as a bee',
'by hook or by crook',
'call a spade a spade',
'called onto the carpet',
'calm before the storm',
'can of worms',
'can\'t cut the mustard',
'can\'t hold a candle to',
'case of mistaken identity',
'cat got your tongue',
'cat\'s meow',
'caught in the crossfire',
'caught red-handed',
'checkered past',
'chomping at the bit',
'cleanliness is next to godliness',
'clear as a bell',
'clear as mud',
'close to the vest',
'cock and bull story',
'cold shoulder',
'come hell or high water',
'cool as a cucumber',
'cool, calm, and collected',
'cost a king\'s ransom',
'count your blessings',
'crack of dawn',
'crash course',
'creature comforts',
'cross that bridge when you come to it',
'crushing blow',
'cry like a baby',
'cry me a river',
'cry over spilt milk',
'crystal clear',
'curiosity killed the cat',
'cut and dried',
'cut through the red tape',
'cut to the chase',
'cute as a bugs ear',
'cute as a button',
'cute as a puppy',
'cuts to the quick',
'dark before the dawn',
'day in, day out',
'dead as a doornail',
'devil is in the details',
'dime a dozen',
'divide and conquer',
'dog and pony show',
'dog days',
'dog eat dog',
'dog tired',
'don\'t burn your bridges',
'don\'t count your chickens',
'don\'t look a gift horse in the mouth',
'don\'t rock the boat',
'don\'t step on anyone\'s toes',
'don\'t take any wooden nickels',
'down and out',
'down at the heels',
'down in the dumps',
'down the hatch',
'down to earth',
'draw the line',
'dressed to kill',
'dressed to the nines',
'drives me up the wall',
'dull as dishwater',
'dyed in the wool',
'eagle eye',
'ear to the ground',
'early bird catches the worm',
'easier said than done',
'easy as pie',
'eat your heart out',
'eat your words',
'eleventh hour',
'even the playing field',
'every dog has its day',
'every fiber of my being',
'everything but the kitchen sink',
'eye for an eye',
'face the music',
'facts of life',
'fair weather friend',
'fall by the wayside',
'fan the flames',
'feast or famine',
'feather your nest',
'feathered friends',
'few and far between',
'fifteen minutes of fame',
'filthy vermin',
'fine kettle of fish',
'fish out of water',
'fishing for a compliment',
'fit as a fiddle',
'fit the bill',
'fit to be tied',
'flash in the pan',
'flat as a pancake',
'flip your lid',
'flog a dead horse',
'fly by night',
'fly the coop',
'follow your heart',
'for all intents and purposes',
'for the birds',
'for what it\'s worth',
'force of nature',
'force to be reckoned with',
'forgive and forget',
'fox in the henhouse',
'free and easy',
'free as a bird',
'fresh as a daisy',
'full steam ahead',
'fun in the sun',
'garbage in, garbage out',
'gentle as a lamb',
'get a kick out of',
'get a leg up',
'get down and dirty',
'get the lead out',
'get to the bottom of',
'get your feet wet',
'gets my goat',
'gilding the lily',
'give and take',
'go against the grain',
'go at it tooth and nail',
'go for broke',
'go him one better',
'go the extra mile',
'go with the flow',
'goes without saying',
'good as gold',
'good deed for the day',
'good things come to those who wait',
'good time was had by all',
'good times were had by all',
'greased lightning',
'greek to me',
'green thumb',
'green-eyed monster',
'grist for the mill',
'growing like a weed',
'hair of the dog',
'hand to mouth',
'happy as a clam',
'happy as a lark',
'hasn\'t a clue',
'have a nice day',
'have high hopes',
'have the last laugh',
'haven\'t got a row to hoe',
'head honcho',
'head over heels',
'hear a pin drop',
'heard it through the grapevine',
'heart\'s content',
'heavy as lead',
'hem and haw',
'high and dry',
'high and mighty',
'high as a kite',
'hit paydirt',
'hold your head up high',
'hold your horses',
'hold your own',
'hold your tongue',
'honest as the day is long',
'horns of a dilemma',
'horse of a different color',
'hot under the collar',
'hour of need',
'I beg to differ',
'icing on the cake',
'if the shoe fits',
'if the shoe were on the other foot',
'in a jam',
'in a jiffy',
'in a nutshell',
'in a pig\'s eye',
'in a pinch',
'in a word',
'in hot water',
'in the gutter',
'in the nick of time',
'in the thick of it',
'in your dreams',
'it ain\'t over till the fat lady sings',
'it goes without saying',
'it takes all kinds',
'it takes one to know one',
'it\'s a small world',
'it\'s only a matter of time',
'ivory tower',
'Jack of all trades',
'jockey for position',
'jog your memory',
'joined at the hip',
'judge a book by its cover',
'jump down your throat',
'jump in with both feet',
'jump on the bandwagon',
'jump the gun',
'jump to conclusions',
'just a hop, skip, and a jump',
'just the ticket',
'justice is blind',
'keep a stiff upper lip',
'keep an eye on',
'keep it simple, stupid',
'keep the home fires burning',
'keep up with the Joneses',
'keep your chin up',
'keep your fingers crossed',
'kick the bucket',
'kick up your heels',
'kick your feet up',
'kid in a candy store',
'kill two birds with one stone',
'kiss of death',
'knock it out of the park',
'knock on wood',
'knock your socks off',
'know him from Adam',
'know the ropes',
'know the score',
'knuckle down',
'knuckle sandwich',
'knuckle under',
'labor of love',
'ladder of success',
'land on your feet',
'lap of luxury',
'last but not least',
'last hurrah',
'last-ditch effort',
'law of the jungle',
'law of the land',
'lay down the law',
'leaps and bounds',
'let sleeping dogs lie',
'let the cat out of the bag',
'let the good times roll',
'let your hair down',
'let\'s talk turkey',
'letter perfect',
'lick your wounds',
'lies like a rug',
'life\'s a bitch',
'life\'s a grind',
'light at the end of the tunnel',
'lighter than a feather',
'lighter than air',
'like clockwork',
'like father like son',
'like taking candy from a baby',
'like there\'s no tomorrow',
'lion\'s share',
'live and learn',
'live and let live',
'long and short of it',
'long lost love',
'look before you leap',
'look down your nose',
'look what the cat dragged in',
'looking a gift horse in the mouth',
'looks like death warmed over',
'loose cannon',
'lose your head',
'lose your temper',
'loud as a horn',
'lounge lizard',
'loved and lost',
'low man on the totem pole',
'luck of the draw',
'luck of the Irish',
'make hay while the sun shines',
'make money hand over fist',
'make my day',
'make the best of a bad situation',
'make the best of it',
'make your blood boil',
'man of few words',
'man\'s best friend',
'mark my words',
'meaningful dialogue',
'missed the boat on that one',
'moment in the sun',
'moment of glory',
'moment of truth',
'money to burn',
'more power to you',
'more than one way to skin a cat',
'movers and shakers',
'moving experience',
'naked as a jaybird',
'naked truth',
'neat as a pin',
'needle in a haystack',
'needless to say',
'neither here nor there',
'never look back',
'never say never',
'nip and tuck',
'nip it in the bud',
'no guts, no glory',
'no love lost',
'no pain, no gain',
'no skin off my back',
'no stone unturned',
'no time like the present',
'no use crying over spilled milk',
'nose to the grindstone',
'not a hope in hell',
'not a minute\'s peace',
'not in my backyard',
'not playing with a full deck',
'not the end of the world',
'not written in stone',
'nothing to sneeze at',
'nothing ventured nothing gained',
'now we\'re cooking',
'off the top of my head',
'off the wagon',
'off the wall',
'old hat',
'older and wiser',
'older than dirt',
'older than Methuselah',
'on a roll',
'on cloud nine',
'on pins and needles',
'on the bandwagon',
'on the money',
'on the nose',
'on the rocks',
'on the spot',
'on the tip of my tongue',
'on the wagon',
'on thin ice',
'once bitten, twice shy',
'one bad apple doesn\'t spoil the bushel',
'one born every minute',
'one brick short',
'one foot in the grave',
'one in a million',
'one red cent',
'only game in town',
'open a can of worms',
'open and shut case',
'open the flood gates',
'opportunity doesn\'t knock twice',
'out of pocket',
'out of sight, out of mind',
'out of the frying pan into the fire',
'out of the woods',
'out on a limb',
'over a barrel',
'over the hump',
'pain and suffering',
'pain in the',
'panic button',
'par for the course',
'part and parcel',
'party pooper',
'pass the buck',
'patience is a virtue',
'pay through the nose',
'penny pincher',
'perfect storm',
'pig in a poke',
'pile it on',
'pillar of the community',
'pin your hopes on',
'pitter patter of little feet',
'plain as day',
'plain as the nose on your face',
'play by the rules',
'play your cards right',
'playing the field',
'playing with fire',
'pleased as punch',
'plenty of fish in the sea',
'point with pride',
'poor as a church mouse',
'pot calling the kettle black',
'pretty as a picture',
'pull a fast one',
'pull your punches',
'pulling your leg',
'pure as the driven snow',
'put it in a nutshell',
'put one over on you',
'put the cart before the horse',
'put the pedal to the metal',
'put your best foot forward',
'put your foot down',
'quick as a bunny',
'quick as a lick',
'quick as a wink',
'quick as lightning',
'quiet as a dormouse',
'rags to riches',
'raining buckets',
'raining cats and dogs',
'rank and file',
'rat race',
'reap what you sow',
'red as a beet',
'red herring',
'reinvent the wheel',
'rich and famous',
'rings a bell',
'ripe old age',
'ripped me off',
'rise and shine',
'road to hell is paved with good intentions',
'rob Peter to pay Paul',
'roll over in the grave',
'rub the wrong way',
'ruled the roost',
'running in circles',
'sad but true',
'sadder but wiser',
'salt of the earth',
'scared stiff',
'scared to death',
'sealed with a kiss',
'second to none',
'see eye to eye',
'seen the light',
'seize the day',
'set the record straight',
'set the world on fire',
'set your teeth on edge',
'sharp as a tack',
'shoot for the moon',
'shoot the breeze',
'shot in the dark',
'shoulder to the wheel',
'sick as a dog',
'sigh of relief',
'signed, sealed, and delivered',
'sink or swim',
'six of one, half a dozen of another',
'skating on thin ice',
'slept like a log',
'slinging mud',
'slippery as an eel',
'slow as molasses',
'smart as a whip',
'smooth as a baby\'s bottom',
'sneaking suspicion',
'snug as a bug in a rug',
'sow wild oats',
'spare the rod, spoil the child',
'speak of the devil',
'spilled the beans',
'spinning your wheels',
'spitting image of',
'spoke with relish',
'spread like wildfire',
'spring to life',
'squeaky wheel gets the grease',
'stands out like a sore thumb',
'start from scratch',
'stick in the mud',
'still waters run deep',
'stitch in time',
'stop and smell the roses',
'straight as an arrow',
'straw that broke the camel\'s back',
'strong as an ox',
'stubborn as a mule',
'stuff that dreams are made of',
'stuffed shirt',
'sweating blood',
'sweating bullets',
'take a load off',
'take one for the team',
'take the bait',
'take the bull by the horns',
'take the plunge',
'takes one to know one',
'takes two to tango',
'the more the merrier',
'the real deal',
'the real McCoy',
'the red carpet treatment',
'the same old story',
'there is no accounting for taste',
'thick as a brick',
'thick as thieves',
'thin as a rail',
'think outside of the box',
'third time\'s the charm',
'this day and age',
'this hurts me worse than it hurts you',
'this point in time',
'three sheets to the wind',
'through thick and thin',
'throw in the towel',
'tie one on',
'tighter than a drum',
'time and time again',
'time is of the essence',
'tip of the iceberg',
'tired but happy',
'to coin a phrase',
'to each his own',
'to make a long story short',
'to the best of my knowledge',
'toe the line',
'tongue in cheek',
'too good to be true',
'too hot to handle',
'too numerous to mention',
'touch with a ten foot pole',
'tough as nails',
'trial and error',
'trials and tribulations',
'tried and true',
'trip down memory lane',
'twist of fate',
'two cents worth',
'two peas in a pod',
'ugly as sin',
'under the counter',
'under the gun',
'under the same roof',
'under the weather',
'until the cows come home',
'unvarnished truth',
'up the creek',
'uphill battle',
'upper crust',