Skip to content

Commit bc8a0ec

Browse files
committed
updated portfolio to remove duplicates from keywords and technologies
1 parent 100fe63 commit bc8a0ec

6 files changed

+412
-17
lines changed

post_template.html

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,15 @@ <h3 class="competency-title-sidebar">{{ post.title }}</h3>
117117
<section>
118118
<h2 class="section-heading">Technologies & Keywords</h2>
119119
<div class="tech-stack">
120-
{% for tech in post.core_technologies %}
121-
<span class="tag">{{ tech }}</span>
120+
{% set all_tags = post.core_technologies + post.keywords %}
121+
{% set unique_tags = [] %}
122+
{% for tag in all_tags %}
123+
{% if tag not in unique_tags %}
124+
{% set _ = unique_tags.append(tag) %}
125+
{% endif %}
122126
{% endfor %}
123-
{% for keyword in post.keywords %}
124-
<span class="tag">{{ keyword }}</span>
127+
{% for tag in unique_tags %}
128+
<span class="tag">{{ tag }}</span>
125129
{% endfor %}
126130
</div>
127131
</section>

posts/from-messy-data-to-production-mlops-my-network-security-journey-part-1.html

Lines changed: 91 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,97 @@ <h3 class="competency-title-sidebar">From Messy Data to Production MLOps: My Net
206206
<h2 class="section-heading">Technologies & Keywords</h2>
207207
<div class="tech-stack">
208208

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+
209300
<span class="tag">Python</span>
210301

211302
<span class="tag">MLflow</span>
@@ -228,7 +319,6 @@ <h2 class="section-heading">Technologies & Keywords</h2>
228319

229320
<span class="tag">GitHub Actions</span>
230321

231-
232322
<span class="tag">MLOps</span>
233323

234324
<span class="tag">End-to-End ML Pipeline</span>

posts/from-messy-data-to-production-mlops-my-network-security-journey-part-2.html

Lines changed: 87 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,93 @@ <h3 class="competency-title-sidebar">From Messy Data to Production MLOps: My Net
196196
<h2 class="section-heading">Technologies & Keywords</h2>
197197
<div class="tech-stack">
198198

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+
199286
<span class="tag">Python</span>
200287

201288
<span class="tag">MLflow</span>
@@ -218,7 +305,6 @@ <h2 class="section-heading">Technologies & Keywords</h2>
218305

219306
<span class="tag">GitHub Actions</span>
220307

221-
222308
<span class="tag">CI/CD automation</span>
223309

224310
<span class="tag">Schema Validation</span>

posts/from-notebook-to-ui-the-local-development-journey-part-1.html

Lines changed: 59 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,65 @@ <h3 class="competency-title-sidebar">From Notebook to UI: The Local Development
207207
<h2 class="section-heading">Technologies & Keywords</h2>
208208
<div class="tech-stack">
209209

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+
210269
<span class="tag">PyTorch</span>
211270

212271
<span class="tag">FastAPI</span>
@@ -219,7 +278,6 @@ <h2 class="section-heading">Technologies & Keywords</h2>
219278

220279
<span class="tag">TensorBoard</span>
221280

222-
223281
<span class="tag">MLOps</span>
224282

225283
<span class="tag">Computer Vision</span>

posts/from-notebook-to-ui-the-web-deployment-journey-part-2.html

Lines changed: 59 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,65 @@ <h3 class="competency-title-sidebar">From Notebook to UI: The Web Deployment Jou
170170
<h2 class="section-heading">Technologies & Keywords</h2>
171171
<div class="tech-stack">
172172

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+
173232
<span class="tag">PyTorch</span>
174233

175234
<span class="tag">FastAPI</span>
@@ -182,7 +241,6 @@ <h2 class="section-heading">Technologies & Keywords</h2>
182241

183242
<span class="tag">TensorBoard</span>
184243

185-
186244
<span class="tag">MLOps</span>
187245

188246
<span class="tag">Computer Vision</span>

0 commit comments

Comments
 (0)