-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslangData.js
More file actions
2863 lines (2841 loc) · 135 KB
/
Copy pathslangData.js
File metadata and controls
2863 lines (2841 loc) · 135 KB
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
// Comprehensive Slang Dictionary Database - 100+ Terms
const slangCategories = ['all', 'trending', 'compliment', 'criticism', 'internet', 'emotion', 'common'];
const slangDictionary = {
// Core Slang Terms
"rizz": {
definition: "Charisma or charm, especially the ability to attract romantic interest. The art of being smooth with people you're attracted to.",
emoji: "😏",
example: "He's got so much rizz, he got her number in 2 minutes",
tags: ["compliment", "2023"],
reverse: ["charm", "charisma", "game", "flirting skills"]
},
"unspoken rizz": {
definition: "The ability to attract someone without saying a word, purely through looks, body language, or presence.",
emoji: "🤫",
example: "He walked in and she was already interested - that's unspoken rizz",
tags: ["compliment"],
reverse: ["silent charm", "natural attractiveness"]
},
"skibidi": {
definition: "Originally from a viral video series 'Skibidi Toilet'. Used as a nonsense word or to describe something weird, chaotic, or absurd. Often used ironically.",
emoji: "🚽",
example: "That whole situation was so skibidi bro",
tags: ["meme", "internet", "2023"],
reverse: ["weird", "absurd", "chaotic", "random"]
},
"ohio": {
definition: "Used to describe something extremely weird, cursed, or inexplicable. Comes from the meme 'Only in Ohio' suggesting strange things happen there.",
emoji: "🌽",
example: "Bro saw a raccoon driving a car, that's so Ohio",
tags: ["meme", "weird", "2023"],
reverse: ["weird", "strange", "cursed", "inexplicable"]
},
"lowkey": {
definition: "Subtly, secretly, or to a moderate degree. Used to downplay or soften a statement.",
emoji: "🤐",
example: "I lowkey want to leave this party",
tags: ["common", "modifier"],
reverse: ["kind of", "secretly", "subtly", "a little bit"]
},
"highkey": {
definition: "Openly, obviously, or intensely. The opposite of lowkey - used to emphasize something strongly.",
emoji: "📢",
example: "I highkey need a vacation right now",
tags: ["common", "modifier"],
reverse: ["really", "definitely", "openly", "very much"]
},
"no cap": {
definition: "No lie, for real, I'm being completely honest. Used to emphasize truthfulness.",
emoji: "🧢",
example: "No cap, that was the best movie I've ever seen",
tags: ["common", "emphasis"],
reverse: ["no lie", "for real", "honestly", "I'm serious"]
},
"cap": {
definition: "A lie or to lie. Calling something 'cap' means you think it's false.",
emoji: "🧢",
example: "That story is cap, there's no way that happened",
tags: ["common"],
reverse: ["lie", "false", "not true", "BS"]
},
"bussin": {
definition: "Really good, especially when describing food. Can also mean something is excellent or amazing.",
emoji: "😋",
example: "This pizza is bussin fr fr",
tags: ["food", "compliment"],
reverse: ["delicious", "amazing", "really good", "excellent"]
},
"fr fr": {
definition: "For real for real. Double emphasis on being serious or genuine about something.",
emoji: "💯",
example: "I need to start working out fr fr",
tags: ["emphasis", "common"],
reverse: ["for real", "seriously", "I mean it", "genuinely"]
},
"bet": {
definition: "Okay, sure, sounds good. Used to agree with someone or confirm a plan.",
emoji: "🤝",
example: "Wanna grab food later? Bet.",
tags: ["agreement", "common"],
reverse: ["okay", "sure", "sounds good", "deal", "alright"]
},
"slay": {
definition: "To do something exceptionally well, to look amazing, or to succeed impressively.",
emoji: "💅",
example: "You absolutely slayed that presentation!",
tags: ["compliment", "success"],
reverse: ["did amazing", "killed it", "nailed it", "succeeded"]
},
"era": {
definition: "A phase or period in someone's life defined by a particular mindset, aesthetic, or behavior.",
emoji: "✨",
example: "I'm in my villain era, I'm done being nice",
tags: ["personality", "phase"],
reverse: ["phase", "period", "chapter", "stage of life"]
},
"ate": {
definition: "Did something really well, performed excellently. Past tense of 'eating' (slaying).",
emoji: "🍽️",
example: "She ate that performance and left no crumbs",
tags: ["compliment", "success"],
reverse: ["did amazing", "performed perfectly", "nailed it"]
},
"left no crumbs": {
definition: "Did something so perfectly there's nothing to criticize. Complete and flawless execution.",
emoji: "✨",
example: "That outfit? She ate and left no crumbs",
tags: ["compliment", "perfect"],
reverse: ["did it perfectly", "flawless", "nothing to criticize"]
},
"mid": {
definition: "Mediocre, average, nothing special. Used to express disappointment or that something is underwhelming.",
emoji: "😐",
example: "The new album is kinda mid tbh",
tags: ["criticism", "opinion"],
reverse: ["mediocre", "average", "nothing special", "underwhelming"]
},
"fire": {
definition: "Amazing, excellent, really cool. High praise for something impressive.",
emoji: "🔥",
example: "That new song is straight fire",
tags: ["compliment", "common"],
reverse: ["amazing", "excellent", "really cool", "awesome"]
},
"sus": {
definition: "Suspicious or suspect. Something or someone seems off or untrustworthy.",
emoji: "🤨",
example: "He's been acting real sus lately",
tags: ["suspicious", "common"],
reverse: ["suspicious", "sketchy", "questionable", "shady"]
},
"valid": {
definition: "Acceptable, good, or makes sense. Used to approve of something or acknowledge a point.",
emoji: "✅",
example: "Your concerns are valid, I get it",
tags: ["approval", "common"],
reverse: ["acceptable", "makes sense", "understandable", "fair"]
},
"based": {
definition: "Authentic, unapologetically oneself, or having a bold opinion regardless of what others think.",
emoji: "👑",
example: "That's a based take, I respect it",
tags: ["compliment", "opinion"],
reverse: ["authentic", "bold", "unapologetic", "real"]
},
"W": {
definition: "Win. Something good or a success. Can also mean 'that's great' or 'good job'.",
emoji: "🏆",
example: "Got the job! That's a huge W",
tags: ["success", "common"],
reverse: ["win", "success", "good thing", "victory"]
},
"L": {
definition: "Loss or failure. Something bad or an embarrassing situation.",
emoji: "😔",
example: "Tripped in front of my crush, massive L",
tags: ["failure", "common"],
reverse: ["loss", "failure", "bad thing", "embarrassment"]
},
"ick": {
definition: "A sudden feeling of disgust or turn-off about someone, often for a small or irrational reason.",
emoji: "🤢",
example: "He said 'yummy' and I got the ick immediately",
tags: ["disgust"],
reverse: ["turn-off", "disgust", "sudden repulsion"]
},
"simp": {
definition: "Someone who does way too much for someone they like, often without getting anything in return.",
emoji: "🥺",
example: "He bought her a car and they're not even dating, total simp",
tags: ["criticism"],
reverse: ["someone who tries too hard", "overly devoted person"]
},
"stan": {
definition: "An extremely devoted fan. To 'stan' someone means to support them enthusiastically.",
emoji: "🙌",
example: "I stan Taylor Swift, no shame",
tags: ["fandom", "support"],
reverse: ["superfan", "devoted supporter", "enthusiastically support"]
},
"snatched": {
definition: "Looking really good, on point. Often used to describe appearance or fashion.",
emoji: "💫",
example: "Your makeup is absolutely snatched today",
tags: ["compliment", "appearance"],
reverse: ["on point", "looking perfect", "flawless look"]
},
"vibe": {
definition: "The feeling or atmosphere of a place/person/thing. Also means to relax or enjoy something.",
emoji: "🌊",
example: "This place has such good vibes",
tags: ["feeling", "common"],
reverse: ["feeling", "atmosphere", "energy", "mood"]
},
"vibe check": {
definition: "Assessing the mood or energy of a situation or person.",
emoji: "🔍",
example: "Let me do a quick vibe check on the party",
tags: ["assessment", "common"],
reverse: ["mood assessment", "checking the atmosphere"]
},
"rent free": {
definition: "When something or someone constantly occupies your thoughts without effort.",
emoji: "🧠",
example: "That embarrassing moment lives rent free in my head",
tags: ["thoughts", "obsession"],
reverse: ["constantly thinking about", "can't stop thinking about"]
},
"hits different": {
definition: "Something feels unique or especially meaningful in a particular context.",
emoji: "💫",
example: "Music hits different at 3am",
tags: ["feeling", "unique"],
reverse: ["feels special", "feels different", "uniquely meaningful"]
},
"understood the assignment": {
definition: "Someone knew exactly what to do and executed it perfectly.",
emoji: "📝",
example: "Her Met Gala outfit? She understood the assignment",
tags: ["compliment", "success"],
reverse: ["knew exactly what to do", "did it perfectly"]
},
"main character": {
definition: "Living life as if you're the protagonist of a movie. Self-focused in a confident way.",
emoji: "🎬",
example: "Walking through the city with my coffee, feeling like the main character",
tags: ["confidence", "aesthetic"],
reverse: ["protagonist mindset", "center of attention", "living confidently"]
},
"npc": {
definition: "Non-playable character. Someone who seems to lack original thought or personality, like a background character.",
emoji: "🤖",
example: "Those people just follow trends, total NPCs",
tags: ["criticism", "gaming"],
reverse: ["background person", "someone with no personality", "follower"]
},
"touch grass": {
definition: "Go outside and experience real life. Usually said to someone spending too much time online.",
emoji: "🌿",
example: "You've been arguing on Twitter for 6 hours, go touch grass",
tags: ["criticism", "internet"],
reverse: ["go outside", "get off the internet", "experience real life"]
},
"salty": {
definition: "Bitter, upset, or annoyed, especially about a loss or something trivial.",
emoji: "🧂",
example: "Stop being so salty just because you lost the game",
tags: ["emotion", "common"],
reverse: ["bitter", "upset", "annoyed", "resentful"]
},
"dead": {
definition: "Finding something extremely funny. Short for 'I'm dead laughing'.",
emoji: "💀",
example: "That meme has me dead 💀",
tags: ["humor", "common"],
reverse: ["that's hilarious", "I'm laughing so hard", "so funny"]
},
"ghosting": {
definition: "Suddenly cutting off all communication with someone without explanation.",
emoji: "👻",
example: "He just stopped replying, totally ghosted me",
tags: ["communication"],
reverse: ["ignoring someone", "disappearing", "cutting contact"]
},
"periodt": {
definition: "Period but with emphasis. End of discussion, that's final.",
emoji: "💅",
example: "She's the best singer of this generation, periodt",
tags: ["emphasis", "common"],
reverse: ["end of discussion", "that's final", "and that's that"]
},
"sending me": {
definition: "Something is making you laugh uncontrollably or lose composure.",
emoji: "😂",
example: "His dance moves are sending me",
tags: ["humor", "common"],
reverse: ["making me laugh so hard", "killing me", "hilarious"]
},
"caught in 4k": {
definition: "Caught red-handed with clear evidence. No way to deny what you did.",
emoji: "📸",
example: "He said he wasn't at the party but I caught him in 4k",
tags: ["evidence", "caught"],
reverse: ["caught with evidence", "caught red-handed", "exposed"]
},
"it's giving": {
definition: "Something or someone is giving off a particular energy or vibe.",
emoji: "✨",
example: "This outfit is giving main character energy",
tags: ["expression", "vibe"],
reverse: ["it reminds me of", "it feels like", "it has the energy of"]
},
"finna": {
definition: "Fixing to / going to. About to do something.",
emoji: "👉",
example: "I'm finna head out",
tags: ["common", "action"],
reverse: ["going to", "about to", "fixing to"]
},
"cheugy": {
definition: "Out of date, trying too hard to be trendy, or slightly cringey in an outdated way.",
emoji: "😬",
example: "Live laugh love signs are so cheugy",
tags: ["criticism", "outdated"],
reverse: ["outdated", "trying too hard", "unfashionable"]
},
"fanum tax": {
definition: "Taking someone else's food, named after streamer Fanum who's known for stealing bites of food.",
emoji: "🍔",
example: "He just took my fries - classic fanum tax",
tags: ["food", "meme", "2023"],
reverse: ["stealing food", "taking a bite of someone's food"]
},
"sigma": {
definition: "A supposed 'lone wolf' personality type. Someone who doesn't follow the crowd and does their own thing.",
emoji: "🐺",
example: "He's on that sigma grindset, only focuses on himself",
tags: ["personality", "meme"],
reverse: ["lone wolf", "independent person", "self-focused individual"]
},
"brainrot": {
definition: "When you've consumed so much internet content that your brain feels fried. Also refers to extremely online humor.",
emoji: "🧠",
example: "I have complete brainrot from TikTok",
tags: ["internet", "humor", "2023"],
reverse: ["internet-addled mind", "too much screen time", "fried brain"]
},
"mewing": {
definition: "A tongue posture technique supposedly for improving jawline. Became a viral trend/meme.",
emoji: "😤",
example: "He's been mewing for 6 months hoping to get a better jawline",
tags: ["meme", "trend", "2023"],
reverse: ["tongue posture technique", "jawline exercise meme"]
},
"low taper fade": {
definition: "A popular haircut style where hair gradually fades from longer on top to shorter on the sides. Became a meme associated with 'brainrot' content.",
emoji: "💇",
example: "Every guy at school got the low taper fade now",
tags: ["meme", "fashion", "2023"],
reverse: ["trendy haircut", "fade hairstyle", "popular Gen Z haircut"]
},
"🥀": {
definition: "Wilted rose emoji. Often used to express sadness, disappointment, or dramatic emotions. Part of the 'brainrot' meme culture.",
emoji: "🥀",
example: "She left me on read 🥀",
tags: ["emoji", "sad", "meme"],
reverse: ["sad", "disappointment", "dramatic sadness", "feeling down"]
},
"wilted rose": {
definition: "Symbolizes sadness or disappointment with dramatic flair. The emoji 🥀 is used to express melancholy in a semi-ironic way.",
emoji: "🥀",
example: "When bae doesn't text back 🥀",
tags: ["emoji", "sad", "meme"],
reverse: ["sad", "disappointed", "heartbroken dramatically"]
},
"aura": {
definition: "The energy or presence someone gives off. Can be positive or negative. Often used in memes about gaining or losing 'aura points'.",
emoji: "✨",
example: "He tripped in public - minus 500 aura",
tags: ["meme", "energy", "2023"],
reverse: ["energy", "presence", "reputation points", "social credibility"]
},
"goated": {
definition: "Being the GOAT (Greatest Of All Time). Exceptionally good at something.",
emoji: "🐐",
example: "LeBron is absolutely goated",
tags: ["compliment", "sports"],
reverse: ["the greatest", "legendary", "the best ever"]
},
"cope": {
definition: "Dealing with something by making excuses or rationalizing. Often used to dismiss someone's argument.",
emoji: "🥲",
example: "You think that team is better? Cope.",
tags: ["argument", "dismissal"],
reverse: ["making excuses", "in denial", "rationalizing a loss"]
},
"seethe": {
definition: "To be extremely angry or bitter about something. Often paired with 'cope'.",
emoji: "😤",
example: "Haters gonna cope and seethe",
tags: ["emotion", "angry"],
reverse: ["being furious", "extremely upset", "bitter anger"]
},
"ratio": {
definition: "When a reply gets more likes than the original post, indicating disagreement with the original.",
emoji: "📊",
example: "That take was so bad he got ratio'd instantly",
tags: ["social media", "twitter"],
reverse: ["getting more disagreement than agreement", "public rejection"]
},
"glazing": {
definition: "Excessively praising or complimenting someone, often to the point of being insincere.",
emoji: "🍩",
example: "Stop glazing him, he's not that good",
tags: ["criticism", "compliment"],
reverse: ["excessive praise", "over-complimenting", "sucking up"]
},
"meat riding": {
definition: "Excessively supporting or defending someone, similar to glazing but more intense.",
emoji: "🏇",
example: "The fans are meat riding so hard right now",
tags: ["criticism", "fandom"],
reverse: ["being an excessive fan", "defending too hard", "blind support"]
},
"yap": {
definition: "To talk a lot, often about nothing important. Can be used as 'yapping' or 'yap session'.",
emoji: "🗣️",
example: "Let him yap, he's not saying anything real",
tags: ["talking", "common"],
reverse: ["talking too much", "rambling", "going on and on"]
},
"yapping": {
definition: "Talking excessively, especially about unimportant things.",
emoji: "🗣️",
example: "He's been yapping for an hour straight",
tags: ["talking", "common"],
reverse: ["talking too much", "rambling on", "won't stop talking"]
},
"that's crazy": {
definition: "Can mean something is actually crazy, but often used sarcastically when not paying attention or not caring.",
emoji: "😮",
example: "*friend tells long story* 'That's crazy bro'",
tags: ["reaction", "sarcasm"],
reverse: ["wow", "I'm not really listening", "interesting (sarcastic)"]
},
"real": {
definition: "Genuine, authentic, or agreeing with something. Can stand alone as a response meaning 'that's true'.",
emoji: "💯",
example: "That's so real, I feel the same way",
tags: ["agreement", "authentic"],
reverse: ["true", "genuine", "I agree", "authentic"]
},
"big yikes": {
definition: "An expression of something being very cringy, awkward, or unfortunate.",
emoji: "😬",
example: "She texted her ex 47 times... big yikes",
tags: ["cringe", "reaction"],
reverse: ["very awkward", "super cringy", "embarrassing"]
},
"canceled": {
definition: "Being publicly rejected or boycotted, usually for controversial actions or statements.",
emoji: "❌",
example: "He got canceled for those old tweets",
tags: ["social media", "controversy"],
reverse: ["publicly boycotted", "socially rejected", "reputation destroyed"]
},
"slaps": {
definition: "Something is really good, especially music. Similar to 'fire' or 'bussin'.",
emoji: "👋",
example: "This new song absolutely slaps",
tags: ["music", "compliment"],
reverse: ["is really good", "is amazing", "is excellent"]
},
"bop": {
definition: "A really catchy, good song.",
emoji: "🎵",
example: "That song is such a bop",
tags: ["music", "compliment"],
reverse: ["catchy song", "good song", "hit song"]
},
"hits": {
definition: "Something is very good or impactful. Similar to 'slaps'.",
emoji: "💥",
example: "That new album really hits",
tags: ["music", "compliment"],
reverse: ["is impactful", "is really good", "resonates"]
},
"demure": {
definition: "Being modest, reserved, and mindful in a coy way. Went viral from 'very demure, very mindful' trend.",
emoji: "🎀",
example: "The way I showed up to work on time, very demure",
tags: ["trending", "2024", "viral"],
reverse: ["modest", "reserved", "elegant", "mindful"]
},
"very mindful": {
definition: "Being considerate and thoughtful. Part of the viral 'very demure, very mindful' trend.",
emoji: "🧘",
example: "I didn't eat the last slice, very mindful of me",
tags: ["trending", "2024", "viral"],
reverse: ["thoughtful", "considerate", "self-aware"]
},
"brat summer": {
definition: "An aesthetic/attitude of being unapologetically confident, messy, and having fun. From Charli XCX's 'brat' album.",
emoji: "💚",
example: "We're not being chill anymore, it's brat summer",
tags: ["trending", "2024", "music"],
reverse: ["carefree attitude", "unapologetic fun", "wild summer"]
},
"brat": {
definition: "Being confident, chaotic, and unapologetically yourself. Embracing messy, fun energy.",
emoji: "💚",
example: "She's so brat, I love her energy",
tags: ["trending", "2024", "personality"],
reverse: ["chaotic", "confident", "unapologetic", "wild"]
},
"understood": {
definition: "Short for 'understood the assignment'. Someone did exactly what was needed perfectly.",
emoji: "📝",
example: "That outfit for the party? Understood.",
tags: ["compliment", "common"],
reverse: ["got it right", "did it perfectly", "nailed it"]
},
"mother": {
definition: "A term of admiration for someone who is iconic, powerful, or serving looks.",
emoji: "👑",
example: "Beyoncé is mother, she can do no wrong",
tags: ["compliment", "icon"],
reverse: ["icon", "queen", "legend", "powerful woman"]
},
"serve": {
definition: "To deliver an exceptional performance or look. To show up and show out.",
emoji: "💫",
example: "She really served with that red carpet look",
tags: ["compliment", "fashion"],
reverse: ["deliver", "show up impressively", "kill it"]
},
"giving face": {
definition: "Showing exceptional confidence and attractiveness, especially through facial expressions.",
emoji: "💄",
example: "The model was giving face in every photo",
tags: ["beauty", "fashion"],
reverse: ["looking confident", "showing personality", "being photogenic"]
},
"ate that up": {
definition: "Did something extremely well. Devoured the competition or task.",
emoji: "🍽️",
example: "Your presentation? You ate that up!",
tags: ["compliment", "success"],
reverse: ["crushed it", "absolutely killed it", "dominated"]
},
"is she fr": {
definition: "Is she for real? Expression of disbelief or shock at someone's actions.",
emoji: "😦",
example: "She wore that to the interview? Is she fr?",
tags: ["disbelief", "common"],
reverse: ["is she serious", "is she joking", "really?"]
},
"naur": {
definition: "A playful/mocking way of saying 'no' in an Australian accent. Used for comedic effect.",
emoji: "🇦🇺",
example: "Naur, I'm not doing that",
tags: ["humor", "internet"],
reverse: ["no", "nope", "no way"]
},
"bestie": {
definition: "Best friend, but often used casually to address anyone in a friendly way.",
emoji: "👯",
example: "Bestie, we need to talk about your outfit",
tags: ["friendship", "common"],
reverse: ["best friend", "friend", "buddy"]
},
"pick me": {
definition: "Someone who seeks validation by putting down their own gender to seem different or appeal to the opposite sex.",
emoji: "🙋",
example: "She said 'I'm not like other girls', total pick me behavior",
tags: ["criticism", "social"],
reverse: ["attention seeker", "try-hard", "validation seeker"]
},
"ate and left no crumbs": {
definition: "Did something absolutely perfectly with nothing to criticize.",
emoji: "✨",
example: "That performance? She ate and left no crumbs",
tags: ["compliment", "perfect"],
reverse: ["absolutely perfect", "flawless execution", "nothing to improve"]
},
"it's the ___ for me": {
definition: "Calling out a specific thing about someone or something, can be positive or negative.",
emoji: "👀",
example: "It's the audacity for me",
tags: ["expression", "common"],
reverse: ["specifically the ___ is notable", "what stands out is the ___"]
},
"living for this": {
definition: "Really enjoying or being obsessed with something.",
emoji: "❤️🔥",
example: "This drama? I'm living for this",
tags: ["enthusiasm", "common"],
reverse: ["love this", "obsessed with this", "really enjoying"]
},
"tbh": {
definition: "To be honest. Used before sharing an honest opinion.",
emoji: "💭",
example: "Tbh, I didn't like the movie",
tags: ["common", "expression"],
reverse: ["to be honest", "honestly", "truthfully"]
},
"ngl": {
definition: "Not gonna lie. Used to preface an honest or potentially controversial statement.",
emoji: "🗣️",
example: "Ngl, that was actually pretty good",
tags: ["common", "expression"],
reverse: ["not going to lie", "honestly", "I'll admit"]
},
"iykyk": {
definition: "If You Know You Know. Used for insider references or experiences.",
emoji: "🤫",
example: "That back alley restaurant, iykyk",
tags: ["common", "internet"],
reverse: ["if you know you know", "insider knowledge", "you get it"]
},
"ong": {
definition: "On God. Used to swear something is true or emphasize sincerity.",
emoji: "🙏",
example: "Ong, I didn't do it",
tags: ["emphasis", "common"],
reverse: ["I swear", "on my life", "I promise"]
},
"pookie": {
definition: "A cute term of endearment for someone you love or find adorable.",
emoji: "🥰",
example: "You're my little pookie",
tags: ["cute", "trending"],
reverse: ["sweetie", "cutie", "darling", "babe"]
},
"iconic": {
definition: "So amazing or unique that it's legendary. Worthy of being remembered.",
emoji: "⭐",
example: "That moment was absolutely iconic",
tags: ["compliment", "common"],
reverse: ["legendary", "unforgettable", "amazing", "classic"]
},
"purr": {
definition: "Expression of approval or agreement. Like saying 'yes queen' or 'agreed'.",
emoji: "😽",
example: "You got the promotion? Purr!",
tags: ["approval", "common"],
reverse: ["yes", "love it", "agreed", "perfect"]
},
"say less": {
definition: "I understand and I'm in. No need to explain further.",
emoji: "🤐",
example: "Free food? Say less, I'm there",
tags: ["agreement", "common"],
reverse: ["I'm in", "no need to explain", "I understand"]
},
"I fear": {
definition: "I'm worried/afraid that something is the case. Often used humorously.",
emoji: "😰",
example: "I fear I've become too invested in this show",
tags: ["humor", "expression"],
reverse: ["I'm afraid that", "I'm worried that", "unfortunately"]
},
"not the ___": {
definition: "Expression of disbelief or calling something out as embarrassing or notable.",
emoji: "💀",
example: "Not the matching outfits 💀",
tags: ["humor", "embarrassment"],
reverse: ["can't believe the ___", "look at the ___", "really, the ___?"]
},
"era": {
definition: "A phase or period in someone's life defined by a particular mindset.",
emoji: "✨",
example: "I'm in my healing era",
tags: ["personality", "common"],
reverse: ["phase", "chapter", "period"]
},
"roman empire": {
definition: "Something you think about very frequently, based on the meme asking men how often they think about the Roman Empire.",
emoji: "🏛️",
example: "That embarrassing moment from 2015 is my Roman Empire",
tags: ["meme", "2023"],
reverse: ["obsessive thought", "something I can't stop thinking about"]
},
"girl dinner": {
definition: "A random assortment of snacks or small foods eaten as a meal, typically when eating alone.",
emoji: "🧀",
example: "Just having some cheese, crackers and pickles - classic girl dinner",
tags: ["food", "meme", "2023"],
reverse: ["snack plate", "random snacks for dinner", "casual meal"]
},
"receipts": {
definition: "Proof or evidence, especially screenshots of conversations or documentation.",
emoji: "🧾",
example: "You said you didn't do it? I have receipts",
tags: ["evidence", "drama"],
reverse: ["proof", "evidence", "documentation", "screenshots"]
},
"the vibes are off": {
definition: "Something feels wrong or uncomfortable about a situation.",
emoji: "😬",
example: "I don't know what happened but the vibes are off today",
tags: ["feeling", "common"],
reverse: ["something feels wrong", "uncomfortable atmosphere", "bad energy"]
},
"unalive": {
definition: "A way to refer to death or self-harm while avoiding content moderation on platforms.",
emoji: "💀",
example: "The plot twist made me want to unalive myself (figuratively)",
tags: ["internet", "censor"],
reverse: ["die", "end my life (dramatically)", "I can't handle this"]
},
"chronically online": {
definition: "Spending so much time on the internet that your worldview is shaped by online culture.",
emoji: "💻",
example: "Only someone chronically online would get that reference",
tags: ["internet", "criticism"],
reverse: ["always on the internet", "extremely online", "terminally online"]
},
"parasocial": {
definition: "Having a one-sided relationship with a celebrity/influencer where you feel you know them personally.",
emoji: "📺",
example: "My parasocial relationship with that YouTuber is getting out of hand",
tags: ["internet", "psychology"],
reverse: ["one-sided relationship", "fan attachment", "false intimacy"]
},
"gatekeep": {
definition: "To restrict access to or information about something, often to maintain its exclusivity.",
emoji: "🚧",
example: "I'm gatekeeping this restaurant, it's too good to share",
tags: ["common", "internet"],
reverse: ["keep secret", "restrict access", "be exclusive about"]
},
"gaslight": {
definition: "To manipulate someone into questioning their own reality or memory.",
emoji: "💡",
example: "Don't try to gaslight me, I know what happened",
tags: ["psychology", "manipulation"],
reverse: ["manipulate", "deceive", "make someone doubt themselves"]
},
"girlboss": {
definition: "A woman who is ambitious and successful in business. Can be used sincerely or ironically.",
emoji: "💼",
example: "She started her own company, total girlboss move",
tags: ["success", "empowerment"],
reverse: ["boss woman", "successful businesswoman", "ambitious woman"]
},
"beige flag": {
definition: "A trait that's not a red flag (bad) or green flag (good), but is peculiar or notable.",
emoji: "🏳️",
example: "He has 47 plants, that's a beige flag",
tags: ["personality", "social"],
reverse: ["quirky trait", "neutral but notable thing", "peculiarity"]
},
"red flag": {
definition: "A warning sign that someone or something is problematic.",
emoji: "🚩",
example: "He said his ex was 'crazy' - red flag",
tags: ["warning", "social"],
reverse: ["warning sign", "bad sign", "concerning trait"]
},
"green flag": {
definition: "A positive sign that someone or something is good or healthy.",
emoji: "🟢",
example: "He respects your boundaries, that's a green flag",
tags: ["positive", "social"],
reverse: ["good sign", "positive trait", "encouraging sign"]
},
"oomf": {
definition: "One of my followers (on social media). Refers to someone without naming them.",
emoji: "👤",
example: "Oomf really said that with their whole chest",
tags: ["social media", "internet"],
reverse: ["one of my followers", "someone I follow", "unnamed person"]
},
"moots": {
definition: "Mutuals - people who follow each other on social media.",
emoji: "🤝",
example: "Just met up with some moots from Twitter",
tags: ["social media", "internet"],
reverse: ["mutuals", "people I follow who follow me back"]
},
"stans": {
definition: "Devoted fans (plural of stan). People who intensely support something or someone.",
emoji: "🙌",
example: "The stans are not going to like this news",
tags: ["fandom", "internet"],
reverse: ["devoted fans", "superfans", "hardcore supporters"]
},
// Additional terms from Axis Parent Guide
"adulting": {
definition: "To do things a bona fide adult would do, like paying bills, doing taxes, or making responsible decisions.",
emoji: "🧑",
example: "Can't hang out tonight, I'm adulting - gotta do my taxes",
tags: ["common", "responsibility"],
reverse: ["being an adult", "doing adult things", "acting mature"]
},
"aesthetic": {
definition: "Another word for 'vibe.' A specific style, mood, or visual theme that someone or something embodies.",
emoji: "🎨",
example: "Her whole room has a cottagecore aesthetic",
tags: ["style", "common", "trend"],
reverse: ["vibe", "style", "mood", "theme"]
},
"ate and left no crumbs": {
definition: "Used when someone does an exceptional job at something, leaving nothing to criticize.",
emoji: "🍽️",
example: "She performed that choreo and ate and left no crumbs",
tags: ["compliment", "slang phrase"],
reverse: ["killed it", "did amazing", "perfected it"]
},
"basic": {
definition: "A way to describe someone who lacks originality and enjoys the most mainstream and predictable things.",
emoji: "☕",
example: "She only drinks pumpkin spice lattes, so basic",
tags: ["criticism", "common"],
reverse: ["unoriginal", "mainstream", "predictable"]
},
"bb": {
definition: "Synonym for 'babe' or 'baby,' but usually used for friends. Pronounced 'bee bee.'",
emoji: "👶",
example: "Thanks bb, you're the best",
tags: ["friendship", "affection"],
reverse: ["babe", "baby", "hun"]
},
"bet": {
definition: "A response word synonymous with 'Ok, for sure.' Used to agree or confirm something.",
emoji: "🤝",
example: "Wanna grab food? Bet.",
tags: ["common", "agreement"],
reverse: ["okay", "for sure", "sounds good", "yes"]
},
"biblically accurate": {
definition: "Refers to anything characterized by an uncanny, alarming, and/or horrifying appearance, referencing biblical depictions of angels.",
emoji: "👁️",
example: "That AI generated image looks biblically accurate",
tags: ["meme", "description"],
reverse: ["uncanny", "terrifying", "otherworldly"]
},
"big": {
definition: "A word that adds emphasis in multiple contexts, like 'big mad' or 'big brain.'",
emoji: "📏",
example: "He's big mad about losing the game",
tags: ["modifier", "common"],
reverse: ["very", "extremely", "really"]
},
"blueprint": {
definition: "Used when someone did something so well that they became the standard for everyone else.",
emoji: "📐",
example: "She created the blueprint for that dance trend",
tags: ["compliment", "trendsetter"],
reverse: ["original", "template", "standard", "pioneer"]
},
"boo": {
definition: "One's significant other or romantic partner.",
emoji: "💑",
example: "Going to the movies with my boo tonight",
tags: ["relationship", "social"],
reverse: ["boyfriend", "girlfriend", "partner", "significant other"]
},
"boo'd up": {
definition: "To be in a romantic relationship.",
emoji: "💞",
example: "They're all boo'd up now",
tags: ["relationship", "social"],
reverse: ["in a relationship", "dating someone", "coupled up"]
},
"boi": {
definition: "Another way of spelling 'boy' through text or on social media, often used playfully.",
emoji: "🙋♂️",
example: "What's up boi",
tags: ["internet", "texting"],
reverse: ["boy", "dude", "guy"]
},
"bop": {
definition: "A really good song that you can dance or vibe to.",
emoji: "🎵",
example: "This new track is a total bop",
tags: ["music", "compliment"],
reverse: ["great song", "catchy tune", "banger"]
},
"bougie": {
definition: "High class, rich, fancy. Derived from 'bourgeois.' Can be used positively or mockingly.",
emoji: "💎",
example: "Look at you being all bougie with that champagne",
tags: ["lifestyle", "status"],
reverse: ["fancy", "high class", "luxurious", "expensive"]
},
"boutta": {
definition: "About to. A shortened form indicating something is going to happen soon.",
emoji: "⏰",
example: "I'm boutta head out",
tags: ["common", "contraction"],
reverse: ["about to", "going to"]
},
"bruh": {
definition: "More modern version of 'bro.' Used to express disbelief, disappointment, or just as a casual greeting.",
emoji: "🤦",
example: "Bruh, you really just said that?",
tags: ["common", "reaction"],
reverse: ["bro", "dude", "man"]
},
"canon": {
definition: "The actual official plot or facts of a work of fiction, as opposed to fan theories or headcanon.",
emoji: "📖",
example: "That's not canon, it's just fanfiction",
tags: ["fandom", "media"],
reverse: ["official", "actual story", "true facts"]
},
"headcanon": {
definition: "Ideas or theories that fans want to be true about a story or characters, but aren't officially confirmed.",
emoji: "💭",
example: "My headcanon is that they're secretly dating",
tags: ["fandom", "media"],
reverse: ["personal theory", "fan interpretation", "my belief"]
},
"cap": {
definition: "A lie or something false. Saying 'that's cap' means 'that's a lie.'",
emoji: "🧢",
example: "You said you ran a marathon? Cap.",
tags: ["common", "dishonesty"],
reverse: ["lie", "false", "fake", "untrue"]
},
"catch feels": {
definition: "To develop romantic feelings for someone, usually unexpectedly.",
emoji: "💘",
example: "I didn't mean to catch feels but here we are",
tags: ["emotion", "social"],
reverse: ["develop feelings", "fall for someone", "get attached"]
},
"catch these hands": {
definition: "A threat or challenge to fight someone.",
emoji: "✊",
example: "Keep talking and you're gonna catch these hands",
tags: ["confrontation", "threat"],
reverse: ["fight me", "throw hands", "physical confrontation"]
},
"ceo of": {
definition: "Being really talented at something or known for a particular thing.",
emoji: "👔",
example: "She's the CEO of procrastination",
tags: ["compliment", "humorous"],
reverse: ["expert at", "master of", "best at"]
},
"cheugy": {
definition: "Cringey or awkward, specifically regarding trends from the early/mid 2000s that are now outdated.",
emoji: "😬",
example: "Those jeans are so cheugy",
tags: ["criticism", "fashion", "2021"],
reverse: ["outdated", "cringey", "trying too hard"]
},
"chill": {
definition: "To be laid back and relaxed, or the act of hanging out casually.",
emoji: "😎",
example: "Just gonna chill at home tonight",
tags: ["common", "activity"],
reverse: ["relax", "hang out", "calm", "laid back"]
},
"clout": {
definition: "Having a great social influence or following, especially on social media.",
emoji: "⭐",
example: "He only posted that for clout",
tags: ["internet", "social media"],
reverse: ["influence", "fame", "popularity", "status"]
},
"cooked": {
definition: "When someone is so worn out, exhausted, and overwhelmed that they can barely function.",
emoji: "🥵",
example: "After that exam I'm absolutely cooked",
tags: ["exhaustion", "slang"],
reverse: ["exhausted", "done for", "burnt out", "wiped out"]
},
"crash out": {
definition: "To do something dangerous or reckless due to emotional instability or being overwhelmed.",
emoji: "💥",
example: "He's about to crash out if they keep testing him",
tags: ["emotion", "reaction"],
reverse: ["lose it", "snap", "break down", "go crazy"]
},
"dead": {
definition: "When something is so funny you can't handle it, metaphorically 'dying' from laughter.",
emoji: "💀",
example: "That meme has me dead 💀",
tags: ["reaction", "humor"],
reverse: ["dying laughing", "hilarious", "so funny"]
},
"delulu": {
definition: "Shorthand for 'delusional,' usually used in a humorous or self-deprecating way.",
emoji: "🤡",
example: "I'm delulu thinking he'll text back",
tags: ["humor", "self-aware"],
reverse: ["delusional", "unrealistic", "wishful thinking"]
},
"doing the most": {
definition: "Being over the top, excessive, or dramatic about something.",
emoji: "🎭",
example: "She's doing the most with that outfit",
tags: ["criticism", "excessive"],
reverse: ["overdoing it", "being extra", "going overboard"]
},
"done": {
definition: "To be completely over a task, person, or situation. Fed up and finished.",
emoji: "✋",
example: "I'm so done with this drama",
tags: ["emotion", "frustration"],
reverse: ["fed up", "over it", "finished", "had enough"]
},
"drip": {
definition: "Refers to a really cool outfit or stylish appearance. Having good fashion sense.",
emoji: "💧",
example: "Check out the drip, fresh sneakers",
tags: ["fashion", "compliment"],
reverse: ["style", "outfit", "fashion", "swag"]
},
"era": {
definition: "A specific period in someone's life focusing on a certain aesthetic, lifestyle, or phase.",
emoji: "📅",