Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ heroColor: "#398DAD"
thumb: "thumb.png"
thumb_h: "thumb-h.png"
intro: "A systematic introduction to the fundamental differences between Ethereum and Solana in account models, execution mechanisms, and fee systems."
top: true
weight: 998
---

## Overview
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ thumb: "./thumb.png"
thumb_h: "./thumb_h.png"
intro: ""
previousSlugs: []
top: true
weight: 1000
---

Over the past decade, I’ve overseen the launch of over 120 MVPs. I’ve watched companies evolve from napkin sketches to Series C scale, some as independent startups, others as incubated ventures within mature tech organizations. Combined with my experience running global engineering teams as a VP of Engineering for a public company, this vantage point has taught me a singular truth: distributed work succeeds brilliantly, or it fails in ways that slow companies down for years.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ heroColor: "#8761B1"
thumb: "./thumb.png"
thumb_h: "./thumb_h.png"
intro: "Creative has emerged as a key driver influencing success in performance marketing, and digital advertising companies are increasingly asked to facilitate the creation of advertisements. How did we get here, and what comes next?"
top: true
weight: 999
---

The digital advertising landscape has recently undergone a significant shift in the wake of short-form video, privacy initiatives, and generative AI. As a result, the industry has moved toward recognizing creative iteration as a primary performance lever. In this article, we’ll recount the history of digital advertising as it pertains to the importance of creative and articulate the current landscape of relevant players. The takeaway is clear: modern advertising platforms are facing mounting pressure to embed creative iteration directly into the performance advertising workflow.
Expand Down
8 changes: 0 additions & 8 deletions scripts/file.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,6 @@ export function extractMeta(fileName) {

export function sortMetadata(metaDataList) {
metaDataList.sort((a, b) => {
if (a.top !== b.top) {
return a.top ? -1 : 1;
}

if (a.weight !== b.weight) {
return b.weight - a.weight;
}

try {
return new Date(b.createTime) - new Date(a.createTime);
} catch (e) {
Expand Down