forkfeed-mcp 1.0.15 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/guide-content.js +86 -220
- package/dist/image-catalog.d.ts +232 -230
- package/dist/image-catalog.js +238 -230
- package/dist/index.js +492 -125
- package/package.json +1 -1
package/dist/image-catalog.js
CHANGED
|
@@ -1,232 +1,240 @@
|
|
|
1
|
+
export const IMAGE_BASE_URL = 'https://d5rfy0lpah1cz.cloudfront.net/content/push/';
|
|
1
2
|
export const IMAGE_CATALOG = [
|
|
2
|
-
{ id: "img1", name: "Server room on fire", tags: "disaster",
|
|
3
|
-
{ id: "img2", name: "Deploy to prod gone wrong", tags: "deploy, git",
|
|
4
|
-
{ id: "img3", name: "Database corruption", tags: "disaster",
|
|
5
|
-
{ id: "img4", name: "Blue screen of death", tags: "debug, lifestyle",
|
|
6
|
-
{ id: "img5", name: "Memory leak", tags: "general",
|
|
7
|
-
{ id: "img6", name: "DDoS attack", tags: "disaster, git",
|
|
8
|
-
{ id: "img7", name: "SSL certificate expired", tags: "general",
|
|
9
|
-
{ id: "img8", name: "Cascading failure", tags: "disaster, git, hype",
|
|
10
|
-
{ id: "img9", name: "Merge conflict", tags: "git",
|
|
11
|
-
{ id: "img10", name: "Spaghetti code", tags: "general",
|
|
12
|
-
{ id: "img11", name: "Recursive infinite loop", tags: "hype",
|
|
13
|
-
{ id: "img12", name: "Prod is down at 3 AM", tags: "disaster, git",
|
|
14
|
-
{ id: "img13", name: "Late night coding", tags: "lifestyle",
|
|
15
|
-
{ id: "img14", name: "Pair programming", tags: "git, debug, hype, lifestyle",
|
|
16
|
-
{ id: "img15", name: "Code review", tags: "git, debug",
|
|
17
|
-
{ id: "img16", name: "Rubber duck debugging", tags: "disaster, debug, hype, lifestyle",
|
|
18
|
-
{ id: "img17", name: "Regex mastery", tags: "language",
|
|
19
|
-
{ id: "img18", name: "Git branching", tags: "git, hype",
|
|
20
|
-
{ id: "img19", name: "Refactoring", tags: "general",
|
|
21
|
-
{ id: "img20", name: "CI/CD pipeline", tags: "deploy",
|
|
22
|
-
{ id: "img21", name: "Containerization", tags: "deploy, git, hype",
|
|
23
|
-
{ id: "img22", name: "Microservices", tags: "hype",
|
|
24
|
-
{ id: "img23", name: "API integration", tags: "git, hype",
|
|
25
|
-
{ id: "img24", name: "Terminal mastery", tags: "general",
|
|
26
|
-
{ id: "img25", name: "Cloud architecture", tags: "hype",
|
|
27
|
-
{ id: "img26", name: "Kubernetes orchestration", tags: "hype",
|
|
28
|
-
{ id: "img27", name: "Load balancer", tags: "general",
|
|
29
|
-
{ id: "img28", name: "Monitoring dashboard", tags: "debug, hype, lifestyle",
|
|
30
|
-
{ id: "img29", name: "Firewall defense", tags: "disaster, git, victory",
|
|
31
|
-
{ id: "img30", name: "Network topology", tags: "debug",
|
|
32
|
-
{ id: "img31", name: "Server scaling", tags: "general",
|
|
33
|
-
{ id: "img32", name: "Backup and recovery", tags: "general",
|
|
34
|
-
{ id: "img33", name: "Successful deploy", tags: "deploy, victory",
|
|
35
|
-
{ id: "img34", name: "Bug squashed", tags: "disaster, deploy",
|
|
36
|
-
{ id: "img35", name: "Tests all passing", tags: "debug, victory",
|
|
37
|
-
{ id: "img36", name: "Feature shipped", tags: "disaster, deploy, hype",
|
|
38
|
-
{ id: "img37", name: "Zero downtime migration", tags: "disaster",
|
|
39
|
-
{ id: "img38", name: "Performance optimized", tags: "hype",
|
|
40
|
-
{ id: "img39", name: "Code review approved", tags: "git, debug, victory",
|
|
41
|
-
{ id: "img40", name: "Friday deploy survived", tags: "deploy, hype, victory",
|
|
42
|
-
{ id: "img41", name: "It works on my machine", tags: "deploy, sarcastic",
|
|
43
|
-
{ id: "img42", name: "Stack Overflow copy paste", tags: "hype",
|
|
44
|
-
{ id: "img43", name: "Have you tried turning it off and on again", tags: "git, hype",
|
|
45
|
-
{ id: "img44", name: "Meeting that could have been an email", tags: "workplace, hype, victory",
|
|
46
|
-
{ id: "img45", name: "TODO comments from 2015", tags: "deploy, debug",
|
|
47
|
-
{ id: "img46", name: "Temporary fix in prod for 3 years", tags: "git, debug",
|
|
48
|
-
{ id: "img47", name: "Reading someone else's code", tags: "general",
|
|
49
|
-
{ id: "img48", name: "Estimating story points", tags: "hype",
|
|
50
|
-
{ id: "img49", name: "Just a small change", tags: "deploy",
|
|
51
|
-
{ id: "img50", name: "The intern's first PR", tags: "git, beginner",
|
|
52
|
-
{ id: "img51", name: "Tabs vs spaces war", tags: "git, victory",
|
|
53
|
-
{ id: "img52", name: "Works in dev breaks in prod", tags: "disaster, git, hype, victory",
|
|
54
|
-
{ id: "img53", name: "Documentation nobody wrote", tags: "general",
|
|
55
|
-
{ id: "img54", name: "Googling the error message", tags: "disaster",
|
|
56
|
-
{ id: "img55", name: "Closing 100 tabs after fixing bug", tags: "disaster, git, debug",
|
|
57
|
-
{ id: "img56", name: "JavaScript callback hell", tags: "git, language",
|
|
58
|
-
{ id: "img57", name: "CSS centering a div", tags: "git, hype, language",
|
|
59
|
-
{ id: "img58", name: "Python indentation error", tags: "disaster, hype, language",
|
|
60
|
-
{ id: "img59", name: "Rust borrow checker", tags: "language",
|
|
61
|
-
{ id: "img60", name: "Java boilerplate", tags: "language",
|
|
62
|
-
{ id: "img61", name: "PHP legacy codebase", tags: "deploy, hype, language",
|
|
63
|
-
{ id: "img62", name: "Vim can't exit", tags: "disaster, git, hype, language, sarcastic, victory",
|
|
64
|
-
{ id: "img63", name: "TypeScript type gymnastics", tags: "git, language",
|
|
65
|
-
{ id: "img64", name: "SQL injection", tags: "disaster, deploy",
|
|
66
|
-
{ id: "img65", name: "Go goroutines", tags: "general",
|
|
67
|
-
{ id: "img66", name: "Design vs implementation", tags: "git",
|
|
68
|
-
{ id: "img67", name: "React component hell", tags: "language, victory",
|
|
69
|
-
{ id: "img68", name: "Deadlock", tags: "deploy",
|
|
70
|
-
{ id: "img69", name: "Race condition", tags: "deploy",
|
|
71
|
-
{ id: "img70", name: "Null pointer exception", tags: "general",
|
|
72
|
-
{ id: "img71", name: "Off-by-one error", tags: "disaster, hype",
|
|
73
|
-
{ id: "img72", name: "Dependency hell", tags: "general",
|
|
74
|
-
{ id: "img73", name: "Dark mode everything", tags: "hype",
|
|
75
|
-
{ id: "img74", name: "Hotfix at midnight", tags: "debug, lifestyle",
|
|
76
|
-
{ id: "img75", name: "Rollback", tags: "deploy, git, victory",
|
|
77
|
-
{ id: "img76", name: "Feature flag wall", tags: "deploy",
|
|
78
|
-
{ id: "img77", name: "DNS propagation waiting", tags: "git, hype, victory",
|
|
79
|
-
{ id: "img78", name: "Cache invalidation", tags: "disaster, hype",
|
|
80
|
-
{ id: "img79", name: "DevOps engineer juggling", tags: "deploy, debug, hype, lifestyle",
|
|
81
|
-
{ id: "img80", name: "Data scientist in a sea of data", tags: "deploy",
|
|
82
|
-
{ id: "img81", name: "Frontend pixel-perfect obsession", tags: "hype",
|
|
83
|
-
{ id: "img82", name: "QA tester finding edge cases", tags: "debug",
|
|
84
|
-
{ id: "img83", name: "SRE on-call weekend", tags: "hype",
|
|
85
|
-
{ id: "img84", name: "DBA guarding the database", tags: "git",
|
|
86
|
-
{ id: "img85", name: "Scrum ceremony", tags: "deploy, git, workplace",
|
|
87
|
-
{ id: "img86", name: "Tech lead whiteboarding", tags: "general",
|
|
88
|
-
{ id: "img87", name: "Junior dev first day", tags: "beginner, lifestyle",
|
|
89
|
-
{ id: "img88", name: "Full stack stretched thin", tags: "general",
|
|
90
|
-
{ id: "img89", name: "Accidentally deleting production", tags: "deploy, git",
|
|
91
|
-
{ id: "img90", name: "Fix creates 10 more bugs", tags: "disaster, git, debug",
|
|
92
|
-
{ id: "img91", name: "Code freeze", tags: "git",
|
|
93
|
-
{ id: "img92", name: "Hackathon at 4 AM", tags: "general",
|
|
94
|
-
{ id: "img93", name: "Demo day goes wrong", tags: "disaster, git",
|
|
95
|
-
{ id: "img94", name: "Finally reading the docs", tags: "general",
|
|
96
|
-
{ id: "img95", name: "Open source maintainer", tags: "disaster, git, hype, lifestyle",
|
|
97
|
-
{ id: "img96", name: "Kubernetes pod crash loop", tags: "disaster, hype",
|
|
98
|
-
{ id: "img97", name: "Monolith to microservices", tags: "hype",
|
|
99
|
-
{ id: "img98", name: "AI pair programmer", tags: "git, hype",
|
|
100
|
-
{ id: "img99", name: "Log file drowning", tags: "disaster, debug",
|
|
101
|
-
{ id: "img100", name: "Weekend deploy peace", tags: "deploy, victory",
|
|
102
|
-
{ id: "img101", name: "Kid's first Hello World", tags: "git, debug, beginner, lifestyle",
|
|
103
|
-
{ id: "img102", name: "Learning to code from YouTube tutorials", tags: "git, beginner",
|
|
104
|
-
{ id: "img103", name: "First time using the terminal", tags: "beginner",
|
|
105
|
-
{ id: "img104", name: "Copying code without understanding it", tags: "general",
|
|
106
|
-
{ id: "img105", name: "My first website with Comic Sans", tags: "git, beginner, victory",
|
|
107
|
-
{ id: "img106", name: "Variables named after pets", tags: "git",
|
|
108
|
-
{ id: "img107", name: "500 lines in a single function", tags: "disaster",
|
|
109
|
-
{ id: "img108", name: "First GitHub repo no README", tags: "git, beginner",
|
|
110
|
-
{ id: "img109", name: "Console.log debugging expert", tags: "disaster, git, debug",
|
|
111
|
-
{ id: "img110", name: "Forgot to save before running", tags: "hype",
|
|
112
|
-
{ id: "img111", name: "First time breaking prod as an intern", tags: "disaster, git, beginner",
|
|
113
|
-
{ id: "img112", name: "Asking AI to write your homework", tags: "deploy, hype, lifestyle, victory",
|
|
114
|
-
{ id: "img113", name: "Committing node_modules", tags: "disaster, deploy, git, hype",
|
|
115
|
-
{ id: "img114", name: "Naming variables x y z aa bb", tags: "git",
|
|
116
|
-
{ id: "img115", name: "Infinite loop crashing the browser", tags: "disaster, git",
|
|
117
|
-
{ id: "img116", name: "First try at CSS grid", tags: "git, beginner, language",
|
|
118
|
-
{ id: "img117", name: "Forgot the semicolon", tags: "disaster",
|
|
119
|
-
{ id: "img118", name: "47 open Chrome tabs of tutorials", tags: "beginner",
|
|
120
|
-
{ id: "img119", name: "git push --force to main on day one", tags: "git, hype",
|
|
121
|
-
{ id: "img120", name: "Learning Python thinks they're a hacker", tags: "debug, beginner, language, lifestyle, sarcastic",
|
|
122
|
-
{ id: "img121", name: "HTML is a programming language debate", tags: "git, language",
|
|
123
|
-
{ id: "img122", name: "Watching coding tutorials at 2x speed", tags: "git, beginner",
|
|
124
|
-
{ id: "img123", name: "First API call returns 403", tags: "deploy, beginner",
|
|
125
|
-
{ id: "img124", name: "Discovered dark mode uses it everywhere", tags: "general",
|
|
126
|
-
{ id: "img125", name: "Installing every VS Code extension", tags: "hype",
|
|
127
|
-
{ id: "img126", name: "First time using regex", tags: "git, beginner, language",
|
|
128
|
-
{ id: "img127", name: "Printing the entire database to debug", tags: "disaster, git, debug",
|
|
129
|
-
{ id: "img128", name: "Nested if statements 10 levels deep", tags: "git, hype",
|
|
130
|
-
{ id: "img129", name: "First code review getting destroyed", tags: "disaster, git, debug, beginner, hype, victory",
|
|
131
|
-
{ id: "img130", name: "Built a to-do app thinks they're a senior dev", tags: "git, sarcastic",
|
|
132
|
-
{ id: "img131", name: "Hardcoding API keys in the frontend", tags: "deploy",
|
|
133
|
-
{ id: "img132", name: "Using !important on every CSS rule", tags: "disaster, language",
|
|
134
|
-
{ id: "img133", name: "First standup saying still working on it", tags: "deploy, beginner, workplace",
|
|
135
|
-
{ id: "img134", name: "Wrote a script to automate a 5-second task", tags: "git",
|
|
136
|
-
{ id: "img135", name: "Portfolio site more impressive than skills", tags: "git",
|
|
137
|
-
{ id: "img136", name: "Accidentally exposed .env on GitHub", tags: "deploy, git",
|
|
138
|
-
{ id: "img137", name: "First merge conflict emotional breakdown", tags: "disaster, git, beginner, hype",
|
|
139
|
-
{ id: "img138", name: "Bootcamp grad applying to senior roles", tags: "beginner, sarcastic",
|
|
140
|
-
{ id: "img139", name: "I know HTML on LinkedIn", tags: "git, language, lifestyle",
|
|
141
|
-
{ id: "img140", name: "Deploying Friday afternoon first time", tags: "deploy, beginner, lifestyle",
|
|
142
|
-
{ id: "img141", name: "Tutorial hell infinite loop", tags: "git, beginner, victory",
|
|
143
|
-
{ id: "img142", name: "Copying Stack Overflow answer wrong", tags: "disaster, git",
|
|
144
|
-
{ id: "img143", name: "Using a framework before learning the language", tags: "git, beginner",
|
|
145
|
-
{ id: "img144", name: "First time pair programming with a senior", tags: "git, debug, beginner, hype, lifestyle",
|
|
146
|
-
{ id: "img145", name: "Writing clever code nobody can read", tags: "git",
|
|
147
|
-
{ id: "img146", name: "Deleting someone else's branch by accident", tags: "deploy, git, debug",
|
|
148
|
-
{ id: "img147", name: "First pull request 3000 lines", tags: "git, debug, beginner",
|
|
149
|
-
{ id: "img148", name: "Stores everything in JSON files", tags: "git",
|
|
150
|
-
{ id: "img149", name: "AI wrote the code doesn't know how it works", tags: "disaster, debug, hype",
|
|
151
|
-
{ id: "img150", name: "Resume says 5 years experience has 5 months", tags: "hype, lifestyle",
|
|
152
|
-
{ id: "img151", name: "It's not a bug it's a feature", tags: "disaster, git, sarcastic",
|
|
153
|
-
{ id: "img152", name: "My code is self-documenting", tags: "git, sarcastic",
|
|
154
|
-
{ id: "img153", name: "We'll document it later", tags: "git",
|
|
155
|
-
{ id: "img154", name: "Quick 5-minute fix", tags: "debug",
|
|
156
|
-
{ id: "img155", name: "It compiles ship it", tags: "deploy, git, debug, hype, sarcastic",
|
|
157
|
-
{ id: "img156", name: "New JavaScript framework every week", tags: "git, language",
|
|
158
|
-
{ id: "img157", name: "Rewriting everything in Rust", tags: "language",
|
|
159
|
-
{ id: "img158", name: "We should rewrite from scratch", tags: "git, hype",
|
|
160
|
-
{ id: "img159", name: "Stack Overflow is down", tags: "disaster, git, hype",
|
|
161
|
-
{ id: "img160", name: "Microservices for a to-do app", tags: "git, hype",
|
|
162
|
-
{ id: "img161", name: "Arguing about naming conventions for 3 hours", tags: "deploy, victory",
|
|
163
|
-
{ id: "img162", name: "Senior dev still using jQuery", tags: "deploy, git",
|
|
164
|
-
{ id: "img163", name: "We don't need tests", tags: "disaster, deploy, git, debug, hype",
|
|
165
|
-
{ id: "img164", name: "The 10x developer myth", tags: "disaster, deploy, git, debug, sarcastic",
|
|
166
|
-
{ id: "img165", name: "Copying senior's dotfiles without understanding", tags: "git",
|
|
167
|
-
{ id: "img166", name: "Manager asking is it done yet", tags: "workplace, hype, lifestyle",
|
|
168
|
-
{ id: "img167", name: "Standup became a 2-hour meeting", tags: "deploy, workplace, hype, victory",
|
|
169
|
-
{ id: "img168", name: "Sprint planning everything is 2 points", tags: "disaster, git, debug, workplace",
|
|
170
|
-
{ id: "img169", name: "I'll fix it in the next sprint", tags: "deploy, git, debug, workplace",
|
|
171
|
-
{ id: "img170", name: "Agile but actually waterfall", tags: "disaster, deploy, git, workplace, hype",
|
|
172
|
-
{ id: "img171", name: "Quick question in Slack", tags: "git, hype",
|
|
173
|
-
{ id: "img172", name: "Jira ticket description is just the title", tags: "workplace",
|
|
174
|
-
{ id: "img173", name: "Product owner changing requirements mid-sprint", tags: "git, workplace",
|
|
175
|
-
{ id: "img174", name: "Retro where nothing changes", tags: "deploy, workplace, victory",
|
|
176
|
-
{ id: "img175", name: "Tech debt sprint that never happens", tags: "git, workplace, hype",
|
|
177
|
-
{ id: "img176", name: "Vibe-coding an entire startup", tags: "hype, lifestyle",
|
|
178
|
-
{ id: "img177", name: "Adding AI to everything", tags: "git, hype",
|
|
179
|
-
{ id: "img178", name: "Prompt engineering as a career", tags: "git, lifestyle",
|
|
180
|
-
{ id: "img179", name: "Kubernetes for a static site", tags: "deploy, hype",
|
|
181
|
-
{ id: "img180", name: "Docker container for one script", tags: "deploy, hype",
|
|
182
|
-
{ id: "img181", name: "Serverless with a $50k bill", tags: "hype",
|
|
183
|
-
{ id: "img182", name: "Blockchain for a shopping list", tags: "hype",
|
|
184
|
-
{ id: "img183", name: "NFT of your git commit", tags: "git, hype",
|
|
185
|
-
{ id: "img184", name: "Changing one CSS property breaks 47 things", tags: "disaster, git, language",
|
|
186
|
-
{ id: "img185", name: "The bug that only happens on Tuesdays", tags: "disaster, deploy, hype, victory",
|
|
187
|
-
{ id: "img186", name: "Works on localhost refuses to deploy", tags: "disaster, deploy, git, sarcastic",
|
|
188
|
-
{ id: "img187", name: "Debugging with print statements in production", tags: "disaster, git, debug",
|
|
189
|
-
{ id: "img188", name: "The fix that was just a missing comma", tags: "disaster, debug",
|
|
190
|
-
{ id: "img189", name: "Code works but nobody knows why", tags: "deploy, lifestyle",
|
|
191
|
-
{ id: "img190", name: "Commented out code nobody dares delete", tags: "disaster, deploy, git",
|
|
192
|
-
{ id: "img191", name: "Mechanical keyboard in an open office", tags: "lifestyle",
|
|
193
|
-
{ id: "img192", name: "Standing desk evangelist", tags: "disaster, deploy, git, hype, lifestyle",
|
|
194
|
-
{ id: "img193", name: "47 monitors one Slack window", tags: "debug, lifestyle",
|
|
195
|
-
{ id: "img194", name: "Home office but actually bed office", tags: "git, lifestyle",
|
|
196
|
-
{ id: "img195", name: "Coffee machine is the most critical infrastructure", tags: "git, debug, hype, lifestyle",
|
|
197
|
-
{ id: "img196", name: "Explaining your job to family", tags: "deploy, git, hype",
|
|
198
|
-
{ id: "img197", name: "Recruiter spam for a technology you used once", tags: "debug, hype, lifestyle",
|
|
199
|
-
{ id: "img198", name: "Whiteboard interview solving problems you'll never use", tags: "git, lifestyle",
|
|
200
|
-
{ id: "img199", name: "Open floor plan for collaboration", tags: "git, workplace, lifestyle, victory",
|
|
201
|
-
{ id: "img200", name: "The layoff email while servers are on fire", tags: "disaster, git, beginner, hype, sarcastic",
|
|
202
|
-
{ id: "bg1", name: "Error and disaster", tags: "disaster",
|
|
203
|
-
{ id: "bg2", name: "Code and terminal", tags: "disaster, hype",
|
|
204
|
-
{ id: "bg3", name: "Infrastructure", tags: "general",
|
|
205
|
-
{ id: "bg4", name: "Celebration", tags: "hype, victory",
|
|
206
|
-
{ id: "bg5", name: "Debug", tags: "disaster, debug",
|
|
207
|
-
{ id: "bg6", name: "Network", tags: "general",
|
|
208
|
-
{ id: "bg7", name: "Security", tags: "general",
|
|
209
|
-
{ id: "bg8", name: "Deploy", tags: "deploy, git",
|
|
210
|
-
{ id: "bg9", name: "Data", tags: "general",
|
|
211
|
-
{ id: "bg10", name: "Night coding", tags: "lifestyle",
|
|
212
|
-
{ id: "bg11", name: "Meme and irony", tags: "hype, sarcastic",
|
|
213
|
-
{ id: "bg12", name: "JavaScript", tags: "deploy, language",
|
|
214
|
-
{ id: "bg13", name: "Python", tags: "language",
|
|
215
|
-
{ id: "bg14", name: "Rust", tags: "hype, language",
|
|
216
|
-
{ id: "bg15", name: "DevOps pipeline", tags: "deploy",
|
|
217
|
-
{ id: "bg16", name: "Data science", tags: "deploy",
|
|
218
|
-
{ id: "bg17", name: "Frontend design", tags: "hype",
|
|
219
|
-
{ id: "bg18", name: "QA testing", tags: "debug, hype",
|
|
220
|
-
{ id: "bg19", name: "Deadlock and freeze", tags: "git",
|
|
221
|
-
{ id: "bg20", name: "Legacy code", tags: "debug",
|
|
222
|
-
{ id: "bg21", name: "Hackathon energy", tags: "general",
|
|
223
|
-
{ id: "bg22", name: "Open source community", tags: "git",
|
|
224
|
-
{ id: "bg23", name: "AI and machine learning", tags: "beginner, hype",
|
|
225
|
-
{ id: "bg24", name: "Mobile development", tags: "hype",
|
|
226
|
-
{ id: "bg25", name: "Startup hustle", tags: "general",
|
|
227
|
-
{ id: "bg26", name: "Enterprise corporate", tags: "git, debug",
|
|
228
|
-
{ id: "bg27", name: "Coffee and caffeine", tags: "git, hype, lifestyle",
|
|
229
|
-
{ id: "bg28", name: "Concurrency", tags: "general",
|
|
230
|
-
{ id: "bg29", name: "Version control", tags: "git",
|
|
231
|
-
{ id: "bg30", name: "Zen productivity", tags: "deploy, git",
|
|
3
|
+
{ id: "img1", name: "Server room on fire", tags: "disaster", file: "1_202603270001.jpeg" },
|
|
4
|
+
{ id: "img2", name: "Deploy to prod gone wrong", tags: "deploy, git", file: "2_202603270001.jpeg" },
|
|
5
|
+
{ id: "img3", name: "Database corruption", tags: "disaster", file: "3_202603270001.jpeg" },
|
|
6
|
+
{ id: "img4", name: "Blue screen of death", tags: "debug, lifestyle", file: "4_202603270001.jpeg" },
|
|
7
|
+
{ id: "img5", name: "Memory leak", tags: "general", file: "5_202603270001.jpeg" },
|
|
8
|
+
{ id: "img6", name: "DDoS attack", tags: "disaster, git", file: "6_202603270001.jpeg" },
|
|
9
|
+
{ id: "img7", name: "SSL certificate expired", tags: "general", file: "7_202603270001.jpeg" },
|
|
10
|
+
{ id: "img8", name: "Cascading failure", tags: "disaster, git, hype", file: "8_202603270001.jpeg" },
|
|
11
|
+
{ id: "img9", name: "Merge conflict", tags: "git", file: "9_202603270001.jpeg" },
|
|
12
|
+
{ id: "img10", name: "Spaghetti code", tags: "general", file: "10_202603270001.jpeg" },
|
|
13
|
+
{ id: "img11", name: "Recursive infinite loop", tags: "hype", file: "11_202603270001.jpeg" },
|
|
14
|
+
{ id: "img12", name: "Prod is down at 3 AM", tags: "disaster, git", file: "12_202603270001.jpeg" },
|
|
15
|
+
{ id: "img13", name: "Late night coding", tags: "lifestyle", file: "13_202603270001.jpeg" },
|
|
16
|
+
{ id: "img14", name: "Pair programming", tags: "git, debug, hype, lifestyle", file: "14_202603270001.jpeg" },
|
|
17
|
+
{ id: "img15", name: "Code review", tags: "git, debug", file: "15_202603270001.jpeg" },
|
|
18
|
+
{ id: "img16", name: "Rubber duck debugging", tags: "disaster, debug, hype, lifestyle", file: "16_202603270001.jpeg" },
|
|
19
|
+
{ id: "img17", name: "Regex mastery", tags: "language", file: "17_202603270001.jpeg" },
|
|
20
|
+
{ id: "img18", name: "Git branching", tags: "git, hype", file: "18_202603270001.jpeg" },
|
|
21
|
+
{ id: "img19", name: "Refactoring", tags: "general", file: "19_202603270001.jpeg" },
|
|
22
|
+
{ id: "img20", name: "CI/CD pipeline", tags: "deploy", file: "20_202603270001.jpeg" },
|
|
23
|
+
{ id: "img21", name: "Containerization", tags: "deploy, git, hype", file: "21_202603270001.jpeg" },
|
|
24
|
+
{ id: "img22", name: "Microservices", tags: "hype", file: "22_202603270001.jpeg" },
|
|
25
|
+
{ id: "img23", name: "API integration", tags: "git, hype", file: "23_202603270001.jpeg" },
|
|
26
|
+
{ id: "img24", name: "Terminal mastery", tags: "general", file: "24_202603270001.jpeg" },
|
|
27
|
+
{ id: "img25", name: "Cloud architecture", tags: "hype", file: "25_202603270001.jpeg" },
|
|
28
|
+
{ id: "img26", name: "Kubernetes orchestration", tags: "hype", file: "26_202603270001.jpeg" },
|
|
29
|
+
{ id: "img27", name: "Load balancer", tags: "general", file: "27_202603270001.jpeg" },
|
|
30
|
+
{ id: "img28", name: "Monitoring dashboard", tags: "debug, hype, lifestyle", file: "28_202603270001.jpeg" },
|
|
31
|
+
{ id: "img29", name: "Firewall defense", tags: "disaster, git, victory", file: "29_202603270001.jpeg" },
|
|
32
|
+
{ id: "img30", name: "Network topology", tags: "debug", file: "30_202603270001.jpeg" },
|
|
33
|
+
{ id: "img31", name: "Server scaling", tags: "general", file: "31_202603270001.jpeg" },
|
|
34
|
+
{ id: "img32", name: "Backup and recovery", tags: "general", file: "32_202603270001.jpeg" },
|
|
35
|
+
{ id: "img33", name: "Successful deploy", tags: "deploy, victory", file: "33_202603270001.jpeg" },
|
|
36
|
+
{ id: "img34", name: "Bug squashed", tags: "disaster, deploy", file: "34_202603270001.jpeg" },
|
|
37
|
+
{ id: "img35", name: "Tests all passing", tags: "debug, victory", file: "35_202603270001.jpeg" },
|
|
38
|
+
{ id: "img36", name: "Feature shipped", tags: "disaster, deploy, hype", file: "36_202603270001.jpeg" },
|
|
39
|
+
{ id: "img37", name: "Zero downtime migration", tags: "disaster", file: "37_202603270001.jpeg" },
|
|
40
|
+
{ id: "img38", name: "Performance optimized", tags: "hype", file: "38_202603270001.jpeg" },
|
|
41
|
+
{ id: "img39", name: "Code review approved", tags: "git, debug, victory", file: "39_202603270001.jpeg" },
|
|
42
|
+
{ id: "img40", name: "Friday deploy survived", tags: "deploy, hype, victory", file: "40_202603270001.jpeg" },
|
|
43
|
+
{ id: "img41", name: "It works on my machine", tags: "deploy, sarcastic", file: "41_202603270001.jpeg" },
|
|
44
|
+
{ id: "img42", name: "Stack Overflow copy paste", tags: "hype", file: "42_202603270001.jpeg" },
|
|
45
|
+
{ id: "img43", name: "Have you tried turning it off and on again", tags: "git, hype", file: "43_202603270001.jpeg" },
|
|
46
|
+
{ id: "img44", name: "Meeting that could have been an email", tags: "workplace, hype, victory", file: "44_202603270001.jpeg" },
|
|
47
|
+
{ id: "img45", name: "TODO comments from 2015", tags: "deploy, debug", file: "45_202603270001.jpeg" },
|
|
48
|
+
{ id: "img46", name: "Temporary fix in prod for 3 years", tags: "git, debug", file: "46_202603270001.jpeg" },
|
|
49
|
+
{ id: "img47", name: "Reading someone else's code", tags: "general", file: "47_202603270001.jpeg" },
|
|
50
|
+
{ id: "img48", name: "Estimating story points", tags: "hype", file: "48_202603270001.jpeg" },
|
|
51
|
+
{ id: "img49", name: "Just a small change", tags: "deploy", file: "49_202603270001.jpeg" },
|
|
52
|
+
{ id: "img50", name: "The intern's first PR", tags: "git, beginner", file: "50_Ghost_beside_glowing_202603271057.jpeg" },
|
|
53
|
+
{ id: "img51", name: "Tabs vs spaces war", tags: "git, victory", file: "51_202603270001.jpeg" },
|
|
54
|
+
{ id: "img52", name: "Works in dev breaks in prod", tags: "disaster, git, hype, victory", file: "52_202603270001.jpeg" },
|
|
55
|
+
{ id: "img53", name: "Documentation nobody wrote", tags: "general", file: "53_202603270001.jpeg" },
|
|
56
|
+
{ id: "img54", name: "Googling the error message", tags: "disaster", file: "54_202603270001.jpeg" },
|
|
57
|
+
{ id: "img55", name: "Closing 100 tabs after fixing bug", tags: "disaster, git, debug", file: "55_202603270001.jpeg" },
|
|
58
|
+
{ id: "img56", name: "JavaScript callback hell", tags: "git, language", file: "56_202603270001.jpeg" },
|
|
59
|
+
{ id: "img57", name: "CSS centering a div", tags: "git, hype, language", file: "57_202603270001.jpeg" },
|
|
60
|
+
{ id: "img58", name: "Python indentation error", tags: "disaster, hype, language", file: "58_202603270001.jpeg" },
|
|
61
|
+
{ id: "img59", name: "Rust borrow checker", tags: "language", file: "59_202603270001.jpeg" },
|
|
62
|
+
{ id: "img60", name: "Java boilerplate", tags: "language", file: "60_202603270001.jpeg" },
|
|
63
|
+
{ id: "img61", name: "PHP legacy codebase", tags: "deploy, hype, language", file: "61_202603270001.jpeg" },
|
|
64
|
+
{ id: "img62", name: "Vim can't exit", tags: "disaster, git, hype, language, sarcastic, victory", file: "62_202603270001.jpeg" },
|
|
65
|
+
{ id: "img63", name: "TypeScript type gymnastics", tags: "git, language", file: "63_202603270001.jpeg" },
|
|
66
|
+
{ id: "img64", name: "SQL injection", tags: "disaster, deploy", file: "64_202603270001.jpeg" },
|
|
67
|
+
{ id: "img65", name: "Go goroutines", tags: "general", file: "65_202603270001.jpeg" },
|
|
68
|
+
{ id: "img66", name: "Design vs implementation", tags: "git", file: "66_202603270001.jpeg" },
|
|
69
|
+
{ id: "img67", name: "React component hell", tags: "language, victory", file: "67_202603270001.jpeg" },
|
|
70
|
+
{ id: "img68", name: "Deadlock", tags: "deploy", file: "68_202603270001.jpeg" },
|
|
71
|
+
{ id: "img69", name: "Race condition", tags: "deploy", file: "69_202603270001.jpeg" },
|
|
72
|
+
{ id: "img70", name: "Null pointer exception", tags: "general", file: "70_202603270001.jpeg" },
|
|
73
|
+
{ id: "img71", name: "Off-by-one error", tags: "disaster, hype", file: "71_202603270001.jpeg" },
|
|
74
|
+
{ id: "img72", name: "Dependency hell", tags: "general", file: "72_202603270001.jpeg" },
|
|
75
|
+
{ id: "img73", name: "Dark mode everything", tags: "hype", file: "73_202603270001.jpeg" },
|
|
76
|
+
{ id: "img74", name: "Hotfix at midnight", tags: "debug, lifestyle", file: "74_202603270001.jpeg" },
|
|
77
|
+
{ id: "img75", name: "Rollback", tags: "deploy, git, victory", file: "75_202603270001.jpeg" },
|
|
78
|
+
{ id: "img76", name: "Feature flag wall", tags: "deploy", file: "76_202603270001.jpeg" },
|
|
79
|
+
{ id: "img77", name: "DNS propagation waiting", tags: "git, hype, victory", file: "77_202603270001.jpeg" },
|
|
80
|
+
{ id: "img78", name: "Cache invalidation", tags: "disaster, hype", file: "78_202603270001.jpeg" },
|
|
81
|
+
{ id: "img79", name: "DevOps engineer juggling", tags: "deploy, debug, hype, lifestyle", file: "79_202603270001.jpeg" },
|
|
82
|
+
{ id: "img80", name: "Data scientist in a sea of data", tags: "deploy", file: "80_202603270001.jpeg" },
|
|
83
|
+
{ id: "img81", name: "Frontend pixel-perfect obsession", tags: "hype", file: "81_202603270001.jpeg" },
|
|
84
|
+
{ id: "img82", name: "QA tester finding edge cases", tags: "debug", file: "82_202603270001.jpeg" },
|
|
85
|
+
{ id: "img83", name: "SRE on-call weekend", tags: "hype", file: "83_202603270001.jpeg" },
|
|
86
|
+
{ id: "img84", name: "DBA guarding the database", tags: "git", file: "84_202603270001.jpeg" },
|
|
87
|
+
{ id: "img85", name: "Scrum ceremony", tags: "deploy, git, workplace", file: "85_202603270001.jpeg" },
|
|
88
|
+
{ id: "img86", name: "Tech lead whiteboarding", tags: "general", file: "86_202603270001.jpeg" },
|
|
89
|
+
{ id: "img87", name: "Junior dev first day", tags: "beginner, lifestyle", file: "87_202603270001.jpeg" },
|
|
90
|
+
{ id: "img88", name: "Full stack stretched thin", tags: "general", file: "88_202603270001.jpeg" },
|
|
91
|
+
{ id: "img89", name: "Accidentally deleting production", tags: "deploy, git", file: "89_202603270001.jpeg" },
|
|
92
|
+
{ id: "img90", name: "Fix creates 10 more bugs", tags: "disaster, git, debug", file: "90_202603270001.jpeg" },
|
|
93
|
+
{ id: "img91", name: "Code freeze", tags: "git", file: "91_202603270001.jpeg" },
|
|
94
|
+
{ id: "img92", name: "Hackathon at 4 AM", tags: "general", file: "92_202603270001.jpeg" },
|
|
95
|
+
{ id: "img93", name: "Demo day goes wrong", tags: "disaster, git", file: "93_202603270001.jpeg" },
|
|
96
|
+
{ id: "img94", name: "Finally reading the docs", tags: "general", file: "94_202603270001.jpeg" },
|
|
97
|
+
{ id: "img95", name: "Open source maintainer", tags: "disaster, git, hype, lifestyle", file: "95_202603270001.jpeg" },
|
|
98
|
+
{ id: "img96", name: "Kubernetes pod crash loop", tags: "disaster, hype", file: "96_202603270001.jpeg" },
|
|
99
|
+
{ id: "img97", name: "Monolith to microservices", tags: "hype", file: "97_202603270001.jpeg" },
|
|
100
|
+
{ id: "img98", name: "AI pair programmer", tags: "git, hype", file: "98_202603270001.jpeg" },
|
|
101
|
+
{ id: "img99", name: "Log file drowning", tags: "disaster, debug", file: "99_202603270001.jpeg" },
|
|
102
|
+
{ id: "img100", name: "Weekend deploy peace", tags: "deploy, victory", file: "100_202603270001.jpeg" },
|
|
103
|
+
{ id: "img101", name: "Kid's first Hello World", tags: "git, debug, beginner, lifestyle", file: "101_202603270001.jpeg" },
|
|
104
|
+
{ id: "img102", name: "Learning to code from YouTube tutorials", tags: "git, beginner", file: "102_202603270001.jpeg" },
|
|
105
|
+
{ id: "img103", name: "First time using the terminal", tags: "beginner", file: "103_202603270001.jpeg" },
|
|
106
|
+
{ id: "img104", name: "Copying code without understanding it", tags: "general", file: "104_202603270001.jpeg" },
|
|
107
|
+
{ id: "img105", name: "My first website with Comic Sans", tags: "git, beginner, victory", file: "105_202603270001.jpeg" },
|
|
108
|
+
{ id: "img106", name: "Variables named after pets", tags: "git", file: "106_202603270001.jpeg" },
|
|
109
|
+
{ id: "img107", name: "500 lines in a single function", tags: "disaster", file: "107_202603270001.jpeg" },
|
|
110
|
+
{ id: "img108", name: "First GitHub repo no README", tags: "git, beginner", file: "108_202603270001.jpeg" },
|
|
111
|
+
{ id: "img109", name: "Console.log debugging expert", tags: "disaster, git, debug", file: "109_202603270001.jpeg" },
|
|
112
|
+
{ id: "img110", name: "Forgot to save before running", tags: "hype", file: "110_202603270001.jpeg" },
|
|
113
|
+
{ id: "img111", name: "First time breaking prod as an intern", tags: "disaster, git, beginner", file: "111_202603270001.jpeg" },
|
|
114
|
+
{ id: "img112", name: "Asking AI to write your homework", tags: "deploy, hype, lifestyle, victory", file: "112_202603270001.jpeg" },
|
|
115
|
+
{ id: "img113", name: "Committing node_modules", tags: "disaster, deploy, git, hype", file: "113_202603270001.jpeg" },
|
|
116
|
+
{ id: "img114", name: "Naming variables x y z aa bb", tags: "git", file: "114_202603270001.jpeg" },
|
|
117
|
+
{ id: "img115", name: "Infinite loop crashing the browser", tags: "disaster, git", file: "115_202603270001.jpeg" },
|
|
118
|
+
{ id: "img116", name: "First try at CSS grid", tags: "git, beginner, language", file: "116_202603270001.jpeg" },
|
|
119
|
+
{ id: "img117", name: "Forgot the semicolon", tags: "disaster", file: "117_202603270001.jpeg" },
|
|
120
|
+
{ id: "img118", name: "47 open Chrome tabs of tutorials", tags: "beginner", file: "118_202603270001.jpeg" },
|
|
121
|
+
{ id: "img119", name: "git push --force to main on day one", tags: "git, hype", file: "119_202603270001.jpeg" },
|
|
122
|
+
{ id: "img120", name: "Learning Python thinks they're a hacker", tags: "debug, beginner, language, lifestyle, sarcastic", file: "120_202603270001.jpeg" },
|
|
123
|
+
{ id: "img121", name: "HTML is a programming language debate", tags: "git, language", file: "121_202603270001.jpeg" },
|
|
124
|
+
{ id: "img122", name: "Watching coding tutorials at 2x speed", tags: "git, beginner", file: "122_202603270001.jpeg" },
|
|
125
|
+
{ id: "img123", name: "First API call returns 403", tags: "deploy, beginner", file: "123_202603270001.jpeg" },
|
|
126
|
+
{ id: "img124", name: "Discovered dark mode uses it everywhere", tags: "general", file: "124_202603270001.jpeg" },
|
|
127
|
+
{ id: "img125", name: "Installing every VS Code extension", tags: "hype", file: "125_202603270001.jpeg" },
|
|
128
|
+
{ id: "img126", name: "First time using regex", tags: "git, beginner, language", file: "126_202603270001.jpeg" },
|
|
129
|
+
{ id: "img127", name: "Printing the entire database to debug", tags: "disaster, git, debug", file: "127_202603270001.jpeg" },
|
|
130
|
+
{ id: "img128", name: "Nested if statements 10 levels deep", tags: "git, hype", file: "128_202603270001.jpeg" },
|
|
131
|
+
{ id: "img129", name: "First code review getting destroyed", tags: "disaster, git, debug, beginner, hype, victory", file: "129_202603270001.jpeg" },
|
|
132
|
+
{ id: "img130", name: "Built a to-do app thinks they're a senior dev", tags: "git, sarcastic", file: "130_202603270001.jpeg" },
|
|
133
|
+
{ id: "img131", name: "Hardcoding API keys in the frontend", tags: "deploy", file: "131_202603270001.jpeg" },
|
|
134
|
+
{ id: "img132", name: "Using !important on every CSS rule", tags: "disaster, language", file: "132_202603270001.jpeg" },
|
|
135
|
+
{ id: "img133", name: "First standup saying still working on it", tags: "deploy, beginner, workplace", file: "133_202603270001.jpeg" },
|
|
136
|
+
{ id: "img134", name: "Wrote a script to automate a 5-second task", tags: "git", file: "134_202603270001.jpeg" },
|
|
137
|
+
{ id: "img135", name: "Portfolio site more impressive than skills", tags: "git", file: "135_202603270001.jpeg" },
|
|
138
|
+
{ id: "img136", name: "Accidentally exposed .env on GitHub", tags: "deploy, git", file: "136_202603270001.jpeg" },
|
|
139
|
+
{ id: "img137", name: "First merge conflict emotional breakdown", tags: "disaster, git, beginner, hype", file: "137_202603270001.jpeg" },
|
|
140
|
+
{ id: "img138", name: "Bootcamp grad applying to senior roles", tags: "beginner, sarcastic", file: "138_202603270001.jpeg" },
|
|
141
|
+
{ id: "img139", name: "I know HTML on LinkedIn", tags: "git, language, lifestyle", file: "139_202603270001.jpeg" },
|
|
142
|
+
{ id: "img140", name: "Deploying Friday afternoon first time", tags: "deploy, beginner, lifestyle", file: "140_202603270001.jpeg" },
|
|
143
|
+
{ id: "img141", name: "Tutorial hell infinite loop", tags: "git, beginner, victory", file: "141_202603270001.jpeg" },
|
|
144
|
+
{ id: "img142", name: "Copying Stack Overflow answer wrong", tags: "disaster, git", file: "142_202603270001.jpeg" },
|
|
145
|
+
{ id: "img143", name: "Using a framework before learning the language", tags: "git, beginner", file: "143_202603270001.jpeg" },
|
|
146
|
+
{ id: "img144", name: "First time pair programming with a senior", tags: "git, debug, beginner, hype, lifestyle", file: "144_202603270001.jpeg" },
|
|
147
|
+
{ id: "img145", name: "Writing clever code nobody can read", tags: "git", file: "145_202603270001.jpeg" },
|
|
148
|
+
{ id: "img146", name: "Deleting someone else's branch by accident", tags: "deploy, git, debug", file: "146_202603270001.jpeg" },
|
|
149
|
+
{ id: "img147", name: "First pull request 3000 lines", tags: "git, debug, beginner", file: "147_202603270001.jpeg" },
|
|
150
|
+
{ id: "img148", name: "Stores everything in JSON files", tags: "git", file: "148_202603270001.jpeg" },
|
|
151
|
+
{ id: "img149", name: "AI wrote the code doesn't know how it works", tags: "disaster, debug, hype", file: "149_202603270001.jpeg" },
|
|
152
|
+
{ id: "img150", name: "Resume says 5 years experience has 5 months", tags: "hype, lifestyle", file: "150_202603270001.jpeg" },
|
|
153
|
+
{ id: "img151", name: "It's not a bug it's a feature", tags: "disaster, git, sarcastic", file: "151_202603270001.jpeg" },
|
|
154
|
+
{ id: "img152", name: "My code is self-documenting", tags: "git, sarcastic", file: "152_202603270001.jpeg" },
|
|
155
|
+
{ id: "img153", name: "We'll document it later", tags: "git", file: "153_202603270001.jpeg" },
|
|
156
|
+
{ id: "img154", name: "Quick 5-minute fix", tags: "debug", file: "154_202603270001.jpeg" },
|
|
157
|
+
{ id: "img155", name: "It compiles ship it", tags: "deploy, git, debug, hype, sarcastic", file: "155_202603270001.jpeg" },
|
|
158
|
+
{ id: "img156", name: "New JavaScript framework every week", tags: "git, language", file: "156_202603270001.jpeg" },
|
|
159
|
+
{ id: "img157", name: "Rewriting everything in Rust", tags: "language", file: "157_202603270001.jpeg" },
|
|
160
|
+
{ id: "img158", name: "We should rewrite from scratch", tags: "git, hype", file: "158_202603270001.jpeg" },
|
|
161
|
+
{ id: "img159", name: "Stack Overflow is down", tags: "disaster, git, hype", file: "159_202603270001.jpeg" },
|
|
162
|
+
{ id: "img160", name: "Microservices for a to-do app", tags: "git, hype", file: "160_202603270001.jpeg" },
|
|
163
|
+
{ id: "img161", name: "Arguing about naming conventions for 3 hours", tags: "deploy, victory", file: "161_202603270001.jpeg" },
|
|
164
|
+
{ id: "img162", name: "Senior dev still using jQuery", tags: "deploy, git", file: "162_202603270001.jpeg" },
|
|
165
|
+
{ id: "img163", name: "We don't need tests", tags: "disaster, deploy, git, debug, hype", file: "163_202603270001.jpeg" },
|
|
166
|
+
{ id: "img164", name: "The 10x developer myth", tags: "disaster, deploy, git, debug, sarcastic", file: "164_202603270001.jpeg" },
|
|
167
|
+
{ id: "img165", name: "Copying senior's dotfiles without understanding", tags: "git", file: "165_202603270001.jpeg" },
|
|
168
|
+
{ id: "img166", name: "Manager asking is it done yet", tags: "workplace, hype, lifestyle", file: "166_202603270001.jpeg" },
|
|
169
|
+
{ id: "img167", name: "Standup became a 2-hour meeting", tags: "deploy, workplace, hype, victory", file: "167_202603270001.jpeg" },
|
|
170
|
+
{ id: "img168", name: "Sprint planning everything is 2 points", tags: "disaster, git, debug, workplace", file: "168_202603270001.jpeg" },
|
|
171
|
+
{ id: "img169", name: "I'll fix it in the next sprint", tags: "deploy, git, debug, workplace", file: "169_202603270001.jpeg" },
|
|
172
|
+
{ id: "img170", name: "Agile but actually waterfall", tags: "disaster, deploy, git, workplace, hype", file: "170_202603270001.jpeg" },
|
|
173
|
+
{ id: "img171", name: "Quick question in Slack", tags: "git, hype", file: "171_202603270001.jpeg" },
|
|
174
|
+
{ id: "img172", name: "Jira ticket description is just the title", tags: "workplace", file: "172_202603270001.jpeg" },
|
|
175
|
+
{ id: "img173", name: "Product owner changing requirements mid-sprint", tags: "git, workplace", file: "173_202603270001.jpeg" },
|
|
176
|
+
{ id: "img174", name: "Retro where nothing changes", tags: "deploy, workplace, victory", file: "174_202603270001.jpeg" },
|
|
177
|
+
{ id: "img175", name: "Tech debt sprint that never happens", tags: "git, workplace, hype", file: "175_202603270001.jpeg" },
|
|
178
|
+
{ id: "img176", name: "Vibe-coding an entire startup", tags: "hype, lifestyle", file: "176_202603270001.jpeg" },
|
|
179
|
+
{ id: "img177", name: "Adding AI to everything", tags: "git, hype", file: "177_202603270001.jpeg" },
|
|
180
|
+
{ id: "img178", name: "Prompt engineering as a career", tags: "git, lifestyle", file: "178_202603270001.jpeg" },
|
|
181
|
+
{ id: "img179", name: "Kubernetes for a static site", tags: "deploy, hype", file: "179_202603270001.jpeg" },
|
|
182
|
+
{ id: "img180", name: "Docker container for one script", tags: "deploy, hype", file: "180_202603270001.jpeg" },
|
|
183
|
+
{ id: "img181", name: "Serverless with a $50k bill", tags: "hype", file: "181_202603270001.jpeg" },
|
|
184
|
+
{ id: "img182", name: "Blockchain for a shopping list", tags: "hype", file: "182_202603270001.jpeg" },
|
|
185
|
+
{ id: "img183", name: "NFT of your git commit", tags: "git, hype", file: "183_202603270001.jpeg" },
|
|
186
|
+
{ id: "img184", name: "Changing one CSS property breaks 47 things", tags: "disaster, git, language", file: "184_202603270001.jpeg" },
|
|
187
|
+
{ id: "img185", name: "The bug that only happens on Tuesdays", tags: "disaster, deploy, hype, victory", file: "185_202603270001.jpeg" },
|
|
188
|
+
{ id: "img186", name: "Works on localhost refuses to deploy", tags: "disaster, deploy, git, sarcastic", file: "186_202603270001.jpeg" },
|
|
189
|
+
{ id: "img187", name: "Debugging with print statements in production", tags: "disaster, git, debug", file: "187_202603270001.jpeg" },
|
|
190
|
+
{ id: "img188", name: "The fix that was just a missing comma", tags: "disaster, debug", file: "188_202603270001.jpeg" },
|
|
191
|
+
{ id: "img189", name: "Code works but nobody knows why", tags: "deploy, lifestyle", file: "189_202603270001.jpeg" },
|
|
192
|
+
{ id: "img190", name: "Commented out code nobody dares delete", tags: "disaster, deploy, git", file: "190_202603270001.jpeg" },
|
|
193
|
+
{ id: "img191", name: "Mechanical keyboard in an open office", tags: "lifestyle", file: "191_202603270001.jpeg" },
|
|
194
|
+
{ id: "img192", name: "Standing desk evangelist", tags: "disaster, deploy, git, hype, lifestyle", file: "192_202603270001.jpeg" },
|
|
195
|
+
{ id: "img193", name: "47 monitors one Slack window", tags: "debug, lifestyle", file: "193_202603270001.jpeg" },
|
|
196
|
+
{ id: "img194", name: "Home office but actually bed office", tags: "git, lifestyle", file: "194_202603270001.jpeg" },
|
|
197
|
+
{ id: "img195", name: "Coffee machine is the most critical infrastructure", tags: "git, debug, hype, lifestyle", file: "195_202603270001.jpeg" },
|
|
198
|
+
{ id: "img196", name: "Explaining your job to family", tags: "deploy, git, hype", file: "196_202603270001.jpeg" },
|
|
199
|
+
{ id: "img197", name: "Recruiter spam for a technology you used once", tags: "debug, hype, lifestyle", file: "197_202603270001.jpeg" },
|
|
200
|
+
{ id: "img198", name: "Whiteboard interview solving problems you'll never use", tags: "git, lifestyle", file: "198_202603270001.jpeg" },
|
|
201
|
+
{ id: "img199", name: "Open floor plan for collaboration", tags: "git, workplace, lifestyle, victory", file: "199_202603270001.jpeg" },
|
|
202
|
+
{ id: "img200", name: "The layoff email while servers are on fire", tags: "disaster, git, beginner, hype, sarcastic", file: "200_202603270001.jpeg" },
|
|
203
|
+
{ id: "bg1", name: "Error and disaster", tags: "disaster", file: "bg1_202603270001.jpeg" },
|
|
204
|
+
{ id: "bg2", name: "Code and terminal", tags: "disaster, hype", file: "bg2_202603270001.jpeg" },
|
|
205
|
+
{ id: "bg3", name: "Infrastructure", tags: "general", file: "bg3_202603270001.jpeg" },
|
|
206
|
+
{ id: "bg4", name: "Celebration", tags: "hype, victory", file: "bg4_202603270001.jpeg" },
|
|
207
|
+
{ id: "bg5", name: "Debug", tags: "disaster, debug", file: "bg5_202603270001.jpeg" },
|
|
208
|
+
{ id: "bg6", name: "Network", tags: "general", file: "bg6_202603270001.jpeg" },
|
|
209
|
+
{ id: "bg7", name: "Security", tags: "general", file: "bg7_202603270001.jpeg" },
|
|
210
|
+
{ id: "bg8", name: "Deploy", tags: "deploy, git", file: "bg8_202603270001.jpeg" },
|
|
211
|
+
{ id: "bg9", name: "Data", tags: "general", file: "bg9_202603270001.jpeg" },
|
|
212
|
+
{ id: "bg10", name: "Night coding", tags: "lifestyle", file: "bg10_202603270001.jpeg" },
|
|
213
|
+
{ id: "bg11", name: "Meme and irony", tags: "hype, sarcastic", file: "bg11_202603270001.jpeg" },
|
|
214
|
+
{ id: "bg12", name: "JavaScript", tags: "deploy, language", file: "bg12_202603270001.jpeg" },
|
|
215
|
+
{ id: "bg13", name: "Python", tags: "language", file: "bg13_202603270001.jpeg" },
|
|
216
|
+
{ id: "bg14", name: "Rust", tags: "hype, language", file: "bg14_202603270001.jpeg" },
|
|
217
|
+
{ id: "bg15", name: "DevOps pipeline", tags: "deploy", file: "bg15_202603270001.jpeg" },
|
|
218
|
+
{ id: "bg16", name: "Data science", tags: "deploy", file: "bg16_202603270001.jpeg" },
|
|
219
|
+
{ id: "bg17", name: "Frontend design", tags: "hype", file: "bg17_202603270001.jpeg" },
|
|
220
|
+
{ id: "bg18", name: "QA testing", tags: "debug, hype", file: "bg18_202603270001.jpeg" },
|
|
221
|
+
{ id: "bg19", name: "Deadlock and freeze", tags: "git", file: "bg19_202603270001.jpeg" },
|
|
222
|
+
{ id: "bg20", name: "Legacy code", tags: "debug", file: "bg20_202603270001.jpeg" },
|
|
223
|
+
{ id: "bg21", name: "Hackathon energy", tags: "general", file: "bg21_202603270001.jpeg" },
|
|
224
|
+
{ id: "bg22", name: "Open source community", tags: "git", file: "bg22_202603270001.jpeg" },
|
|
225
|
+
{ id: "bg23", name: "AI and machine learning", tags: "beginner, hype", file: "bg23_202603270001.jpeg" },
|
|
226
|
+
{ id: "bg24", name: "Mobile development", tags: "hype", file: "bg24_202603270001.jpeg" },
|
|
227
|
+
{ id: "bg25", name: "Startup hustle", tags: "general", file: "bg25_202603270001.jpeg" },
|
|
228
|
+
{ id: "bg26", name: "Enterprise corporate", tags: "git, debug", file: "bg26_202603270001.jpeg" },
|
|
229
|
+
{ id: "bg27", name: "Coffee and caffeine", tags: "git, hype, lifestyle", file: "bg27_202603270001.jpeg" },
|
|
230
|
+
{ id: "bg28", name: "Concurrency", tags: "general", file: "bg28_202603270001.jpeg" },
|
|
231
|
+
{ id: "bg29", name: "Version control", tags: "git", file: "bg29_202603270001.jpeg" },
|
|
232
|
+
{ id: "bg30", name: "Zen productivity", tags: "deploy, git", file: "bg30_202603270001.jpeg" },
|
|
232
233
|
];
|
|
234
|
+
const IMAGE_MAP = new Map(IMAGE_CATALOG.map(e => [e.id, e]));
|
|
235
|
+
export function resolveImageId(id) {
|
|
236
|
+
const entry = IMAGE_MAP.get(id);
|
|
237
|
+
if (!entry)
|
|
238
|
+
throw new Error(`Unknown image ID: "${id}". Valid: img1-img200, bg1-bg30`);
|
|
239
|
+
return IMAGE_BASE_URL + entry.file;
|
|
240
|
+
}
|