fastbrowser_cli 1.0.35 → 1.0.39
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/README.md +26 -5
- package/dist/contribs/_shared/fastbrowser_helper.d.ts +13 -0
- package/dist/contribs/_shared/fastbrowser_helper.d.ts.map +1 -0
- package/dist/contribs/_shared/fastbrowser_helper.js +39 -0
- package/dist/contribs/_shared/fastbrowser_helper.js.map +1 -0
- package/dist/contribs/linkedin_cli/src/cli.d.ts +3 -0
- package/dist/contribs/linkedin_cli/src/cli.d.ts.map +1 -0
- package/dist/contribs/linkedin_cli/src/cli.js +299 -0
- package/dist/contribs/linkedin_cli/src/cli.js.map +1 -0
- package/dist/contribs/linkedin_cli/src/libs/linkedin_profile_helper.d.ts +73 -0
- package/dist/contribs/linkedin_cli/src/libs/linkedin_profile_helper.d.ts.map +1 -0
- package/dist/contribs/linkedin_cli/src/libs/linkedin_profile_helper.js +866 -0
- package/dist/contribs/linkedin_cli/src/libs/linkedin_profile_helper.js.map +1 -0
- package/dist/contribs/linkedin_cli/src/libs/linkedin_recent_posts_helper.d.ts +61 -0
- package/dist/contribs/linkedin_cli/src/libs/linkedin_recent_posts_helper.d.ts.map +1 -0
- package/dist/contribs/linkedin_cli/src/libs/linkedin_recent_posts_helper.js +885 -0
- package/dist/contribs/linkedin_cli/src/libs/linkedin_recent_posts_helper.js.map +1 -0
- package/dist/contribs/linkedin_cli/src/libs/linkedin_thread_helper.d.ts +11 -0
- package/dist/contribs/linkedin_cli/src/libs/linkedin_thread_helper.d.ts.map +1 -0
- package/dist/contribs/linkedin_cli/src/libs/linkedin_thread_helper.js +145 -0
- package/dist/contribs/linkedin_cli/src/libs/linkedin_thread_helper.js.map +1 -0
- package/dist/contribs/twitter_cli/src/cli.d.ts +3 -0
- package/dist/contribs/twitter_cli/src/cli.d.ts.map +1 -0
- package/dist/contribs/twitter_cli/src/cli.js +273 -0
- package/dist/contribs/twitter_cli/src/cli.js.map +1 -0
- package/dist/contribs/twitter_cli/src/libs/twitter_profile_helper.d.ts +28 -0
- package/dist/contribs/twitter_cli/src/libs/twitter_profile_helper.d.ts.map +1 -0
- package/dist/contribs/twitter_cli/src/libs/twitter_profile_helper.js +274 -0
- package/dist/contribs/twitter_cli/src/libs/twitter_profile_helper.js.map +1 -0
- package/dist/contribs/twitter_cli/src/libs/twitter_recent_posts_helper.d.ts +43 -0
- package/dist/contribs/twitter_cli/src/libs/twitter_recent_posts_helper.d.ts.map +1 -0
- package/dist/contribs/twitter_cli/src/libs/twitter_recent_posts_helper.js +519 -0
- package/dist/contribs/twitter_cli/src/libs/twitter_recent_posts_helper.js.map +1 -0
- package/dist/contribs/twitter_cli/src/libs/twitter_thread_helper.d.ts +11 -0
- package/dist/contribs/twitter_cli/src/libs/twitter_thread_helper.d.ts.map +1 -0
- package/dist/contribs/twitter_cli/src/libs/twitter_thread_helper.js +213 -0
- package/dist/contribs/twitter_cli/src/libs/twitter_thread_helper.js.map +1 -0
- package/dist/fastbrowser_cli/fastbrowser_cli.js +43 -0
- package/dist/fastbrowser_cli/fastbrowser_cli.js.map +1 -1
- package/dist/fastbrowser_httpd/libs/tool-schemas.d.ts +4 -0
- package/dist/fastbrowser_httpd/libs/tool-schemas.d.ts.map +1 -1
- package/dist/fastbrowser_httpd/libs/tool-schemas.js +4 -0
- package/dist/fastbrowser_httpd/libs/tool-schemas.js.map +1 -1
- package/dist/fastbrowser_mcp/fastbrowser_mcp.js +36 -2
- package/dist/fastbrowser_mcp/fastbrowser_mcp.js.map +1 -1
- package/dist/fastbrowser_mcp/libs/mcp_target_helper.d.ts +2 -0
- package/dist/fastbrowser_mcp/libs/mcp_target_helper.d.ts.map +1 -1
- package/dist/fastbrowser_mcp/libs/mcp_target_helper.js +12 -0
- package/dist/fastbrowser_mcp/libs/mcp_target_helper.js.map +1 -1
- package/dist/fastbrowser_mcp/libs/response_formatter.d.ts +1 -0
- package/dist/fastbrowser_mcp/libs/response_formatter.d.ts.map +1 -1
- package/dist/fastbrowser_mcp/libs/response_formatter.js +27 -0
- package/dist/fastbrowser_mcp/libs/response_formatter.js.map +1 -1
- package/dist/shared/fastbrowser_helper.d.ts +13 -0
- package/dist/shared/fastbrowser_helper.d.ts.map +1 -0
- package/dist/shared/fastbrowser_helper.js +39 -0
- package/dist/shared/fastbrowser_helper.js.map +1 -0
- package/examples/linkedin_cli_TOREMOVE/README.md +7 -0
- package/examples/linkedin_cli_TOREMOVE/linkedin_dm.sh +40 -0
- package/examples/linkedin_cli_TOREMOVE/linkedin_dm.ts +326 -0
- package/examples/linkedin_cli_TOREMOVE/linkedin_dm_messages.ts +279 -0
- package/examples/linkedin_cli_TOREMOVE/linkedin_full_cycle.sh +5 -0
- package/examples/{linkedin_cli/linked_post.sh → linkedin_cli_TOREMOVE/linkedin_post.sh} +3 -0
- package/examples/linkedin_cli_TOREMOVE/message_thread.a11y.txt +252 -0
- package/examples/whatsapp/whatapp.a11y.txt +1521 -0
- package/examples/whatsapp/whatsapp.sh +10 -0
- package/listitem +7 -0
- package/package.json +7 -3
- package/skills/fastbrowser/SKILL.md +116 -29
- package/src/contribs/_shared/fastbrowser_helper.ts +49 -0
- package/src/contribs/linkedin_cli/README.md +80 -0
- package/src/contribs/linkedin_cli/data/linkedin_posts_jeromeetienne.a11y.txt +2364 -0
- package/src/contribs/linkedin_cli/data/linkedin_posts_jontwigge.a11y.txt +2740 -0
- package/src/contribs/linkedin_cli/data/linkedin_posts_julien_guezennec.a11y.txt +2073 -0
- package/src/contribs/linkedin_cli/data/linkedin_profile_jeromeetienne.a11y.txt +1863 -0
- package/src/contribs/linkedin_cli/data/linkedin_profile_jontwigge.a11y.txt +1738 -0
- package/src/contribs/linkedin_cli/data/linkedin_profile_julien_guezennec.a11y.txt +2182 -0
- package/src/contribs/linkedin_cli/src/cli.ts +345 -0
- package/src/contribs/linkedin_cli/src/libs/linkedin_profile_helper.ts +964 -0
- package/src/contribs/linkedin_cli/src/libs/linkedin_recent_posts_helper.ts +982 -0
- package/src/contribs/linkedin_cli/src/libs/linkedin_thread_helper.ts +171 -0
- package/src/contribs/twitter_cli/README.md +79 -0
- package/src/contribs/twitter_cli/data/twitter_chat.a11y.txt +215 -0
- package/src/contribs/twitter_cli/data/twitter_home.a11y.txt +467 -0
- package/src/contribs/twitter_cli/data/twitter_profile.a11y.txt +418 -0
- package/src/contribs/twitter_cli/data/twitter_profile_jontwigge.a11y.txt +484 -0
- package/src/contribs/twitter_cli/data/twitter_profile_molokoloco.a11y.txt +483 -0
- package/src/contribs/twitter_cli/src/cli.ts +315 -0
- package/src/contribs/twitter_cli/src/libs/twitter_profile_helper.ts +328 -0
- package/src/contribs/twitter_cli/src/libs/twitter_recent_posts_helper.ts +607 -0
- package/src/contribs/twitter_cli/src/libs/twitter_thread_helper.ts +240 -0
- package/src/fastbrowser_cli/fastbrowser_cli.ts +51 -0
- package/src/fastbrowser_httpd/libs/tool-schemas.ts +6 -0
- package/src/fastbrowser_mcp/fastbrowser_mcp.ts +46 -3
- package/src/fastbrowser_mcp/libs/mcp_target_helper.ts +11 -0
- package/src/fastbrowser_mcp/libs/response_formatter.ts +29 -0
- package/src/shared/fastbrowser_helper.ts +49 -0
- package/tsconfig.json +1 -1
- package/examples/linkedin_cli/linked_dm.sh +0 -19
- package/examples/mcp_client_playwright.ts +0 -34
- /package/examples/{linkedin_cli → linkedin_cli_TOREMOVE}/linkedin.snapshot.txt +0 -0
- /package/examples/{twitter_cli → twitter_cli_TOREMOVE}/twitter_post.sh +0 -0
|
@@ -0,0 +1,2364 @@
|
|
|
1
|
+
uid=e1 generic active
|
|
2
|
+
uid=s4 generic
|
|
3
|
+
uid=e373 heading "0 notifications" level="2"
|
|
4
|
+
uid=s5 StaticText " "
|
|
5
|
+
uid=e2644 iframe
|
|
6
|
+
uid=f101e1 generic active
|
|
7
|
+
uid=s6 generic
|
|
8
|
+
uid=s7 region "Toast message"
|
|
9
|
+
uid=f101e3 heading "0 notifications total" level="2"
|
|
10
|
+
uid=s8 alert
|
|
11
|
+
uid=f101e4 region
|
|
12
|
+
uid=f101e5 generic
|
|
13
|
+
uid=f101e7 generic
|
|
14
|
+
uid=f101e8 button "Skip to search"
|
|
15
|
+
uid=f101e9 generic value="Skip to search"
|
|
16
|
+
uid=f101e10 button "Skip to main content"
|
|
17
|
+
uid=f101e11 generic value="Skip to main content"
|
|
18
|
+
uid=f101e12 button "Keyboard shortcuts"
|
|
19
|
+
uid=f101e13 generic value="Keyboard shortcuts"
|
|
20
|
+
uid=f101e14 button "Close jump menu"
|
|
21
|
+
uid=f101e15 img
|
|
22
|
+
uid=f101e17 generic value="Close jump menu"
|
|
23
|
+
uid=f101e18 banner "Global Navigation"
|
|
24
|
+
uid=f101e19 generic
|
|
25
|
+
uid=f101e20 link "LinkedIn" url="https://www.linkedin.com/feed/?nis=true"
|
|
26
|
+
uid=f101e23 img "LinkedIn"
|
|
27
|
+
uid=f101e24 img
|
|
28
|
+
uid=f101e28 generic
|
|
29
|
+
uid=f101e29 combobox "Search"
|
|
30
|
+
uid=s9 generic
|
|
31
|
+
uid=s10 img
|
|
32
|
+
uid=f101e30 navigation "Primary Navigation"
|
|
33
|
+
uid=f101e31 list
|
|
34
|
+
uid=f101e32 listitem
|
|
35
|
+
uid=f101e124 link "Home" url="https://www.linkedin.com/feed/"
|
|
36
|
+
uid=f101e128 img
|
|
37
|
+
uid=f101e43 generic "Home"
|
|
38
|
+
uid=f101e44 listitem
|
|
39
|
+
uid=f101e45 link "My Network" url="https://www.linkedin.com/mynetwork/?"
|
|
40
|
+
uid=f101e131 img
|
|
41
|
+
uid=f101e51 generic "My Network"
|
|
42
|
+
uid=f101e52 listitem
|
|
43
|
+
uid=f101e53 link "Jobs" url="https://www.linkedin.com/jobs/?"
|
|
44
|
+
uid=f101e134 img
|
|
45
|
+
uid=f101e59 generic "Jobs"
|
|
46
|
+
uid=f101e60 listitem
|
|
47
|
+
uid=f101e61 link "Messaging" url="https://www.linkedin.com/messaging/?"
|
|
48
|
+
uid=f101e137 img
|
|
49
|
+
uid=f101e67 generic "Messaging"
|
|
50
|
+
uid=f101e68 listitem
|
|
51
|
+
uid=f101e139 link "3 new notifications Notifications" url="https://www.linkedin.com/notifications/?"
|
|
52
|
+
uid=f101e115 generic
|
|
53
|
+
uid=f101e116 generic
|
|
54
|
+
uid=f101e117 generic value="3"
|
|
55
|
+
uid=f101e118 generic value="3 new notifications"
|
|
56
|
+
uid=f101e141 img
|
|
57
|
+
uid=f101e75 generic "Notifications"
|
|
58
|
+
uid=f101e76 listitem
|
|
59
|
+
uid=f101e78 button "Jerome Etienne Me"
|
|
60
|
+
uid=f101e79 img "Jerome Etienne"
|
|
61
|
+
uid=f101e80 generic
|
|
62
|
+
uid=s11 StaticText "Me"
|
|
63
|
+
uid=f101e81 img
|
|
64
|
+
uid=f101e83 listitem
|
|
65
|
+
uid=f101e85 button "For Business"
|
|
66
|
+
uid=f101e89 img
|
|
67
|
+
uid=f101e91 generic "For Business"
|
|
68
|
+
uid=s12 StaticText "For Business"
|
|
69
|
+
uid=f101e92 img
|
|
70
|
+
uid=f101e94 listitem
|
|
71
|
+
uid=f101e96 link "Claim your 1 month free Premium Page" url="http://www.linkedin.com/premium/products/?upsellOrderOrigin=Tracking%3Av1%3Apremium_page_nav_upsell_text%3ACompany+Pages+SKU%3AIn-Product&referenceId=JQeCW4gKRcefD3tlAwBZ1w%3D%3D&companyUrn=urn%3Ali%3Afsd_company%3A106063595&isSS=false&upsellSlotId=NAV_SPOTLIGHT&destRedirectURL=https%3A%2F%2Fwww.linkedin.com%2Fin%2Fjontwigge%2F"
|
|
72
|
+
uid=f101e98 generic value="Claim your 1 month free Premium Page"
|
|
73
|
+
uid=f101e147 generic
|
|
74
|
+
uid=f101e148 complementary
|
|
75
|
+
uid=f101e151 generic
|
|
76
|
+
uid=f101e154 link "Jerome Etienne" url="/in/jeromeetienne/"
|
|
77
|
+
uid=f101e155 img "Jerome Etienne"
|
|
78
|
+
uid=f101e156 generic
|
|
79
|
+
uid=f101e157 link "Jerome Etienne" url="/in/jeromeetienne/"
|
|
80
|
+
uid=f101e158 heading "Jerome Etienne" level="3"
|
|
81
|
+
uid=f101e159 heading "Your social media 10x faster with ContentMagick.ai 🧠✨" level="4"
|
|
82
|
+
uid=f101e161 generic
|
|
83
|
+
uid=f101e162 generic
|
|
84
|
+
uid=f101e163 generic value="Followers"
|
|
85
|
+
uid=f101e164 link "979" url="/mynetwork/network-manager/people-follow/followers/"
|
|
86
|
+
uid=f101e165 generic value="979"
|
|
87
|
+
uid=f101e166 generic
|
|
88
|
+
uid=f101e167 generic value="Drafts"
|
|
89
|
+
uid=f101e168 link "18" url="https://www.linkedin.com/article/manage/drafts"
|
|
90
|
+
uid=f101e169 generic value="18"
|
|
91
|
+
uid=f101e170 main
|
|
92
|
+
uid=f101e172 generic
|
|
93
|
+
uid=f101e173 heading "All activity" level="2"
|
|
94
|
+
uid=f101e176 group "Select type of recent activity"
|
|
95
|
+
uid=f101e177 button "Posts" pressed
|
|
96
|
+
uid=f101e178 generic value="Posts"
|
|
97
|
+
uid=f101e179 button "Comments"
|
|
98
|
+
uid=f101e180 generic value="Comments"
|
|
99
|
+
uid=f101e181 button "Videos"
|
|
100
|
+
uid=f101e182 generic value="Videos"
|
|
101
|
+
uid=f101e183 button "Images"
|
|
102
|
+
uid=f101e184 generic value="Images"
|
|
103
|
+
uid=f101e185 button "More"
|
|
104
|
+
uid=f101e186 generic value="More"
|
|
105
|
+
uid=f101e187 img
|
|
106
|
+
uid=f101e191 generic
|
|
107
|
+
uid=f101e192 generic
|
|
108
|
+
uid=f101e193 generic value="Loaded 20 Posts posts"
|
|
109
|
+
uid=f101e194 list
|
|
110
|
+
uid=f101e195 listitem
|
|
111
|
+
uid=f101e197 generic
|
|
112
|
+
uid=f101e198 generic
|
|
113
|
+
uid=f101e199 generic value="Promote this post to reach people who matter to you."
|
|
114
|
+
uid=f101e201 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3Ashare%3A7456353484548898816&origin=memberProfileAllActivity"
|
|
115
|
+
uid=s13 StaticText "Boost"
|
|
116
|
+
uid=f101e204 article
|
|
117
|
+
uid=f101e206 generic
|
|
118
|
+
uid=f101e207 heading "Feed post number 1" level="2"
|
|
119
|
+
uid=f101e208 generic
|
|
120
|
+
uid=f101e209 generic
|
|
121
|
+
uid=f101e211 generic
|
|
122
|
+
uid=f101e212 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
123
|
+
uid=f101e216 img "View Jerome Etienne’s graphic link"
|
|
124
|
+
uid=f101e217 generic
|
|
125
|
+
uid=s14 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
126
|
+
uid=f101e219 generic
|
|
127
|
+
uid=f101e221 generic
|
|
128
|
+
uid=f101e222 generic value="Jerome Etienne"
|
|
129
|
+
uid=f101e223 generic value="Jerome Etienne"
|
|
130
|
+
uid=f101e224 generic
|
|
131
|
+
uid=f101e225 generic
|
|
132
|
+
uid=f101e226 img
|
|
133
|
+
uid=s15 StaticText "• You"
|
|
134
|
+
uid=f101e228 generic value="Verified • You"
|
|
135
|
+
uid=f101e229 generic
|
|
136
|
+
uid=f101e230 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
137
|
+
uid=f101e231 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
138
|
+
uid=f101e232 generic
|
|
139
|
+
uid=f101e233 generic
|
|
140
|
+
uid=s16 StaticText "1d •"
|
|
141
|
+
uid=f101e236 img
|
|
142
|
+
uid=f101e238 generic value="1 day ago • Visible to anyone on or off LinkedIn"
|
|
143
|
+
uid=f101e241 button "Open control menu for post by Jerome Etienne"
|
|
144
|
+
uid=f101e242 img
|
|
145
|
+
uid=f101e245 generic
|
|
146
|
+
uid=f101e248 generic
|
|
147
|
+
uid=s17 StaticText "Quietly built out bsky_client over the last week — a TypeScript CLI for Bluesky/ATProto."
|
|
148
|
+
uid=s18 StaticText "What's in v1.1.4:"
|
|
149
|
+
uid=s19 StaticText "✅ login / logout / status with persistent sessions"
|
|
150
|
+
uid=s20 StaticText "✅ posts: create, list, view, delete, reply"
|
|
151
|
+
uid=s21 StaticText "✅ likes + follows (with proper \"already liked\" / \"not following\" errors)"
|
|
152
|
+
uid=s22 StaticText "✅ search: posts, users, and advanced filters (author, date range, language)"
|
|
153
|
+
uid=s23 StaticText "✅ --json global flag for clean agent/script consumption"
|
|
154
|
+
uid=s24 StaticText "✅"
|
|
155
|
+
uid=f101e249 link "SKILL.md" url="http://SKILL.md"
|
|
156
|
+
uid=s25 StaticText "included so AI agents can use it out of the box"
|
|
157
|
+
uid=s26 StaticText "🔜 more agent-friendly affordances"
|
|
158
|
+
uid=s27 StaticText "Built it because I wanted my agents to interact with Bluesky the same way I do — through a small, scriptable surface — without each one re-implementing ATProto auth."
|
|
159
|
+
uid=f101e250 link "https://lnkd.in/e8Ay578B" url="https://lnkd.in/e8Ay578B"
|
|
160
|
+
uid=f101e251 link "hashtag buildInPublic" url="https://www.linkedin.com/search/results/all/?keywords=%23buildinpublic&origin=HASH_TAG_FROM_FEED"
|
|
161
|
+
uid=f101e252 generic value="hashtag"
|
|
162
|
+
uid=f101e253 generic value="#buildInPublic"
|
|
163
|
+
uid=f101e254 link "hashtag opensource" url="https://www.linkedin.com/search/results/all/?keywords=%23opensource&origin=HASH_TAG_FROM_FEED"
|
|
164
|
+
uid=f101e255 generic value="hashtag"
|
|
165
|
+
uid=f101e256 generic value="#opensource"
|
|
166
|
+
uid=f101e257 link "hashtag typescript" url="https://www.linkedin.com/search/results/all/?keywords=%23typescript&origin=HASH_TAG_FROM_FEED"
|
|
167
|
+
uid=f101e258 generic value="hashtag"
|
|
168
|
+
uid=f101e259 generic value="#typescript"
|
|
169
|
+
uid=f101e260 link "hashtag bluesky" url="https://www.linkedin.com/search/results/all/?keywords=%23bluesky&origin=HASH_TAG_FROM_FEED"
|
|
170
|
+
uid=f101e261 generic value="hashtag"
|
|
171
|
+
uid=f101e262 generic value="#bluesky"
|
|
172
|
+
uid=f101e263 link "hashtag atproto" url="https://www.linkedin.com/search/results/all/?keywords=%23atproto&origin=HASH_TAG_FROM_FEED"
|
|
173
|
+
uid=f101e264 generic value="hashtag"
|
|
174
|
+
uid=f101e265 generic value="#atproto"
|
|
175
|
+
uid=f101e266 link "hashtag AIagents" url="https://www.linkedin.com/search/results/all/?keywords=%23aiagents&origin=HASH_TAG_FROM_FEED"
|
|
176
|
+
uid=f101e267 generic value="hashtag"
|
|
177
|
+
uid=f101e268 generic value="#AIagents"
|
|
178
|
+
uid=f101e269 button "see more, visually reveals content which is already detected by screen readers"
|
|
179
|
+
uid=f101e270 generic value="…more"
|
|
180
|
+
uid=f101e272 generic
|
|
181
|
+
uid=f101e273 generic
|
|
182
|
+
uid=f101e274 button "Activate to view larger image, graphical user interface, application"
|
|
183
|
+
uid=f101e275 generic value="Activate to view larger image,"
|
|
184
|
+
uid=f101e278 img "graphical user interface, application"
|
|
185
|
+
uid=f101e280 generic
|
|
186
|
+
uid=f101e281 button "This image has content credentials."
|
|
187
|
+
uid=f101e282 img
|
|
188
|
+
uid=f101e283 img
|
|
189
|
+
uid=f101e285 generic value="See content credentials"
|
|
190
|
+
uid=f101e286 generic value="Activate to view larger image,"
|
|
191
|
+
uid=f101e287 generic
|
|
192
|
+
uid=f101e291 list
|
|
193
|
+
uid=f101e292 listitem
|
|
194
|
+
uid=f101e293 button "Julien Guézennec and 3 others"
|
|
195
|
+
uid=f101e294 img "like"
|
|
196
|
+
uid=f101e295 generic
|
|
197
|
+
uid=f101e296 generic value="4"
|
|
198
|
+
uid=f101e297 generic value="Julien Guézennec and 3 others"
|
|
199
|
+
uid=f101e298 generic
|
|
200
|
+
uid=f101e299 generic
|
|
201
|
+
uid=f101e300 button "React Like"
|
|
202
|
+
uid=f101e302 generic
|
|
203
|
+
uid=f101e303 img
|
|
204
|
+
uid=f101e305 generic value="Like"
|
|
205
|
+
uid=s28 button "Open reactions menu"
|
|
206
|
+
uid=f101e307 img
|
|
207
|
+
uid=f101e311 button "Comment"
|
|
208
|
+
uid=f101e312 img
|
|
209
|
+
uid=f101e314 generic value="Comment"
|
|
210
|
+
uid=f101e317 button "Repost"
|
|
211
|
+
uid=f101e318 img
|
|
212
|
+
uid=f101e320 generic value="Repost"
|
|
213
|
+
uid=f101e323 button "Send in a private message"
|
|
214
|
+
uid=f101e324 img
|
|
215
|
+
uid=f101e327 generic value="Send"
|
|
216
|
+
uid=f101e330 link "266 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7456353491050086400/"
|
|
217
|
+
uid=f101e331 generic
|
|
218
|
+
uid=f101e332 generic
|
|
219
|
+
uid=f101e333 img
|
|
220
|
+
uid=f101e336 strong value="266 impressions"
|
|
221
|
+
uid=f101e337 generic value="View analytics"
|
|
222
|
+
uid=f101e338 listitem
|
|
223
|
+
uid=f101e340 generic
|
|
224
|
+
uid=f101e341 generic
|
|
225
|
+
uid=f101e342 generic value="Promote this post to reach people who matter to you."
|
|
226
|
+
uid=f101e344 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3Ashare%3A7456175368148840448&origin=memberProfileAllActivity"
|
|
227
|
+
uid=s29 StaticText "Boost"
|
|
228
|
+
uid=f101e347 article
|
|
229
|
+
uid=f101e349 generic
|
|
230
|
+
uid=f101e350 heading "Feed post number 2" level="2"
|
|
231
|
+
uid=f101e351 generic
|
|
232
|
+
uid=f101e352 generic
|
|
233
|
+
uid=f101e354 generic
|
|
234
|
+
uid=f101e355 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
235
|
+
uid=f101e359 img "View Jerome Etienne’s graphic link"
|
|
236
|
+
uid=f101e360 generic
|
|
237
|
+
uid=s30 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
238
|
+
uid=f101e362 generic
|
|
239
|
+
uid=f101e364 generic
|
|
240
|
+
uid=f101e365 generic value="Jerome Etienne"
|
|
241
|
+
uid=f101e366 generic value="Jerome Etienne"
|
|
242
|
+
uid=f101e367 generic
|
|
243
|
+
uid=f101e368 generic
|
|
244
|
+
uid=f101e369 img
|
|
245
|
+
uid=s31 StaticText "• You"
|
|
246
|
+
uid=f101e371 generic value="Verified • You"
|
|
247
|
+
uid=f101e372 generic
|
|
248
|
+
uid=f101e373 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
249
|
+
uid=f101e374 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
250
|
+
uid=f101e375 generic
|
|
251
|
+
uid=f101e376 generic
|
|
252
|
+
uid=s32 StaticText "2d •"
|
|
253
|
+
uid=f101e379 img
|
|
254
|
+
uid=f101e381 generic value="2 days ago • Visible to anyone on or off LinkedIn"
|
|
255
|
+
uid=f101e384 button "Open control menu for post by Jerome Etienne"
|
|
256
|
+
uid=f101e385 img
|
|
257
|
+
uid=f101e388 generic
|
|
258
|
+
uid=f101e391 generic
|
|
259
|
+
uid=s33 StaticText "🚀 𝗝𝘂𝘀𝘁 𝘀𝗵𝗶𝗽𝗽𝗲𝗱 :is() :where() :not() :has() in a11y_parse 🎯"
|
|
260
|
+
uid=s34 StaticText "✨ 𝗖𝗦𝗦-𝗹𝗶𝗸𝗲 𝘀𝗲𝗹𝗲𝗰𝘁𝗼𝗿𝘀, but over the 𝗮𝗰𝗰𝗲𝘀𝘀𝗶𝗯𝗶𝗹𝗶𝘁𝘆 𝘁𝗿𝗲𝗲 🌳"
|
|
261
|
+
uid=s35 StaticText "🔍 *:has(button) → nodes containing a button"
|
|
262
|
+
uid=s36 StaticText "🔗 link:not([href^=\"https\"]) → internal links"
|
|
263
|
+
uid=s37 StaticText "👉"
|
|
264
|
+
uid=f101e392 link "https://lnkd.in/evXPZgb6" url="https://lnkd.in/evXPZgb6"
|
|
265
|
+
uid=f101e393 link "hashtag buildInPublic" url="https://www.linkedin.com/search/results/all/?keywords=%23buildinpublic&origin=HASH_TAG_FROM_FEED"
|
|
266
|
+
uid=f101e394 generic value="hashtag"
|
|
267
|
+
uid=f101e395 generic value="#buildInPublic"
|
|
268
|
+
uid=f101e396 link "hashtag typescript" url="https://www.linkedin.com/search/results/all/?keywords=%23typescript&origin=HASH_TAG_FROM_FEED"
|
|
269
|
+
uid=f101e397 generic value="hashtag"
|
|
270
|
+
uid=f101e398 generic value="#typescript"
|
|
271
|
+
uid=f101e399 link "hashtag a11y" url="https://www.linkedin.com/search/results/all/?keywords=%23a11y&origin=HASH_TAG_FROM_FEED"
|
|
272
|
+
uid=f101e400 generic value="hashtag"
|
|
273
|
+
uid=f101e401 generic value="#a11y"
|
|
274
|
+
uid=f101e402 link "hashtag opensource" url="https://www.linkedin.com/search/results/all/?keywords=%23opensource&origin=HASH_TAG_FROM_FEED"
|
|
275
|
+
uid=f101e403 generic value="hashtag"
|
|
276
|
+
uid=f101e404 generic value="#opensource"
|
|
277
|
+
uid=f101e405 button "see more, visually reveals content which is already detected by screen readers"
|
|
278
|
+
uid=f101e406 generic value="…more"
|
|
279
|
+
uid=f101e408 generic
|
|
280
|
+
uid=f101e409 generic
|
|
281
|
+
uid=f101e410 button "Activate to view larger image, graphical user interface"
|
|
282
|
+
uid=f101e411 generic value="Activate to view larger image,"
|
|
283
|
+
uid=f101e414 img "graphical user interface"
|
|
284
|
+
uid=f101e416 generic
|
|
285
|
+
uid=f101e417 button "This image has content credentials."
|
|
286
|
+
uid=f101e418 img
|
|
287
|
+
uid=f101e419 img
|
|
288
|
+
uid=f101e421 generic value="See content credentials"
|
|
289
|
+
uid=f101e422 generic value="Activate to view larger image,"
|
|
290
|
+
uid=f101e423 generic
|
|
291
|
+
uid=f101e427 list
|
|
292
|
+
uid=f101e428 listitem
|
|
293
|
+
uid=f101e429 button "1 reaction"
|
|
294
|
+
uid=f101e430 img "like"
|
|
295
|
+
uid=f101e431 generic value="1"
|
|
296
|
+
uid=f101e432 generic
|
|
297
|
+
uid=f101e433 generic
|
|
298
|
+
uid=f101e434 button "React Like"
|
|
299
|
+
uid=f101e436 generic
|
|
300
|
+
uid=f101e437 img
|
|
301
|
+
uid=f101e439 generic value="Like"
|
|
302
|
+
uid=s38 button "Open reactions menu"
|
|
303
|
+
uid=f101e441 img
|
|
304
|
+
uid=f101e445 button "Comment"
|
|
305
|
+
uid=f101e446 img
|
|
306
|
+
uid=f101e448 generic value="Comment"
|
|
307
|
+
uid=f101e451 button "Repost"
|
|
308
|
+
uid=f101e452 img
|
|
309
|
+
uid=f101e454 generic value="Repost"
|
|
310
|
+
uid=f101e457 button "Send in a private message"
|
|
311
|
+
uid=f101e458 img
|
|
312
|
+
uid=f101e461 generic value="Send"
|
|
313
|
+
uid=f101e464 link "85 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7456175369071579136/"
|
|
314
|
+
uid=f101e465 generic
|
|
315
|
+
uid=f101e466 generic
|
|
316
|
+
uid=f101e467 img
|
|
317
|
+
uid=f101e470 strong value="85 impressions"
|
|
318
|
+
uid=f101e471 generic value="View analytics"
|
|
319
|
+
uid=f101e472 listitem
|
|
320
|
+
uid=f101e474 generic
|
|
321
|
+
uid=f101e475 generic
|
|
322
|
+
uid=f101e476 generic value="Promote this post to reach people who matter to you."
|
|
323
|
+
uid=f101e478 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3Ashare%3A7455573307585900544&origin=memberProfileAllActivity"
|
|
324
|
+
uid=s39 StaticText "Boost"
|
|
325
|
+
uid=f101e481 article
|
|
326
|
+
uid=f101e483 generic
|
|
327
|
+
uid=f101e484 heading "Feed post number 3" level="2"
|
|
328
|
+
uid=f101e485 generic
|
|
329
|
+
uid=f101e486 generic
|
|
330
|
+
uid=f101e488 generic
|
|
331
|
+
uid=f101e489 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
332
|
+
uid=f101e493 img "View Jerome Etienne’s graphic link"
|
|
333
|
+
uid=f101e494 generic
|
|
334
|
+
uid=s40 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
335
|
+
uid=f101e496 generic
|
|
336
|
+
uid=f101e498 generic
|
|
337
|
+
uid=f101e499 generic value="Jerome Etienne"
|
|
338
|
+
uid=f101e500 generic value="Jerome Etienne"
|
|
339
|
+
uid=f101e501 generic
|
|
340
|
+
uid=f101e502 generic
|
|
341
|
+
uid=f101e503 img
|
|
342
|
+
uid=s41 StaticText "• You"
|
|
343
|
+
uid=f101e505 generic value="Verified • You"
|
|
344
|
+
uid=f101e506 generic
|
|
345
|
+
uid=f101e507 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
346
|
+
uid=f101e508 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
347
|
+
uid=f101e509 generic
|
|
348
|
+
uid=f101e510 generic
|
|
349
|
+
uid=s42 StaticText "3d •"
|
|
350
|
+
uid=f101e513 img
|
|
351
|
+
uid=f101e515 generic value="3 days ago • Visible to anyone on or off LinkedIn"
|
|
352
|
+
uid=f101e518 button "Open control menu for post by Jerome Etienne"
|
|
353
|
+
uid=f101e519 img
|
|
354
|
+
uid=f101e522 generic
|
|
355
|
+
uid=f101e525 generic
|
|
356
|
+
uid=s43 StaticText "Shipped a small thing this week: 𝗰𝗹𝗮𝘂𝗱𝗲_𝘀𝘁𝗿𝗲𝗮𝗺_𝘃𝗶𝗲𝘄𝗲𝗿 🛠️"
|
|
357
|
+
uid=s44 StaticText "If you've ever scripted Claude Code with --output-format stream-json, you know the problem: the output is great for machines, painful for humans. Every event arrives as a line of dense JSON, and finding the actual model response means scrolling past message_start envelopes, content_block_deltas, and usage metadata."
|
|
358
|
+
uid=s45 StaticText "So I wrote a ~200-line Node CLI that pipes the stream through chalk and renders it the way you actually want to read it:"
|
|
359
|
+
uid=s46 StaticText "✨ 𝘁𝗲𝘅𝘁 𝗱𝗲𝗹𝘁𝗮𝘀 stream inline as the model speaks"
|
|
360
|
+
uid=s47 StaticText "🔧 𝘁𝗼𝗼𝗹 𝘂𝘀𝗲 events get a clear header + pretty JSON"
|
|
361
|
+
uid=s48 StaticText "📦 𝗳𝗶𝗻𝗮𝗹 𝗺𝗲𝘀𝘀𝗮𝗴𝗲𝘀 are highlighted at the end"
|
|
362
|
+
uid=s49 StaticText "Drop it at the end of any pipe and you can finally watch the stream as a developer instead of as a parser:"
|
|
363
|
+
uid=s50 StaticText "claude --output-format stream-json --verbose -p \"...\" | npx claude_stream_viewer@latest"
|
|
364
|
+
uid=s51 StaticText "The honest part of building in public: I shipped 𝟭𝟱 𝗽𝗮𝘁𝗰𝗵 𝘃𝗲𝗿𝘀𝗶𝗼𝗻𝘀 in one morning. Wrong shebang. Missing chmod. README typo. The \"publish → npx → cringe → fix → repeat\" loop is humbling, but the feedback cycle is incredibly fast — and that's exactly why I love shipping small tools."
|
|
365
|
+
uid=s52 StaticText "🔗"
|
|
366
|
+
uid=f101e526 link "https://lnkd.in/eMiedCna" url="https://lnkd.in/eMiedCna"
|
|
367
|
+
uid=s53 StaticText "If you're building anything on top of the Claude Code CLI, give it a try and let me know what's missing."
|
|
368
|
+
uid=f101e527 link "hashtag buildInPublic" url="https://www.linkedin.com/search/results/all/?keywords=%23buildinpublic&origin=HASH_TAG_FROM_FEED"
|
|
369
|
+
uid=f101e528 generic value="hashtag"
|
|
370
|
+
uid=f101e529 generic value="#buildInPublic"
|
|
371
|
+
uid=f101e530 link "hashtag opensource" url="https://www.linkedin.com/search/results/all/?keywords=%23opensource&origin=HASH_TAG_FROM_FEED"
|
|
372
|
+
uid=f101e531 generic value="hashtag"
|
|
373
|
+
uid=f101e532 generic value="#opensource"
|
|
374
|
+
uid=f101e533 link "hashtag claudecode" url="https://www.linkedin.com/search/results/all/?keywords=%23claudecode&origin=HASH_TAG_FROM_FEED"
|
|
375
|
+
uid=f101e534 generic value="hashtag"
|
|
376
|
+
uid=f101e535 generic value="#claudecode"
|
|
377
|
+
uid=f101e536 link "hashtag typescript" url="https://www.linkedin.com/search/results/all/?keywords=%23typescript&origin=HASH_TAG_FROM_FEED"
|
|
378
|
+
uid=f101e537 generic value="hashtag"
|
|
379
|
+
uid=f101e538 generic value="#typescript"
|
|
380
|
+
uid=f101e539 link "hashtag developertools" url="https://www.linkedin.com/search/results/all/?keywords=%23developertools&origin=HASH_TAG_FROM_FEED"
|
|
381
|
+
uid=f101e540 generic value="hashtag"
|
|
382
|
+
uid=f101e541 generic value="#developertools"
|
|
383
|
+
uid=f101e542 button "see more, visually reveals content which is already detected by screen readers"
|
|
384
|
+
uid=f101e543 generic value="…more"
|
|
385
|
+
uid=f101e545 generic
|
|
386
|
+
uid=f101e547 button "Activate to view larger image, No alternative text description for this image"
|
|
387
|
+
uid=f101e548 generic value="Activate to view larger image,"
|
|
388
|
+
uid=f101e551 img "No alternative text description for this image"
|
|
389
|
+
uid=f101e552 generic value="Activate to view larger image,"
|
|
390
|
+
uid=f101e553 generic
|
|
391
|
+
uid=f101e557 list
|
|
392
|
+
uid=f101e558 listitem
|
|
393
|
+
uid=f101e559 button "Julien Guézennec and 2 others"
|
|
394
|
+
uid=f101e560 img "love"
|
|
395
|
+
uid=f101e561 img "like"
|
|
396
|
+
uid=f101e562 generic
|
|
397
|
+
uid=f101e563 generic value="3"
|
|
398
|
+
uid=f101e564 generic value="Julien Guézennec and 2 others"
|
|
399
|
+
uid=f101e565 generic
|
|
400
|
+
uid=f101e566 generic
|
|
401
|
+
uid=f101e567 button "React Like"
|
|
402
|
+
uid=f101e569 generic
|
|
403
|
+
uid=f101e570 img
|
|
404
|
+
uid=f101e572 generic value="Like"
|
|
405
|
+
uid=s54 button "Open reactions menu"
|
|
406
|
+
uid=f101e574 img
|
|
407
|
+
uid=f101e578 button "Comment"
|
|
408
|
+
uid=f101e579 img
|
|
409
|
+
uid=f101e581 generic value="Comment"
|
|
410
|
+
uid=f101e584 button "Repost"
|
|
411
|
+
uid=f101e585 img
|
|
412
|
+
uid=f101e587 generic value="Repost"
|
|
413
|
+
uid=f101e590 button "Send in a private message"
|
|
414
|
+
uid=f101e591 img
|
|
415
|
+
uid=f101e594 generic value="Send"
|
|
416
|
+
uid=f101e597 link "181 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7455573309942870016/"
|
|
417
|
+
uid=f101e598 generic
|
|
418
|
+
uid=f101e599 generic
|
|
419
|
+
uid=f101e600 img
|
|
420
|
+
uid=f101e603 strong value="181 impressions"
|
|
421
|
+
uid=f101e604 generic value="View analytics"
|
|
422
|
+
uid=f101e605 listitem
|
|
423
|
+
uid=f101e607 generic
|
|
424
|
+
uid=f101e608 generic
|
|
425
|
+
uid=f101e609 generic value="Promote this post to reach people who matter to you."
|
|
426
|
+
uid=f101e611 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3Ashare%3A7454736149316661248&origin=memberProfileAllActivity"
|
|
427
|
+
uid=s55 StaticText "Boost"
|
|
428
|
+
uid=f101e614 article
|
|
429
|
+
uid=f101e616 generic
|
|
430
|
+
uid=f101e617 heading "Feed post number 4" level="2"
|
|
431
|
+
uid=f101e618 generic
|
|
432
|
+
uid=f101e619 generic
|
|
433
|
+
uid=f101e621 generic
|
|
434
|
+
uid=f101e622 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
435
|
+
uid=f101e626 img "View Jerome Etienne’s graphic link"
|
|
436
|
+
uid=f101e627 generic
|
|
437
|
+
uid=s56 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
438
|
+
uid=f101e629 generic
|
|
439
|
+
uid=f101e631 generic
|
|
440
|
+
uid=f101e632 generic value="Jerome Etienne"
|
|
441
|
+
uid=f101e633 generic value="Jerome Etienne"
|
|
442
|
+
uid=f101e634 generic
|
|
443
|
+
uid=f101e635 generic
|
|
444
|
+
uid=f101e636 img
|
|
445
|
+
uid=s57 StaticText "• You"
|
|
446
|
+
uid=f101e638 generic value="Verified • You"
|
|
447
|
+
uid=f101e639 generic
|
|
448
|
+
uid=f101e640 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
449
|
+
uid=f101e641 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
450
|
+
uid=f101e642 generic
|
|
451
|
+
uid=f101e643 generic
|
|
452
|
+
uid=s58 StaticText "6d •"
|
|
453
|
+
uid=f101e646 img
|
|
454
|
+
uid=f101e648 generic value="6 days ago • Visible to anyone on or off LinkedIn"
|
|
455
|
+
uid=f101e651 button "Open control menu for post by Jerome Etienne"
|
|
456
|
+
uid=f101e652 img
|
|
457
|
+
uid=f101e655 generic
|
|
458
|
+
uid=f101e658 generic
|
|
459
|
+
uid=s59 StaticText "If you're building with AI, stop guessing how it works in production."
|
|
460
|
+
uid=s60 StaticText "The Anthropic engineering blog is one of the best resources out there right now: real insights on agent design, evals, tool use, and what actually breaks in practice."
|
|
461
|
+
uid=s61 StaticText "This isn’t fluff — it’s how frontier AI systems are actually built and debugged."
|
|
462
|
+
uid=s62 StaticText "Highly recommended for anyone serious about AI coding 👇"
|
|
463
|
+
uid=f101e659 link "https://lnkd.in/eadNi78D" url="https://lnkd.in/eadNi78D"
|
|
464
|
+
uid=f101e660 button "see more, visually reveals content which is already detected by screen readers"
|
|
465
|
+
uid=f101e661 generic value="…more"
|
|
466
|
+
uid=f101e662 generic
|
|
467
|
+
uid=s63 unknown url="https://www.anthropic.com/engineering"
|
|
468
|
+
uid=f101e667 img "Anthropic logo"
|
|
469
|
+
uid=f101e670 link "Engineering" url="https://www.anthropic.com/engineering"
|
|
470
|
+
uid=f101e673 generic
|
|
471
|
+
uid=f101e675 generic value="Engineering"
|
|
472
|
+
uid=f101e676 generic value="anthropic.com"
|
|
473
|
+
uid=f101e677 generic
|
|
474
|
+
uid=f101e681 list
|
|
475
|
+
uid=f101e682 listitem
|
|
476
|
+
uid=f101e683 button "Julien Bouquillon and 5 others"
|
|
477
|
+
uid=f101e684 img "like"
|
|
478
|
+
uid=f101e685 generic
|
|
479
|
+
uid=f101e686 generic value="6"
|
|
480
|
+
uid=f101e687 generic value="Julien Bouquillon and 5 others"
|
|
481
|
+
uid=f101e688 generic
|
|
482
|
+
uid=f101e689 generic
|
|
483
|
+
uid=f101e690 button "React Like"
|
|
484
|
+
uid=f101e692 generic
|
|
485
|
+
uid=f101e693 img
|
|
486
|
+
uid=f101e695 generic value="Like"
|
|
487
|
+
uid=s64 button "Open reactions menu"
|
|
488
|
+
uid=f101e697 img
|
|
489
|
+
uid=f101e701 button "Comment"
|
|
490
|
+
uid=f101e702 img
|
|
491
|
+
uid=f101e704 generic value="Comment"
|
|
492
|
+
uid=f101e707 button "Repost"
|
|
493
|
+
uid=f101e708 img
|
|
494
|
+
uid=f101e710 generic value="Repost"
|
|
495
|
+
uid=f101e713 button "Send in a private message"
|
|
496
|
+
uid=f101e714 img
|
|
497
|
+
uid=f101e717 generic value="Send"
|
|
498
|
+
uid=f101e720 link "338 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7454736149924818944/"
|
|
499
|
+
uid=f101e721 generic
|
|
500
|
+
uid=f101e722 generic
|
|
501
|
+
uid=f101e723 img
|
|
502
|
+
uid=f101e726 strong value="338 impressions"
|
|
503
|
+
uid=f101e727 generic value="View analytics"
|
|
504
|
+
uid=f101e728 listitem
|
|
505
|
+
uid=f101e730 generic
|
|
506
|
+
uid=f101e731 generic
|
|
507
|
+
uid=f101e732 generic value="Promote this post to reach people who matter to you."
|
|
508
|
+
uid=f101e734 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3AugcPost%3A7454522473036992513&origin=memberProfileAllActivity"
|
|
509
|
+
uid=s65 StaticText "Boost"
|
|
510
|
+
uid=f101e737 article
|
|
511
|
+
uid=f101e739 generic
|
|
512
|
+
uid=f101e740 heading "Feed post number 5" level="2"
|
|
513
|
+
uid=f101e741 generic
|
|
514
|
+
uid=f101e742 generic
|
|
515
|
+
uid=f101e744 generic
|
|
516
|
+
uid=f101e745 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
517
|
+
uid=f101e749 img "View Jerome Etienne’s graphic link"
|
|
518
|
+
uid=f101e750 generic
|
|
519
|
+
uid=s66 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
520
|
+
uid=f101e752 generic
|
|
521
|
+
uid=f101e754 generic
|
|
522
|
+
uid=f101e755 generic value="Jerome Etienne"
|
|
523
|
+
uid=f101e756 generic value="Jerome Etienne"
|
|
524
|
+
uid=f101e757 generic
|
|
525
|
+
uid=f101e758 generic
|
|
526
|
+
uid=f101e759 img
|
|
527
|
+
uid=s67 StaticText "• You"
|
|
528
|
+
uid=f101e761 generic value="Verified • You"
|
|
529
|
+
uid=f101e762 generic
|
|
530
|
+
uid=f101e763 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
531
|
+
uid=f101e764 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
532
|
+
uid=f101e765 generic
|
|
533
|
+
uid=f101e766 generic
|
|
534
|
+
uid=s68 StaticText "6d •"
|
|
535
|
+
uid=f101e769 img
|
|
536
|
+
uid=f101e771 generic value="6 days ago • Visible to anyone on or off LinkedIn"
|
|
537
|
+
uid=f101e774 button "Open control menu for post by Jerome Etienne"
|
|
538
|
+
uid=f101e775 img
|
|
539
|
+
uid=f101e778 generic
|
|
540
|
+
uid=f101e781 generic
|
|
541
|
+
uid=s69 StaticText "🤖 Unpopular opinion: If you're building AI agents that browse the web, you shouldn't be feeding them raw HTML or screenshots."
|
|
542
|
+
uid=s70 StaticText "Use the accessibility tree instead. 🌳"
|
|
543
|
+
uid=s71 StaticText "Here's why:"
|
|
544
|
+
uid=s72 StaticText "1️⃣ Token economy 💸 — A serialized a11y snapshot is typically 5–10× smaller than the equivalent HTML. Cheaper calls, faster turns, better recall."
|
|
545
|
+
uid=s73 StaticText "2️⃣ Stable grounding 🪨 — Roles and names are a contract between page authors and assistive tech. They survive redesigns that shatter `div.auth-block > a.btn--primary`. A \"Submit\" button stays a \"Submit\" button whether its class is `btn-primary-v2` or `cta-2025`."
|
|
546
|
+
uid=s74 StaticText "3️⃣ LLM-legible 🗣️ — Roles like `button`, `link`, `heading` and names like \"Search\" are exactly the vocabulary the model already speaks. No translation layer."
|
|
547
|
+
uid=s75 StaticText "4️⃣ Verifiable ✅ — Every node has a UID. You can log \"agent clicked uid=47, role=button, name='Delete account'\" and replay it. Pixel-coordinate clicks tell you nothing when things break."
|
|
548
|
+
uid=s76 StaticText "The DOM is too noisy. Screenshots break the moment a sidebar collapses. The a11y tree is the boring middle path that wins. 🎯"
|
|
549
|
+
uid=s77 StaticText "What I recommend instead 👇"
|
|
550
|
+
uid=s78 StaticText "Pair the accessibility tree with a CSS-shaped selector language. Developers already know CSS. LLMs have seen millions of CSS selectors in training. Don't invent a new query dialect — meet the model where it already is."
|
|
551
|
+
uid=s79 StaticText "Same target, two ways:"
|
|
552
|
+
uid=s80 StaticText "❌ DOM: div.header > nav > ul > li:nth-child(3) > a.nav-link--external"
|
|
553
|
+
uid=s81 StaticText "✅ a11y: navigation link[href^=\"https\"]"
|
|
554
|
+
uid=s82 StaticText "I built two small tools around this idea:"
|
|
555
|
+
uid=s83 StaticText "🔧 a11y_parse — parser + selector engine"
|
|
556
|
+
uid=s84 StaticText "👉"
|
|
557
|
+
uid=f101e782 link "https://lnkd.in/evXPZgb6" url="https://lnkd.in/evXPZgb6"
|
|
558
|
+
uid=s85 StaticText "🌐 fastbrowser_cli — snapshots live pages into the format a11y_parse consumes"
|
|
559
|
+
uid=s86 StaticText "👉"
|
|
560
|
+
uid=f101e783 link "https://lnkd.in/eDYymi-B" url="https://lnkd.in/eDYymi-B"
|
|
561
|
+
uid=s87 StaticText "Pipe one into the other and you have an agent loop that fits in a paragraph. 📦"
|
|
562
|
+
uid=s88 StaticText "Full write-up with the selector grammar and a concrete example here"
|
|
563
|
+
uid=s89 StaticText "Am I wrong? Are you betting on vision-first agents instead? 🤔"
|
|
564
|
+
uid=f101e784 link "hashtag AI" url="https://www.linkedin.com/search/results/all/?keywords=%23ai&origin=HASH_TAG_FROM_FEED"
|
|
565
|
+
uid=f101e785 generic value="hashtag"
|
|
566
|
+
uid=f101e786 generic value="#AI"
|
|
567
|
+
uid=f101e787 link "hashtag LLM" url="https://www.linkedin.com/search/results/all/?keywords=%23llm&origin=HASH_TAG_FROM_FEED"
|
|
568
|
+
uid=f101e788 generic value="hashtag"
|
|
569
|
+
uid=f101e789 generic value="#LLM"
|
|
570
|
+
uid=f101e790 link "hashtag WebAgents" url="https://www.linkedin.com/search/results/all/?keywords=%23webagents&origin=HASH_TAG_FROM_FEED"
|
|
571
|
+
uid=f101e791 generic value="hashtag"
|
|
572
|
+
uid=f101e792 generic value="#WebAgents"
|
|
573
|
+
uid=f101e793 link "hashtag Accessibility" url="https://www.linkedin.com/search/results/all/?keywords=%23accessibility&origin=HASH_TAG_FROM_FEED"
|
|
574
|
+
uid=f101e794 generic value="hashtag"
|
|
575
|
+
uid=f101e795 generic value="#Accessibility"
|
|
576
|
+
uid=f101e796 link "hashtag DeveloperTools" url="https://www.linkedin.com/search/results/all/?keywords=%23developertools&origin=HASH_TAG_FROM_FEED"
|
|
577
|
+
uid=f101e797 generic value="hashtag"
|
|
578
|
+
uid=f101e798 generic value="#DeveloperTools"
|
|
579
|
+
uid=f101e799 button "see more, visually reveals content which is already detected by screen readers"
|
|
580
|
+
uid=f101e800 generic value="…more"
|
|
581
|
+
uid=f101e801 article
|
|
582
|
+
uid=f101e802 generic
|
|
583
|
+
uid=s90 unknown url="https://www.linkedin.com/pulse/accessibility-trees-ai-browsing-jerome-etienne-chqse?trackingId=rICT4WrBSqPj7WyFvOZiVA%3D%3D"
|
|
584
|
+
uid=s91 unknown url="https://www.linkedin.com/pulse/accessibility-trees-ai-browsing-jerome-etienne-chqse?trackingId=rICT4WrBSqPj7WyFvOZiVA%3D%3D"
|
|
585
|
+
uid=f101e810 generic
|
|
586
|
+
uid=f101e812 generic value="Accessibility Trees for AI Browsing"
|
|
587
|
+
uid=f101e813 generic value="Jerome Etienne"
|
|
588
|
+
uid=f101e814 generic
|
|
589
|
+
uid=f101e818 list
|
|
590
|
+
uid=f101e819 listitem
|
|
591
|
+
uid=f101e820 button "Julien Guézennec and 7 others"
|
|
592
|
+
uid=f101e821 img "like"
|
|
593
|
+
uid=f101e822 generic
|
|
594
|
+
uid=f101e823 generic value="8"
|
|
595
|
+
uid=f101e824 generic value="Julien Guézennec and 7 others"
|
|
596
|
+
uid=f101e825 listitem
|
|
597
|
+
uid=f101e826 list
|
|
598
|
+
uid=f101e827 listitem
|
|
599
|
+
uid=f101e828 button "3 comments on Jerome Etienne’s post"
|
|
600
|
+
uid=f101e829 generic value="3 comments"
|
|
601
|
+
uid=s92 StaticText "·"
|
|
602
|
+
uid=f101e830 listitem
|
|
603
|
+
uid=f101e831 button "1 repost of Jerome Etienne’s post"
|
|
604
|
+
uid=f101e832 generic value="1 repost"
|
|
605
|
+
uid=f101e833 generic
|
|
606
|
+
uid=f101e834 generic
|
|
607
|
+
uid=f101e835 button "React Like"
|
|
608
|
+
uid=f101e837 generic
|
|
609
|
+
uid=f101e838 img
|
|
610
|
+
uid=f101e840 generic value="Like"
|
|
611
|
+
uid=s93 button "Open reactions menu"
|
|
612
|
+
uid=f101e842 img
|
|
613
|
+
uid=f101e846 button "Comment"
|
|
614
|
+
uid=f101e847 img
|
|
615
|
+
uid=f101e849 generic value="Comment"
|
|
616
|
+
uid=f101e852 button "Repost"
|
|
617
|
+
uid=f101e853 img
|
|
618
|
+
uid=f101e855 generic value="Repost"
|
|
619
|
+
uid=f101e858 button "Send in a private message"
|
|
620
|
+
uid=f101e859 img
|
|
621
|
+
uid=f101e862 generic value="Send"
|
|
622
|
+
uid=f101e865 link "643 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7454522475901657088/"
|
|
623
|
+
uid=f101e866 generic
|
|
624
|
+
uid=f101e867 generic
|
|
625
|
+
uid=f101e868 img
|
|
626
|
+
uid=f101e871 strong value="643 impressions"
|
|
627
|
+
uid=f101e872 generic value="View analytics"
|
|
628
|
+
uid=f101e873 listitem
|
|
629
|
+
uid=f101e875 generic
|
|
630
|
+
uid=f101e876 generic
|
|
631
|
+
uid=f101e877 generic value="Promote this post to reach people who matter to you."
|
|
632
|
+
uid=f101e879 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3Ashare%3A7449792270041591809&origin=memberProfileAllActivity"
|
|
633
|
+
uid=s94 StaticText "Boost"
|
|
634
|
+
uid=f101e883 article
|
|
635
|
+
uid=f101e885 generic
|
|
636
|
+
uid=f101e886 heading "Feed post number 6" level="2"
|
|
637
|
+
uid=f101e887 generic
|
|
638
|
+
uid=f101e888 generic
|
|
639
|
+
uid=f101e890 generic
|
|
640
|
+
uid=f101e891 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
641
|
+
uid=f101e895 img "View Jerome Etienne’s graphic link"
|
|
642
|
+
uid=f101e896 generic
|
|
643
|
+
uid=s95 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
644
|
+
uid=f101e898 generic
|
|
645
|
+
uid=f101e900 generic
|
|
646
|
+
uid=f101e901 generic value="Jerome Etienne"
|
|
647
|
+
uid=f101e902 generic value="Jerome Etienne"
|
|
648
|
+
uid=f101e903 generic
|
|
649
|
+
uid=f101e904 generic
|
|
650
|
+
uid=f101e905 img
|
|
651
|
+
uid=s96 StaticText "• You"
|
|
652
|
+
uid=f101e907 generic value="Verified • You"
|
|
653
|
+
uid=f101e908 generic
|
|
654
|
+
uid=f101e909 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
655
|
+
uid=f101e910 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
656
|
+
uid=f101e911 generic
|
|
657
|
+
uid=f101e912 generic
|
|
658
|
+
uid=s97 StaticText "2w •"
|
|
659
|
+
uid=f101e915 img
|
|
660
|
+
uid=f101e917 generic value="2 weeks ago • Visible to anyone on or off LinkedIn"
|
|
661
|
+
uid=f101e920 button "Open control menu for post by Jerome Etienne"
|
|
662
|
+
uid=f101e921 img
|
|
663
|
+
uid=f101e927 generic
|
|
664
|
+
uid=s98 StaticText "Houray 😃 succeeded to run"
|
|
665
|
+
uid=f101e928 link "OpenAI" url="https://www.linkedin.com/company/openai/"
|
|
666
|
+
uid=f101e930 generic value="OpenAI"
|
|
667
|
+
uid=s99 StaticText "agents sdk on"
|
|
668
|
+
uid=f101e931 link "https://lmstudio.ai/" url="https://lmstudio.ai/"
|
|
669
|
+
uid=s100 StaticText ", it will cost me less to run those all-night-long evals!"
|
|
670
|
+
uid=f101e932 link "hashtag AI" url="https://www.linkedin.com/search/results/all/?keywords=%23ai&origin=HASH_TAG_FROM_FEED"
|
|
671
|
+
uid=f101e933 generic value="hashtag"
|
|
672
|
+
uid=f101e934 generic value="#AI"
|
|
673
|
+
uid=f101e935 link "hashtag localAI" url="https://www.linkedin.com/search/results/all/?keywords=%23localai&origin=HASH_TAG_FROM_FEED"
|
|
674
|
+
uid=f101e936 generic value="hashtag"
|
|
675
|
+
uid=f101e937 generic value="#localAI"
|
|
676
|
+
uid=f101e939 generic
|
|
677
|
+
uid=f101e941 button "Activate to view larger image, graphical user interface, text, application, email"
|
|
678
|
+
uid=f101e942 generic value="Activate to view larger image,"
|
|
679
|
+
uid=f101e945 img "graphical user interface, text, application, email"
|
|
680
|
+
uid=f101e946 generic value="Activate to view larger image,"
|
|
681
|
+
uid=f101e947 generic
|
|
682
|
+
uid=f101e951 list
|
|
683
|
+
uid=f101e952 listitem
|
|
684
|
+
uid=f101e953 button "Jon Twigge and 1 other"
|
|
685
|
+
uid=f101e954 img "like"
|
|
686
|
+
uid=f101e955 generic
|
|
687
|
+
uid=f101e956 generic value="2"
|
|
688
|
+
uid=f101e957 generic value="Jon Twigge and 1 other"
|
|
689
|
+
uid=f101e958 generic
|
|
690
|
+
uid=f101e959 generic
|
|
691
|
+
uid=f101e960 button "React Like"
|
|
692
|
+
uid=f101e962 generic
|
|
693
|
+
uid=f101e963 img
|
|
694
|
+
uid=f101e965 generic value="Like"
|
|
695
|
+
uid=s101 button "Open reactions menu"
|
|
696
|
+
uid=f101e967 img
|
|
697
|
+
uid=f101e971 button "Comment"
|
|
698
|
+
uid=f101e972 img
|
|
699
|
+
uid=f101e974 generic value="Comment"
|
|
700
|
+
uid=f101e977 button "Repost"
|
|
701
|
+
uid=f101e978 img
|
|
702
|
+
uid=f101e980 generic value="Repost"
|
|
703
|
+
uid=f101e983 button "Send in a private message"
|
|
704
|
+
uid=f101e984 img
|
|
705
|
+
uid=f101e987 generic value="Send"
|
|
706
|
+
uid=f101e990 link "107 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7449792271098712064/"
|
|
707
|
+
uid=f101e991 generic
|
|
708
|
+
uid=f101e992 generic
|
|
709
|
+
uid=f101e993 img
|
|
710
|
+
uid=f101e996 strong value="107 impressions"
|
|
711
|
+
uid=f101e997 generic value="View analytics"
|
|
712
|
+
uid=f101e998 listitem
|
|
713
|
+
uid=f101e1000 generic
|
|
714
|
+
uid=f101e1001 generic
|
|
715
|
+
uid=f101e1002 generic value="Promote this post to reach people who matter to you."
|
|
716
|
+
uid=f101e1004 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3Ashare%3A7449763672165498880&origin=memberProfileAllActivity"
|
|
717
|
+
uid=s102 StaticText "Boost"
|
|
718
|
+
uid=f101e1008 article
|
|
719
|
+
uid=f101e1010 generic
|
|
720
|
+
uid=f101e1011 heading "Feed post number 7" level="2"
|
|
721
|
+
uid=f101e1012 generic
|
|
722
|
+
uid=f101e1013 generic
|
|
723
|
+
uid=f101e1015 generic
|
|
724
|
+
uid=f101e1016 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
725
|
+
uid=f101e1020 img "View Jerome Etienne’s graphic link"
|
|
726
|
+
uid=f101e1021 generic
|
|
727
|
+
uid=s103 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
728
|
+
uid=f101e1023 generic
|
|
729
|
+
uid=f101e1025 generic
|
|
730
|
+
uid=f101e1026 generic value="Jerome Etienne"
|
|
731
|
+
uid=f101e1027 generic value="Jerome Etienne"
|
|
732
|
+
uid=f101e1028 generic
|
|
733
|
+
uid=f101e1029 generic
|
|
734
|
+
uid=f101e1030 img
|
|
735
|
+
uid=s104 StaticText "• You"
|
|
736
|
+
uid=f101e1032 generic value="Verified • You"
|
|
737
|
+
uid=f101e1033 generic
|
|
738
|
+
uid=f101e1034 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
739
|
+
uid=f101e1035 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
740
|
+
uid=f101e1036 generic
|
|
741
|
+
uid=f101e1037 generic
|
|
742
|
+
uid=s105 StaticText "2w •"
|
|
743
|
+
uid=f101e1040 img
|
|
744
|
+
uid=f101e1042 generic value="2 weeks ago • Visible to anyone on or off LinkedIn"
|
|
745
|
+
uid=f101e1045 button "Open control menu for post by Jerome Etienne"
|
|
746
|
+
uid=f101e1046 img
|
|
747
|
+
uid=f101e1049 generic
|
|
748
|
+
uid=f101e1052 generic
|
|
749
|
+
uid=s106 StaticText "🚨 𝗔𝗴𝗲𝗻𝘁𝘀 𝗮𝗿𝗲 𝗱𝗿𝗼𝘄𝗻𝗶𝗻𝗴 𝗶𝗻 𝘁𝗼𝗸𝗲𝗻𝘀… 𝗮𝗻𝗱 𝗶𝘁’𝘀 𝗸𝗶𝗹𝗹𝗶𝗻𝗴 𝗽𝗲𝗿𝗳𝗼𝗿𝗺𝗮𝗻𝗰𝗲."
|
|
750
|
+
uid=s107 StaticText "Everyone is obsessed with adding more capabilities to their agents."
|
|
751
|
+
uid=s108 StaticText "More tools."
|
|
752
|
+
uid=s109 StaticText "More MCP endpoints."
|
|
753
|
+
uid=s110 StaticText "More context."
|
|
754
|
+
uid=s111 StaticText "But here’s the uncomfortable truth 👇"
|
|
755
|
+
uid=s112 StaticText "👉 𝗠𝗼𝗿𝗲 𝘁𝗼𝗸𝗲𝗻𝘀 = 𝘀𝗹𝗼𝘄𝗲𝗿"
|
|
756
|
+
uid=s113 StaticText "👉 𝗠𝗼𝗿𝗲 𝘁𝗼𝗸𝗲𝗻𝘀 = 𝗺𝗼𝗿𝗲 𝗲𝘅𝗽𝗲𝗻𝘀𝗶𝘃𝗲"
|
|
757
|
+
uid=s114 StaticText "👉 𝗠𝗼𝗿𝗲 𝘁𝗼𝗸𝗲𝗻𝘀 = 𝗹𝗲𝘀𝘀 𝗮𝗰𝗰𝘂𝗿𝗮𝘁𝗲"
|
|
758
|
+
uid=s115 StaticText "And yet…"
|
|
759
|
+
uid=s116 StaticText "We keep feeding agents entire MCPs or massive `"
|
|
760
|
+
uid=f101e1053 link "SKILL.md" url="http://SKILL.md"
|
|
761
|
+
uid=s117 StaticText "` files like it’s harmless."
|
|
762
|
+
uid=s118 StaticText "---"
|
|
763
|
+
uid=s119 StaticText "💡 Imagine this:"
|
|
764
|
+
uid=s120 StaticText "Your MCP exposes **50 tools**"
|
|
765
|
+
uid=s121 StaticText "But your task needs only **3**"
|
|
766
|
+
uid=s122 StaticText "Why are you sending all 50?"
|
|
767
|
+
uid=s123 StaticText "You’re not making your agent smarter."
|
|
768
|
+
uid=s124 StaticText "You’re making it:"
|
|
769
|
+
uid=s125 StaticText "* slower 🐢"
|
|
770
|
+
uid=s126 StaticText "* more expensive 💸"
|
|
771
|
+
uid=s127 StaticText "* more confused 🤯"
|
|
772
|
+
uid=s128 StaticText "---"
|
|
773
|
+
uid=s129 StaticText "🧠 𝗧𝗵𝗲 𝗺𝗶𝘀𝘀𝗶𝗻𝗴 𝗽𝗶𝗲𝗰𝗲: 𝗜𝗻𝗽𝘂𝘁 𝗙𝗶𝗹𝘁𝗲𝗿𝗶𝗻𝗴"
|
|
774
|
+
uid=s130 StaticText "We need a layer that:"
|
|
775
|
+
uid=s131 StaticText "✔️ Selects only the relevant tools from MCP"
|
|
776
|
+
uid=s132 StaticText "✔️ Prunes unnecessary parts of `"
|
|
777
|
+
uid=f101e1054 link "SKILL.md" url="http://SKILL.md"
|
|
778
|
+
uid=s133 StaticText "`"
|
|
779
|
+
uid=s134 StaticText "✔️ Adapts context to the task at hand"
|
|
780
|
+
uid=s135 StaticText "Not static. Not manual."
|
|
781
|
+
uid=s136 StaticText "Dynamic filtering."
|
|
782
|
+
uid=s137 StaticText "---"
|
|
783
|
+
uid=s138 StaticText "📈 The result?"
|
|
784
|
+
uid=s139 StaticText "⚡ Faster agents"
|
|
785
|
+
uid=s140 StaticText "💰 Lower costs"
|
|
786
|
+
uid=s141 StaticText "🎯 Higher accuracy"
|
|
787
|
+
uid=s142 StaticText "No trade-offs. Just better systems."
|
|
788
|
+
uid=s143 StaticText "---"
|
|
789
|
+
uid=s144 StaticText "If you're building agents today and not thinking about **token minimization**,"
|
|
790
|
+
uid=s145 StaticText "you’re leaving performance (and money) on the table."
|
|
791
|
+
uid=s146 StaticText "𝗙𝗶𝗹𝘁𝗲𝗿 𝗳𝗶𝗿𝘀𝘁. 𝗧𝗵𝗲𝗻 𝗿𝗲𝗮𝘀𝗼𝗻."
|
|
792
|
+
uid=s147 StaticText "---"
|
|
793
|
+
uid=s148 StaticText "Curious how others are handling MCP / tool filtering today?"
|
|
794
|
+
uid=f101e1055 button "see more, visually reveals content which is already detected by screen readers"
|
|
795
|
+
uid=f101e1056 generic value="…more"
|
|
796
|
+
uid=f101e1058 generic
|
|
797
|
+
uid=f101e1059 generic
|
|
798
|
+
uid=f101e1060 button "Activate to view larger image, diagram"
|
|
799
|
+
uid=f101e1061 generic value="Activate to view larger image,"
|
|
800
|
+
uid=f101e1064 img "diagram"
|
|
801
|
+
uid=f101e1066 generic
|
|
802
|
+
uid=f101e1067 button "This image has content credentials."
|
|
803
|
+
uid=f101e1068 img
|
|
804
|
+
uid=f101e1069 img
|
|
805
|
+
uid=f101e1071 generic value="See content credentials"
|
|
806
|
+
uid=f101e1072 generic value="Activate to view larger image,"
|
|
807
|
+
uid=f101e1073 generic
|
|
808
|
+
uid=f101e1077 list
|
|
809
|
+
uid=f101e1078 listitem
|
|
810
|
+
uid=f101e1079 button "1 reaction"
|
|
811
|
+
uid=f101e1080 img "like"
|
|
812
|
+
uid=f101e1081 generic value="1"
|
|
813
|
+
uid=f101e1082 listitem
|
|
814
|
+
uid=f101e1083 list
|
|
815
|
+
uid=f101e1084 listitem
|
|
816
|
+
uid=f101e1085 button "1 comment on Jerome Etienne’s post"
|
|
817
|
+
uid=f101e1086 generic value="1 comment"
|
|
818
|
+
uid=f101e1087 generic
|
|
819
|
+
uid=f101e1088 generic
|
|
820
|
+
uid=f101e1089 button "React Like"
|
|
821
|
+
uid=f101e1091 generic
|
|
822
|
+
uid=f101e1092 img
|
|
823
|
+
uid=f101e1094 generic value="Like"
|
|
824
|
+
uid=s149 button "Open reactions menu"
|
|
825
|
+
uid=f101e1096 img
|
|
826
|
+
uid=f101e1100 button "Comment"
|
|
827
|
+
uid=f101e1101 img
|
|
828
|
+
uid=f101e1103 generic value="Comment"
|
|
829
|
+
uid=f101e1106 button "Repost"
|
|
830
|
+
uid=f101e1107 img
|
|
831
|
+
uid=f101e1109 generic value="Repost"
|
|
832
|
+
uid=f101e1112 button "Send in a private message"
|
|
833
|
+
uid=f101e1113 img
|
|
834
|
+
uid=f101e1116 generic value="Send"
|
|
835
|
+
uid=f101e1119 link "155 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7449763673377640448/"
|
|
836
|
+
uid=f101e1120 generic
|
|
837
|
+
uid=f101e1121 generic
|
|
838
|
+
uid=f101e1122 img
|
|
839
|
+
uid=f101e1125 strong value="155 impressions"
|
|
840
|
+
uid=f101e1126 generic value="View analytics"
|
|
841
|
+
uid=f101e1127 listitem
|
|
842
|
+
uid=f101e1129 generic
|
|
843
|
+
uid=f101e1130 generic
|
|
844
|
+
uid=f101e1131 generic value="Promote this post to reach people who matter to you."
|
|
845
|
+
uid=f101e1133 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3AugcPost%3A7449751218811441152&origin=memberProfileAllActivity"
|
|
846
|
+
uid=s150 StaticText "Boost"
|
|
847
|
+
uid=f101e1137 article
|
|
848
|
+
uid=f101e1139 generic
|
|
849
|
+
uid=f101e1140 heading "Feed post number 8" level="2"
|
|
850
|
+
uid=f101e1141 generic
|
|
851
|
+
uid=f101e1142 generic
|
|
852
|
+
uid=f101e1144 generic
|
|
853
|
+
uid=f101e1145 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
854
|
+
uid=f101e1149 img "View Jerome Etienne’s graphic link"
|
|
855
|
+
uid=f101e1150 generic
|
|
856
|
+
uid=s151 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
857
|
+
uid=f101e1152 generic
|
|
858
|
+
uid=f101e1154 generic
|
|
859
|
+
uid=f101e1155 generic value="Jerome Etienne"
|
|
860
|
+
uid=f101e1156 generic value="Jerome Etienne"
|
|
861
|
+
uid=f101e1157 generic
|
|
862
|
+
uid=f101e1158 generic
|
|
863
|
+
uid=f101e1159 img
|
|
864
|
+
uid=s152 StaticText "• You"
|
|
865
|
+
uid=f101e1161 generic value="Verified • You"
|
|
866
|
+
uid=f101e1162 generic
|
|
867
|
+
uid=f101e1163 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
868
|
+
uid=f101e1164 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
869
|
+
uid=f101e1165 generic
|
|
870
|
+
uid=f101e1166 generic
|
|
871
|
+
uid=s153 StaticText "2w • Edited •"
|
|
872
|
+
uid=f101e1169 img
|
|
873
|
+
uid=f101e1171 generic value="2 weeks ago • Edited • Visible to anyone on or off LinkedIn"
|
|
874
|
+
uid=f101e1174 button "Open control menu for post by Jerome Etienne"
|
|
875
|
+
uid=f101e1175 img
|
|
876
|
+
uid=f101e1178 generic
|
|
877
|
+
uid=f101e1181 generic
|
|
878
|
+
uid=s154 StaticText "🚨 Most “AI agents” today are just demos."
|
|
879
|
+
uid=s155 StaticText "This one feels like a 🧠 𝗕𝗢𝗔𝗥𝗗𝗥𝗢𝗢𝗠-𝗚𝗥𝗔𝗗𝗘 𝗢𝗣𝗘𝗥𝗔𝗧𝗢𝗥."
|
|
880
|
+
uid=s156 StaticText "I made a Skillet Agent running a “Business Analyst” Agent"
|
|
881
|
+
uid=s157 StaticText "And it doesn’t behave like a chatbot."
|
|
882
|
+
uid=s158 StaticText "It behaves like a 🧠 𝗖𝗢𝗢-𝗴𝗿𝗮𝗱𝗲 𝘁𝗵𝗶𝗻𝗸𝗶𝗻𝗴 𝘀𝘆𝘀𝘁𝗲𝗺."
|
|
883
|
+
uid=s159 StaticText "---"
|
|
884
|
+
uid=s160 StaticText "The scenario is simple… and very real:"
|
|
885
|
+
uid=s161 StaticText "👉 “The board demands profitability."
|
|
886
|
+
uid=s162 StaticText "But cutting costs can’t kill growth.”"
|
|
887
|
+
uid=s163 StaticText "Every startup hits this wall."
|
|
888
|
+
uid=s164 StaticText "What’s interesting is how the agent approaches it:"
|
|
889
|
+
uid=s165 StaticText "Instead of giving advice, it builds a 🧩 𝗱𝗲𝗰𝗶𝘀𝗶𝗼𝗻 𝘀𝘆𝘀𝘁𝗲𝗺."
|
|
890
|
+
uid=s166 StaticText "---"
|
|
891
|
+
uid=s167 StaticText "🧠 Step 1 — It models reality"
|
|
892
|
+
uid=s168 StaticText "A full 6-month P&L of the current business (including inefficiencies)"
|
|
893
|
+
uid=s169 StaticText "📉 Step 2 — It diagnoses the system"
|
|
894
|
+
uid=s170 StaticText "Trends, anomalies, and hidden cost leaks"
|
|
895
|
+
uid=s171 StaticText "🧪 Step 3 — It explores futures"
|
|
896
|
+
uid=s172 StaticText "4 different cost-cutting strategies, compared side by side"
|
|
897
|
+
uid=s173 StaticText "🔬 Step 4 — It simulates outcomes"
|
|
898
|
+
uid=s174 StaticText "Deep dive into the 2 most promising scenarios"
|
|
899
|
+
uid=s175 StaticText "🔁 Step 5 — It iterates like a real operator"
|
|
900
|
+
uid=s176 StaticText "Adjust assumptions, re-run analysis, refine conclusions"
|
|
901
|
+
uid=s177 StaticText "📈 Step 6 — It builds execution"
|
|
902
|
+
uid=s178 StaticText "A milestone plan tied to margin improvement"
|
|
903
|
+
uid=s179 StaticText "🎯 Step 7 — It outputs a recommendation"
|
|
904
|
+
uid=s180 StaticText "Not just “insights” — an actual executive decision path"
|
|
905
|
+
uid=s181 StaticText "---"
|
|
906
|
+
uid=s182 StaticText "What stood out to me is this:"
|
|
907
|
+
uid=s183 StaticText "We’re moving from “AI that answers questions”"
|
|
908
|
+
uid=s184 StaticText "to “𝗔𝗜 𝘁𝗵𝗮𝘁 𝗿𝘂𝗻𝘀 𝗯𝘂𝘀𝗶𝗻𝗲𝘀𝘀 𝗿𝗲𝗮𝘀𝗼𝗻𝗶𝗻𝗴 𝗹𝗼𝗼𝗽𝘀.”"
|
|
909
|
+
uid=s185 StaticText "That’s a completely different category."
|
|
910
|
+
uid=s186 StaticText "---"
|
|
911
|
+
uid=s187 StaticText "Most tools optimize for:"
|
|
912
|
+
uid=s188 StaticText "- speed of response"
|
|
913
|
+
uid=s189 StaticText "This optimizes for:"
|
|
914
|
+
uid=s190 StaticText "- 𝗾𝘂𝗮𝗹𝗶𝘁𝘆 𝗼𝗳 𝗱𝗲𝗰𝗶𝘀𝗶𝗼𝗻𝘀 𝗼𝘃𝗲𝗿 𝘁𝗶𝗺𝗲"
|
|
915
|
+
uid=s191 StaticText "And that’s where things get interesting."
|
|
916
|
+
uid=s192 StaticText "Because the real bottleneck in companies is not data."
|
|
917
|
+
uid=s193 StaticText "It’s:"
|
|
918
|
+
uid=s194 StaticText "👉 connecting modeling → analysis → planning → execution without breaking the chain."
|
|
919
|
+
uid=s195 StaticText "---"
|
|
920
|
+
uid=s196 StaticText "We’re starting to see what happens when that chain is automated."
|
|
921
|
+
uid=s197 StaticText "And honestly?"
|
|
922
|
+
uid=s198 StaticText "It doesn’t feel like automation of tasks."
|
|
923
|
+
uid=s199 StaticText "It feels like 🧠 𝗰𝗼𝗺𝗽𝗿𝗲𝘀𝘀𝗶𝗼𝗻 𝗼𝗳 𝗲𝗻𝘁𝗶𝗿𝗲 𝘀𝘁𝗿𝗮𝘁𝗲𝗴𝘆 𝘁𝗲𝗮𝗺𝘀 𝗶𝗻𝘁𝗼 𝗮 𝗹𝗼𝗼𝗽𝗮𝗯𝗹𝗲 𝘀𝘆𝘀𝘁𝗲𝗺."
|
|
924
|
+
uid=s200 StaticText "---"
|
|
925
|
+
uid=s201 StaticText "We’re early."
|
|
926
|
+
uid=s202 StaticText "But this is what “AI agents” start to look like when they move beyond demos."
|
|
927
|
+
uid=s203 StaticText "---"
|
|
928
|
+
uid=s204 StaticText "If you’ve ever built a financial model that turned into 12 spreadsheets and 3 meetings…"
|
|
929
|
+
uid=s205 StaticText "you already know why this matters."
|
|
930
|
+
uid=f101e1182 button "see more, visually reveals content which is already detected by screen readers"
|
|
931
|
+
uid=f101e1183 generic value="…more"
|
|
932
|
+
uid=f101e1188 region "Video player"
|
|
933
|
+
uid=f101e1192 generic
|
|
934
|
+
uid=f101e1193 button "Play"
|
|
935
|
+
uid=f101e1194 generic value="Play"
|
|
936
|
+
uid=f101e1195 slider "Playback progress"
|
|
937
|
+
uid=f101e1197 generic value="Loaded: 11.12%"
|
|
938
|
+
uid=f101e1199 generic
|
|
939
|
+
uid=s206 StaticText "Remaining time"
|
|
940
|
+
uid=f101e1200 generic value="5:22"
|
|
941
|
+
uid=f101e1201 generic
|
|
942
|
+
uid=s207 generic value="1x"
|
|
943
|
+
uid=f101e1202 button "Playback speed"
|
|
944
|
+
uid=f101e1203 generic value="Playback speed"
|
|
945
|
+
uid=f101e1204 generic
|
|
946
|
+
uid=f101e1205 button "Unmute"
|
|
947
|
+
uid=f101e1206 generic value="Unmute"
|
|
948
|
+
uid=s208 generic
|
|
949
|
+
uid=s209 slider "Volume"
|
|
950
|
+
uid=f101e1208 button "Turn fullscreen on"
|
|
951
|
+
uid=f101e1209 generic value="Turn fullscreen on"
|
|
952
|
+
uid=f101e1210 generic
|
|
953
|
+
uid=f101e1214 list
|
|
954
|
+
uid=f101e1215 listitem
|
|
955
|
+
uid=f101e1216 button "Jon Twigge and 2 others"
|
|
956
|
+
uid=f101e1217 img "like"
|
|
957
|
+
uid=f101e1218 generic
|
|
958
|
+
uid=f101e1219 generic value="3"
|
|
959
|
+
uid=f101e1220 generic value="Jon Twigge and 2 others"
|
|
960
|
+
uid=f101e1221 listitem
|
|
961
|
+
uid=f101e1222 list
|
|
962
|
+
uid=f101e1223 listitem
|
|
963
|
+
uid=f101e1224 button "1 comment on Jerome Etienne’s post"
|
|
964
|
+
uid=f101e1225 generic value="1 comment"
|
|
965
|
+
uid=f101e1226 generic
|
|
966
|
+
uid=f101e1227 generic
|
|
967
|
+
uid=f101e1228 button "React Like"
|
|
968
|
+
uid=f101e1230 generic
|
|
969
|
+
uid=f101e1231 img
|
|
970
|
+
uid=f101e1233 generic value="Like"
|
|
971
|
+
uid=s210 button "Open reactions menu"
|
|
972
|
+
uid=f101e1235 img
|
|
973
|
+
uid=f101e1239 button "Comment"
|
|
974
|
+
uid=f101e1240 img
|
|
975
|
+
uid=f101e1242 generic value="Comment"
|
|
976
|
+
uid=f101e1245 button "Repost"
|
|
977
|
+
uid=f101e1246 img
|
|
978
|
+
uid=f101e1248 generic value="Repost"
|
|
979
|
+
uid=f101e1251 button "Send in a private message"
|
|
980
|
+
uid=f101e1252 img
|
|
981
|
+
uid=f101e1255 generic value="Send"
|
|
982
|
+
uid=f101e1258 link "94 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7449751359710523393/"
|
|
983
|
+
uid=f101e1259 generic
|
|
984
|
+
uid=f101e1260 generic
|
|
985
|
+
uid=f101e1261 img
|
|
986
|
+
uid=f101e1264 strong value="94 impressions"
|
|
987
|
+
uid=f101e1265 generic value="View analytics"
|
|
988
|
+
uid=f101e1266 listitem
|
|
989
|
+
uid=f101e1268 generic
|
|
990
|
+
uid=f101e1269 generic
|
|
991
|
+
uid=f101e1270 generic value="Promote this post to reach people who matter to you."
|
|
992
|
+
uid=f101e1272 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3Ashare%3A7449431808703737856&origin=memberProfileAllActivity"
|
|
993
|
+
uid=s211 StaticText "Boost"
|
|
994
|
+
uid=f101e1276 article
|
|
995
|
+
uid=f101e1278 generic
|
|
996
|
+
uid=f101e1279 heading "Feed post number 9" level="2"
|
|
997
|
+
uid=f101e1280 generic
|
|
998
|
+
uid=f101e1281 generic
|
|
999
|
+
uid=f101e1283 generic
|
|
1000
|
+
uid=f101e1284 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1001
|
+
uid=f101e1288 img "View Jerome Etienne’s graphic link"
|
|
1002
|
+
uid=f101e1289 generic
|
|
1003
|
+
uid=s212 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1004
|
+
uid=f101e1291 generic
|
|
1005
|
+
uid=f101e1293 generic
|
|
1006
|
+
uid=f101e1294 generic value="Jerome Etienne"
|
|
1007
|
+
uid=f101e1295 generic value="Jerome Etienne"
|
|
1008
|
+
uid=f101e1296 generic
|
|
1009
|
+
uid=f101e1297 generic
|
|
1010
|
+
uid=f101e1298 img
|
|
1011
|
+
uid=s213 StaticText "• You"
|
|
1012
|
+
uid=f101e1300 generic value="Verified • You"
|
|
1013
|
+
uid=f101e1301 generic
|
|
1014
|
+
uid=f101e1302 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1015
|
+
uid=f101e1303 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1016
|
+
uid=f101e1304 generic
|
|
1017
|
+
uid=f101e1305 generic
|
|
1018
|
+
uid=s214 StaticText "2w •"
|
|
1019
|
+
uid=f101e1308 img
|
|
1020
|
+
uid=f101e1310 generic value="2 weeks ago • Visible to anyone on or off LinkedIn"
|
|
1021
|
+
uid=f101e1313 button "Open control menu for post by Jerome Etienne"
|
|
1022
|
+
uid=f101e1314 img
|
|
1023
|
+
uid=f101e1317 generic
|
|
1024
|
+
uid=f101e1320 generic
|
|
1025
|
+
uid=s215 StaticText "Just discovered a killer combo for exploring MCP servers 👇"
|
|
1026
|
+
uid=s216 StaticText "```"
|
|
1027
|
+
uid=s217 StaticText "npx @modelcontextprotocol/inspector npx chrome-devtools-mcp@latest --autoConnect"
|
|
1028
|
+
uid=s218 StaticText "```"
|
|
1029
|
+
uid=s219 StaticText "This spins up an MCP server + auto-connects an inspector UI where you can:"
|
|
1030
|
+
uid=s220 StaticText "🔎 browse available tools"
|
|
1031
|
+
uid=s221 StaticText "🧩 inspect schemas"
|
|
1032
|
+
uid=s222 StaticText "⚡ run them live"
|
|
1033
|
+
uid=s223 StaticText "📡 see real inputs/outputs"
|
|
1034
|
+
uid=s224 StaticText "It’s basically 𝐏𝐨𝐬𝐭𝐦𝐚𝐧 𝐟𝐨𝐫 𝐌𝐂𝐏 — but for AI-native tooling."
|
|
1035
|
+
uid=s225 StaticText "Why this is cool:"
|
|
1036
|
+
uid=s226 StaticText "🧠 𝘇𝗲𝗿𝗼 𝗱𝗼𝗰𝘀 𝗻𝗲𝗲𝗱𝗲𝗱 → introspect everything"
|
|
1037
|
+
uid=s227 StaticText "🚀 𝐬𝐮𝐩𝐞𝐫 𝐟𝐚𝐬𝐭 prototyping"
|
|
1038
|
+
uid=s228 StaticText "🛠️ perfect for building + debugging MCP integrations"
|
|
1039
|
+
uid=s229 StaticText "Feels like the 𝗺𝗶𝘀𝘀𝗶𝗻𝗴 𝗱𝗲𝘃𝘁𝗼𝗼𝗹 for the MCP ecosystem ✨"
|
|
1040
|
+
uid=f101e1321 button "see more, visually reveals content which is already detected by screen readers"
|
|
1041
|
+
uid=f101e1322 generic value="…more"
|
|
1042
|
+
uid=f101e1324 generic
|
|
1043
|
+
uid=f101e1325 generic
|
|
1044
|
+
uid=f101e1326 button "Activate to view larger image, graphical user interface"
|
|
1045
|
+
uid=f101e1327 generic value="Activate to view larger image,"
|
|
1046
|
+
uid=f101e1330 img "graphical user interface"
|
|
1047
|
+
uid=f101e1332 generic
|
|
1048
|
+
uid=f101e1333 button "This image has content credentials."
|
|
1049
|
+
uid=f101e1334 img
|
|
1050
|
+
uid=f101e1335 img
|
|
1051
|
+
uid=f101e1337 generic value="See content credentials"
|
|
1052
|
+
uid=f101e1338 generic value="Activate to view larger image,"
|
|
1053
|
+
uid=f101e1339 generic
|
|
1054
|
+
uid=f101e1343 list
|
|
1055
|
+
uid=f101e1344 listitem
|
|
1056
|
+
uid=f101e1345 button "1 reaction"
|
|
1057
|
+
uid=f101e1346 img "like"
|
|
1058
|
+
uid=f101e1347 generic value="1"
|
|
1059
|
+
uid=f101e1348 generic
|
|
1060
|
+
uid=f101e1349 generic
|
|
1061
|
+
uid=f101e1350 button "React Like"
|
|
1062
|
+
uid=f101e1352 generic
|
|
1063
|
+
uid=f101e1353 img
|
|
1064
|
+
uid=f101e1355 generic value="Like"
|
|
1065
|
+
uid=s230 button "Open reactions menu"
|
|
1066
|
+
uid=f101e1357 img
|
|
1067
|
+
uid=f101e1361 button "Comment"
|
|
1068
|
+
uid=f101e1362 img
|
|
1069
|
+
uid=f101e1364 generic value="Comment"
|
|
1070
|
+
uid=f101e1367 button "Repost"
|
|
1071
|
+
uid=f101e1368 img
|
|
1072
|
+
uid=f101e1370 generic value="Repost"
|
|
1073
|
+
uid=f101e1373 button "Send in a private message"
|
|
1074
|
+
uid=f101e1374 img
|
|
1075
|
+
uid=f101e1377 generic value="Send"
|
|
1076
|
+
uid=f101e1380 link "395 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7449431809911771137/"
|
|
1077
|
+
uid=f101e1381 generic
|
|
1078
|
+
uid=f101e1382 generic
|
|
1079
|
+
uid=f101e1383 img
|
|
1080
|
+
uid=f101e1386 strong value="395 impressions"
|
|
1081
|
+
uid=f101e1387 generic value="View analytics"
|
|
1082
|
+
uid=f101e1388 listitem
|
|
1083
|
+
uid=f101e1390 generic
|
|
1084
|
+
uid=f101e1391 generic
|
|
1085
|
+
uid=f101e1392 generic value="Promote this post to reach people who matter to you."
|
|
1086
|
+
uid=f101e1394 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3Ashare%3A7449330748521824256&origin=memberProfileAllActivity"
|
|
1087
|
+
uid=s231 StaticText "Boost"
|
|
1088
|
+
uid=f101e1398 article
|
|
1089
|
+
uid=f101e1400 generic
|
|
1090
|
+
uid=f101e1401 heading "Feed post number 10" level="2"
|
|
1091
|
+
uid=f101e1402 generic
|
|
1092
|
+
uid=f101e1403 generic
|
|
1093
|
+
uid=f101e1405 generic
|
|
1094
|
+
uid=f101e1406 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1095
|
+
uid=f101e1410 img "View Jerome Etienne’s graphic link"
|
|
1096
|
+
uid=f101e1411 generic
|
|
1097
|
+
uid=s232 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1098
|
+
uid=f101e1413 generic
|
|
1099
|
+
uid=f101e1415 generic
|
|
1100
|
+
uid=f101e1416 generic value="Jerome Etienne"
|
|
1101
|
+
uid=f101e1417 generic value="Jerome Etienne"
|
|
1102
|
+
uid=f101e1418 generic
|
|
1103
|
+
uid=f101e1419 generic
|
|
1104
|
+
uid=f101e1420 img
|
|
1105
|
+
uid=s233 StaticText "• You"
|
|
1106
|
+
uid=f101e1422 generic value="Verified • You"
|
|
1107
|
+
uid=f101e1423 generic
|
|
1108
|
+
uid=f101e1424 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1109
|
+
uid=f101e1425 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1110
|
+
uid=f101e1426 generic
|
|
1111
|
+
uid=f101e1427 generic
|
|
1112
|
+
uid=s234 StaticText "3w • Edited •"
|
|
1113
|
+
uid=f101e1430 img
|
|
1114
|
+
uid=f101e1432 generic value="3 weeks ago • Edited • Visible to anyone on or off LinkedIn"
|
|
1115
|
+
uid=f101e1435 button "Open control menu for post by Jerome Etienne"
|
|
1116
|
+
uid=f101e1436 img
|
|
1117
|
+
uid=f101e1439 generic
|
|
1118
|
+
uid=f101e1442 generic
|
|
1119
|
+
uid=s235 StaticText "Over the past few weeks, I’ve been quietly building a toolkit for anyone running LLM workloads who wants to stay in control of 𝗰𝗼𝘀𝘁𝘀 💸 and 𝗹𝗮𝘁𝗲𝗻𝗰𝘆 ⚡️."
|
|
1120
|
+
uid=s236 StaticText "This week, I shipped (and iterated on) two key pieces:"
|
|
1121
|
+
uid=s237 StaticText "▸ 𝗼𝗽𝗲𝗻𝗮𝗶-𝗰𝗮𝗰𝗵𝗲 → transparent SQLite caching for OpenAI calls — pay once per unique prompt ♻️"
|
|
1122
|
+
uid=s238 StaticText "▸ 𝗼𝗽𝗲𝗻𝗮𝗶-𝗰𝗼𝘀𝘁 → track the dollar cost of every API call, with SQLite persistence and event hooks 📊"
|
|
1123
|
+
uid=s239 StaticText "They’re independent npm packages, but designed to work seamlessly together:"
|
|
1124
|
+
uid=s240 StaticText "▹ the cache reduces your costs 💸"
|
|
1125
|
+
uid=s241 StaticText "▹ the tracker shows you exactly how much you’re saving 👀"
|
|
1126
|
+
uid=s242 StaticText "Built with 𝗧𝘆𝗽𝗲𝗦𝗰𝗿𝗶𝗽𝘁 🟦, fully 𝗼𝗽𝗲𝗻 𝘀𝗼𝘂𝗿𝗰𝗲 🌍, and designed for 𝗿𝗲𝗮𝗹-𝘄𝗼𝗿𝗹𝗱 𝘂𝘀𝗮𝗴𝗲."
|
|
1127
|
+
uid=s243 StaticText "If you’re working with LLMs in production, I’d love your feedback 🙌"
|
|
1128
|
+
uid=s244 StaticText "Link in the first comment"
|
|
1129
|
+
uid=f101e1443 link "hashtag buildInPublic" url="https://www.linkedin.com/search/results/all/?keywords=%23buildinpublic&origin=HASH_TAG_FROM_FEED"
|
|
1130
|
+
uid=f101e1444 generic value="hashtag"
|
|
1131
|
+
uid=f101e1445 generic value="#buildInPublic"
|
|
1132
|
+
uid=f101e1446 link "hashtag opensource" url="https://www.linkedin.com/search/results/all/?keywords=%23opensource&origin=HASH_TAG_FROM_FEED"
|
|
1133
|
+
uid=f101e1447 generic value="hashtag"
|
|
1134
|
+
uid=f101e1448 generic value="#opensource"
|
|
1135
|
+
uid=f101e1449 link "hashtag typescript" url="https://www.linkedin.com/search/results/all/?keywords=%23typescript&origin=HASH_TAG_FROM_FEED"
|
|
1136
|
+
uid=f101e1450 generic value="hashtag"
|
|
1137
|
+
uid=f101e1451 generic value="#typescript"
|
|
1138
|
+
uid=f101e1452 link "hashtag openai" url="https://www.linkedin.com/search/results/all/?keywords=%23openai&origin=HASH_TAG_FROM_FEED"
|
|
1139
|
+
uid=f101e1453 generic value="hashtag"
|
|
1140
|
+
uid=f101e1454 generic value="#openai"
|
|
1141
|
+
uid=f101e1455 link "hashtag llm" url="https://www.linkedin.com/search/results/all/?keywords=%23llm&origin=HASH_TAG_FROM_FEED"
|
|
1142
|
+
uid=f101e1456 generic value="hashtag"
|
|
1143
|
+
uid=f101e1457 generic value="#llm"
|
|
1144
|
+
uid=f101e1458 link "hashtag developertools" url="https://www.linkedin.com/search/results/all/?keywords=%23developertools&origin=HASH_TAG_FROM_FEED"
|
|
1145
|
+
uid=f101e1459 generic value="hashtag"
|
|
1146
|
+
uid=f101e1460 generic value="#developertools"
|
|
1147
|
+
uid=f101e1461 button "see more, visually reveals content which is already detected by screen readers"
|
|
1148
|
+
uid=f101e1462 generic value="…more"
|
|
1149
|
+
uid=f101e1464 generic
|
|
1150
|
+
uid=f101e1465 generic
|
|
1151
|
+
uid=f101e1466 button "Activate to view larger image, No alternative text description for this image"
|
|
1152
|
+
uid=f101e1467 generic value="Activate to view larger image,"
|
|
1153
|
+
uid=f101e1470 img "No alternative text description for this image"
|
|
1154
|
+
uid=f101e1472 generic
|
|
1155
|
+
uid=f101e1473 button "This image has content credentials."
|
|
1156
|
+
uid=f101e1474 img
|
|
1157
|
+
uid=f101e1475 img
|
|
1158
|
+
uid=f101e1477 generic value="See content credentials"
|
|
1159
|
+
uid=f101e1478 generic value="Activate to view larger image,"
|
|
1160
|
+
uid=f101e1479 generic
|
|
1161
|
+
uid=f101e1483 list
|
|
1162
|
+
uid=f101e1484 listitem
|
|
1163
|
+
uid=f101e1485 button "Julien Guézennec and 1 other"
|
|
1164
|
+
uid=f101e1486 img "like"
|
|
1165
|
+
uid=f101e1487 generic
|
|
1166
|
+
uid=f101e1488 generic value="2"
|
|
1167
|
+
uid=f101e1489 generic value="Julien Guézennec and 1 other"
|
|
1168
|
+
uid=f101e1490 listitem
|
|
1169
|
+
uid=f101e1491 list
|
|
1170
|
+
uid=f101e1492 listitem
|
|
1171
|
+
uid=f101e1493 button "2 comments on Jerome Etienne’s post"
|
|
1172
|
+
uid=f101e1494 generic value="2 comments"
|
|
1173
|
+
uid=f101e1495 generic
|
|
1174
|
+
uid=f101e1496 generic
|
|
1175
|
+
uid=f101e1497 button "React Like"
|
|
1176
|
+
uid=f101e1499 generic
|
|
1177
|
+
uid=f101e1500 img
|
|
1178
|
+
uid=f101e1502 generic value="Like"
|
|
1179
|
+
uid=s245 button "Open reactions menu"
|
|
1180
|
+
uid=f101e1504 img
|
|
1181
|
+
uid=f101e1508 button "Comment"
|
|
1182
|
+
uid=f101e1509 img
|
|
1183
|
+
uid=f101e1511 generic value="Comment"
|
|
1184
|
+
uid=f101e1514 button "Repost"
|
|
1185
|
+
uid=f101e1515 img
|
|
1186
|
+
uid=f101e1517 generic value="Repost"
|
|
1187
|
+
uid=f101e1520 button "Send in a private message"
|
|
1188
|
+
uid=f101e1521 img
|
|
1189
|
+
uid=f101e1524 generic value="Send"
|
|
1190
|
+
uid=f101e1527 link "221 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7449330749637345280/"
|
|
1191
|
+
uid=f101e1528 generic
|
|
1192
|
+
uid=f101e1529 generic
|
|
1193
|
+
uid=f101e1530 img
|
|
1194
|
+
uid=f101e1533 strong value="221 impressions"
|
|
1195
|
+
uid=f101e1534 generic value="View analytics"
|
|
1196
|
+
uid=f101e1535 listitem
|
|
1197
|
+
uid=f101e1537 generic
|
|
1198
|
+
uid=f101e1538 generic
|
|
1199
|
+
uid=f101e1539 generic value="Promote this post to reach people who matter to you."
|
|
1200
|
+
uid=f101e1541 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3AugcPost%3A7448342379679399936&origin=memberProfileAllActivity"
|
|
1201
|
+
uid=s246 StaticText "Boost"
|
|
1202
|
+
uid=f101e1545 article
|
|
1203
|
+
uid=f101e1547 generic
|
|
1204
|
+
uid=f101e1548 heading "Feed post number 11" level="2"
|
|
1205
|
+
uid=f101e1549 generic
|
|
1206
|
+
uid=f101e1550 generic
|
|
1207
|
+
uid=f101e1552 generic
|
|
1208
|
+
uid=f101e1553 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1209
|
+
uid=f101e1557 img "View Jerome Etienne’s graphic link"
|
|
1210
|
+
uid=f101e1558 generic
|
|
1211
|
+
uid=s247 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1212
|
+
uid=f101e1560 generic
|
|
1213
|
+
uid=f101e1562 generic
|
|
1214
|
+
uid=f101e1563 generic value="Jerome Etienne"
|
|
1215
|
+
uid=f101e1564 generic value="Jerome Etienne"
|
|
1216
|
+
uid=f101e1565 generic
|
|
1217
|
+
uid=f101e1566 generic
|
|
1218
|
+
uid=f101e1567 img
|
|
1219
|
+
uid=s248 StaticText "• You"
|
|
1220
|
+
uid=f101e1569 generic value="Verified • You"
|
|
1221
|
+
uid=f101e1570 generic
|
|
1222
|
+
uid=f101e1571 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1223
|
+
uid=f101e1572 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1224
|
+
uid=f101e1573 generic
|
|
1225
|
+
uid=f101e1574 generic
|
|
1226
|
+
uid=s249 StaticText "3w •"
|
|
1227
|
+
uid=f101e1577 img
|
|
1228
|
+
uid=f101e1579 generic value="3 weeks ago • Visible to anyone on or off LinkedIn"
|
|
1229
|
+
uid=f101e1582 button "Open control menu for post by Jerome Etienne"
|
|
1230
|
+
uid=f101e1583 img
|
|
1231
|
+
uid=f101e1586 generic
|
|
1232
|
+
uid=f101e1589 generic
|
|
1233
|
+
uid=s250 StaticText "𝗠𝗼𝘀𝘁 𝗽𝗲𝗼𝗽𝗹𝗲 𝗯𝘂𝗶𝗹𝗱𝗶𝗻𝗴 𝗔𝗜 𝗮𝗴𝗲𝗻𝘁𝘀 𝗮𝗿𝗲 𝘀𝗸𝗶𝗽𝗽𝗶𝗻𝗴 𝘁𝗵𝗲 𝗵𝗮𝗿𝗱𝗲𝘀𝘁 𝗽𝗮𝗿𝘁. 🎯"
|
|
1234
|
+
uid=s251 StaticText "The hard part isn't writing the instructions. It's knowing whether they actually work — and having a system to make them better."
|
|
1235
|
+
uid=s252 StaticText "The AI ecosystem is full of prompts dressed up as agents. What's genuinely rare is 𝗿𝗶𝗴𝗼𝗿𝗼𝘂𝘀 𝘁𝗼𝗼𝗹𝗶𝗻𝗴 for reliable triggering, consistent behavior, and measurable improvement over time. 🔬"
|
|
1236
|
+
uid=s253 StaticText "Anthropic built exactly that. It's called 𝘀𝗸𝗶𝗹𝗹-𝗰𝗿𝗲𝗮𝘁𝗼𝗿 — a meta-skill for building, evaluating, and packaging other Claude Code skills. And it's open source. 🔧"
|
|
1237
|
+
uid=s254 StaticText "What makes it remarkable 👇"
|
|
1238
|
+
uid=s255 StaticText "🧠 𝗣𝗿𝗼𝗴𝗿𝗲𝘀𝘀𝗶𝘃𝗲 𝗱𝗶𝘀𝗰𝗹𝗼𝘀𝘂𝗿𝗲 — metadata always loaded, skill body on trigger, heavy resources only when needed. Performance by design, not by accident."
|
|
1239
|
+
uid=s256 StaticText "📊 𝗘𝘃𝗶𝗱𝗲𝗻𝗰𝗲-𝗯𝗮𝘀𝗲𝗱 𝗶𝘁𝗲𝗿𝗮𝘁𝗶𝗼𝗻 — with-skill vs. baseline runs, assertion grading, timing and token tracking. Not vibes. Data."
|
|
1240
|
+
uid=s257 StaticText "🎯 𝗧𝗿𝗶𝗴𝗴𝗲𝗿 𝗼𝗽𝘁𝗶𝗺𝗶𝘇𝗮𝘁𝗶𝗼𝗻 𝗮𝘀 𝗮 𝗳𝗶𝗿𝘀𝘁-𝗰𝗹𝗮𝘀𝘀 𝗰𝗼𝗻𝗰𝗲𝗿𝗻 — generate should-trigger / should-not-trigger query sets, run an optimization loop, pick the best description using a held-out test split. Overfitting is explicitly guarded against."
|
|
1241
|
+
uid=s258 StaticText "The full lifecycle in one workflow 🚀"
|
|
1242
|
+
uid=s259 StaticText "𝘀𝗰𝗼𝗽𝗲 ➜ 𝗱𝗿𝗮𝗳𝘁 ➜ 𝗲𝘃𝗮𝗹𝘂𝗮𝘁𝗲 ➜ 𝗶𝘁𝗲𝗿𝗮𝘁𝗲 𝘄𝗶𝘁𝗵 𝗳𝗲𝗲𝗱𝗯𝗮𝗰𝗸 ➜ 𝗼𝗽𝘁𝗶𝗺𝗶𝘇𝗲 𝘁𝗿𝗶𝗴𝗴𝗲𝗿𝘀 ➜ 𝗽𝗮𝗰𝗸𝗮𝗴𝗲"
|
|
1243
|
+
uid=s260 StaticText "The deeper message here matters. 💡"
|
|
1244
|
+
uid=s261 StaticText "Anthropic is demonstrating that building AI capabilities is 𝘀𝗼𝗳𝘁𝘄𝗮𝗿𝗲 𝗲𝗻𝗴𝗶𝗻𝗲𝗲𝗿𝗶𝗻𝗴 — define intent, write tests, measure outcomes, iterate from real feedback, ship only when it works. This is the discipline that separates production-grade agents from weekend experiments."
|
|
1245
|
+
uid=s262 StaticText "This kind of foundational thinking deserves more visibility. 🙌"
|
|
1246
|
+
uid=s263 StaticText "Link in the first comment 👇"
|
|
1247
|
+
uid=s264 StaticText "Are you applying this level of rigor to your AI agent work? What's your approach to evaluating and improving reliability? 👇"
|
|
1248
|
+
uid=f101e1590 button "see more, visually reveals content which is already detected by screen readers"
|
|
1249
|
+
uid=f101e1591 generic value="…more"
|
|
1250
|
+
uid=f101e1592 generic
|
|
1251
|
+
uid=f101e1596 region "Video player"
|
|
1252
|
+
uid=f101e1600 generic
|
|
1253
|
+
uid=f101e1601 button "Play"
|
|
1254
|
+
uid=f101e1602 generic value="Play"
|
|
1255
|
+
uid=f101e1603 slider "Playback progress"
|
|
1256
|
+
uid=f101e1605 generic value="Loaded: 4.58%"
|
|
1257
|
+
uid=f101e1607 generic
|
|
1258
|
+
uid=s265 StaticText "Remaining time"
|
|
1259
|
+
uid=f101e1608 generic value="2:54"
|
|
1260
|
+
uid=f101e1609 generic
|
|
1261
|
+
uid=s266 generic value="1x"
|
|
1262
|
+
uid=f101e1610 button "Playback speed"
|
|
1263
|
+
uid=f101e1611 generic value="Playback speed"
|
|
1264
|
+
uid=f101e1612 button "Turn closed captions on"
|
|
1265
|
+
uid=f101e1613 generic value="Turn closed captions on"
|
|
1266
|
+
uid=f101e1614 generic
|
|
1267
|
+
uid=f101e1615 button "Unmute"
|
|
1268
|
+
uid=f101e1616 generic value="Unmute"
|
|
1269
|
+
uid=s267 generic
|
|
1270
|
+
uid=s268 slider "Volume"
|
|
1271
|
+
uid=f101e1618 button "Turn fullscreen on"
|
|
1272
|
+
uid=f101e1619 generic value="Turn fullscreen on"
|
|
1273
|
+
uid=f101e1620 generic
|
|
1274
|
+
uid=f101e1621 generic
|
|
1275
|
+
uid=f101e1622 img
|
|
1276
|
+
uid=f101e1623 img
|
|
1277
|
+
uid=f101e1625 generic
|
|
1278
|
+
uid=f101e1626 paragraph value="Auto captions have been added to your video"
|
|
1279
|
+
uid=f101e1627 button "Open captions edit modal"
|
|
1280
|
+
uid=f101e1628 generic value="Edit captions"
|
|
1281
|
+
uid=f101e1629 button "Dismiss this banner"
|
|
1282
|
+
uid=f101e1630 img
|
|
1283
|
+
uid=f101e1633 generic
|
|
1284
|
+
uid=f101e1637 list
|
|
1285
|
+
uid=f101e1638 listitem
|
|
1286
|
+
uid=f101e1639 button "Jon Twigge and 1 other"
|
|
1287
|
+
uid=f101e1640 img "like"
|
|
1288
|
+
uid=f101e1641 generic
|
|
1289
|
+
uid=f101e1642 generic value="2"
|
|
1290
|
+
uid=f101e1643 generic value="Jon Twigge and 1 other"
|
|
1291
|
+
uid=f101e1644 listitem
|
|
1292
|
+
uid=f101e1645 list
|
|
1293
|
+
uid=f101e1646 listitem
|
|
1294
|
+
uid=f101e1647 button "2 comments on Jerome Etienne’s post"
|
|
1295
|
+
uid=f101e1648 generic value="2 comments"
|
|
1296
|
+
uid=f101e1649 generic
|
|
1297
|
+
uid=f101e1650 generic
|
|
1298
|
+
uid=f101e1651 button "React Like"
|
|
1299
|
+
uid=f101e1653 generic
|
|
1300
|
+
uid=f101e1654 img
|
|
1301
|
+
uid=f101e1656 generic value="Like"
|
|
1302
|
+
uid=s269 button "Open reactions menu"
|
|
1303
|
+
uid=f101e1658 img
|
|
1304
|
+
uid=f101e1662 button "Comment"
|
|
1305
|
+
uid=f101e1663 img
|
|
1306
|
+
uid=f101e1665 generic value="Comment"
|
|
1307
|
+
uid=f101e1668 button "Repost"
|
|
1308
|
+
uid=f101e1669 img
|
|
1309
|
+
uid=f101e1671 generic value="Repost"
|
|
1310
|
+
uid=f101e1674 button "Send in a private message"
|
|
1311
|
+
uid=f101e1675 img
|
|
1312
|
+
uid=f101e1678 generic value="Send"
|
|
1313
|
+
uid=f101e1681 link "156 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7448342498596282369/"
|
|
1314
|
+
uid=f101e1682 generic
|
|
1315
|
+
uid=f101e1683 generic
|
|
1316
|
+
uid=f101e1684 img
|
|
1317
|
+
uid=f101e1687 strong value="156 impressions"
|
|
1318
|
+
uid=f101e1688 generic value="View analytics"
|
|
1319
|
+
uid=f101e1689 listitem
|
|
1320
|
+
uid=f101e1691 generic
|
|
1321
|
+
uid=f101e1692 generic
|
|
1322
|
+
uid=f101e1693 generic value="Promote this post to reach people who matter to you."
|
|
1323
|
+
uid=f101e1695 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3AugcPost%3A7448322809954451456&origin=memberProfileAllActivity"
|
|
1324
|
+
uid=s270 StaticText "Boost"
|
|
1325
|
+
uid=f101e1699 article
|
|
1326
|
+
uid=f101e1701 generic
|
|
1327
|
+
uid=f101e1702 heading "Feed post number 12" level="2"
|
|
1328
|
+
uid=f101e1703 generic
|
|
1329
|
+
uid=f101e1704 generic
|
|
1330
|
+
uid=f101e1706 generic
|
|
1331
|
+
uid=f101e1707 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1332
|
+
uid=f101e1711 img "View Jerome Etienne’s graphic link"
|
|
1333
|
+
uid=f101e1712 generic
|
|
1334
|
+
uid=s271 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1335
|
+
uid=f101e1714 generic
|
|
1336
|
+
uid=f101e1716 generic
|
|
1337
|
+
uid=f101e1717 generic value="Jerome Etienne"
|
|
1338
|
+
uid=f101e1718 generic value="Jerome Etienne"
|
|
1339
|
+
uid=f101e1719 generic
|
|
1340
|
+
uid=f101e1720 generic
|
|
1341
|
+
uid=f101e1721 img
|
|
1342
|
+
uid=s272 StaticText "• You"
|
|
1343
|
+
uid=f101e1723 generic value="Verified • You"
|
|
1344
|
+
uid=f101e1724 generic
|
|
1345
|
+
uid=f101e1725 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1346
|
+
uid=f101e1726 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1347
|
+
uid=f101e1727 generic
|
|
1348
|
+
uid=f101e1728 generic
|
|
1349
|
+
uid=s273 StaticText "3w •"
|
|
1350
|
+
uid=f101e1731 img
|
|
1351
|
+
uid=f101e1733 generic value="3 weeks ago • Visible to anyone on or off LinkedIn"
|
|
1352
|
+
uid=f101e1736 button "Open control menu for post by Jerome Etienne"
|
|
1353
|
+
uid=f101e1737 img
|
|
1354
|
+
uid=f101e1740 generic
|
|
1355
|
+
uid=f101e1743 generic
|
|
1356
|
+
uid=s274 StaticText "I stumbled across an open-source project this week that genuinely surprised me. 🤯"
|
|
1357
|
+
uid=s275 StaticText "I was browsing GitHub looking for examples of multi-agent AI systems applied to real-world domains — and I found 𝗤𝘂𝗮𝗻𝘁𝗔𝗴𝗲𝗻𝘁."
|
|
1358
|
+
uid=s276 StaticText "𝗧𝗵𝗲 𝗰𝗵𝗮𝗹𝗹𝗲𝗻𝗴𝗲 it tackles: high-frequency trading is brutal. 📉 Markets move in milliseconds, signals conflict, and human analysis simply can't keep up with the noise."
|
|
1359
|
+
uid=s277 StaticText "So the team built something clever:"
|
|
1360
|
+
uid=s278 StaticText "Instead of one AI doing everything, they split the work across 𝘀𝗽𝗲𝗰𝗶𝗮𝗹𝗶𝘀𝘁 𝗮𝗴𝗲𝗻𝘁𝘀 running in parallel —"
|
|
1361
|
+
uid=s279 StaticText "📊 An 𝗜𝗻𝗱𝗶𝗰𝗮𝘁𝗼𝗿 𝗔𝗴𝗲𝗻𝘁 crunching RSI, MACD, and Stochastic Oscillator"
|
|
1362
|
+
uid=s280 StaticText "🕯️ A 𝗣𝗮𝘁𝘁𝗲𝗿𝗻 𝗔𝗴𝗲𝗻𝘁 reading chart patterns visually"
|
|
1363
|
+
uid=s281 StaticText "📈 A 𝗧𝗿𝗲𝗻𝗱 𝗔𝗴𝗲𝗻𝘁 analyzing market direction from annotated K-line charts"
|
|
1364
|
+
uid=s282 StaticText "Then a 𝗗𝗲𝗰𝗶𝘀𝗶𝗼𝗻 𝗔𝗴𝗲𝗻𝘁 synthesizes all three into a final LONG/SHORT signal — with entry, exit, and stop-loss levels. 🎯"
|
|
1365
|
+
uid=s283 StaticText "The turning point for me was realizing this isn't just a demo. It ships with a full 𝗙𝗹𝗮𝘀𝗸 𝗱𝗮𝘀𝗵𝗯𝗼𝗮𝗿𝗱, live Yahoo Finance feeds, and support for multiple LLM backends — GPT-4o, Claude, Qwen, MiniMax. You can actually run it. 🚀"
|
|
1366
|
+
uid=s284 StaticText "𝗧𝗵𝗲 𝗿𝗲𝘀𝘂𝗹𝘁: a fully orchestrated, LangGraph-powered trading assistant that any quant researcher or fintech developer can pick up and extend today."
|
|
1367
|
+
uid=s285 StaticText "𝗧𝗵𝗲 𝗹𝗲𝘀𝘀𝗼𝗻 I'm taking away: the future of AI in finance isn't a single model making calls — it's an 𝗼𝗿𝗰𝗵𝗲𝘀𝘁𝗿𝗮 𝗼𝗳 𝘀𝗽𝗲𝗰𝗶𝗮𝗹𝗶𝘀𝘁𝘀 that each do one thing well, then hand off to a decision layer. 🧠"
|
|
1368
|
+
uid=s286 StaticText "This is exactly the pattern I think we'll see dominate AI-powered tooling over the next few years."
|
|
1369
|
+
uid=s287 StaticText "Link in the first comment 👇"
|
|
1370
|
+
uid=s288 StaticText "Are you building multi-agent systems for any domain beyond finance? What patterns are working for you?"
|
|
1371
|
+
uid=f101e1744 link "hashtag AI" url="https://www.linkedin.com/search/results/all/?keywords=%23ai&origin=HASH_TAG_FROM_FEED"
|
|
1372
|
+
uid=f101e1745 generic value="hashtag"
|
|
1373
|
+
uid=f101e1746 generic value="#AI"
|
|
1374
|
+
uid=f101e1747 link "hashtag MultiAgent" url="https://www.linkedin.com/search/results/all/?keywords=%23multiagent&origin=HASH_TAG_FROM_FEED"
|
|
1375
|
+
uid=f101e1748 generic value="hashtag"
|
|
1376
|
+
uid=f101e1749 generic value="#MultiAgent"
|
|
1377
|
+
uid=f101e1750 link "hashtag QuantTrading" url="https://www.linkedin.com/search/results/all/?keywords=%23quanttrading&origin=HASH_TAG_FROM_FEED"
|
|
1378
|
+
uid=f101e1751 generic value="hashtag"
|
|
1379
|
+
uid=f101e1752 generic value="#QuantTrading"
|
|
1380
|
+
uid=f101e1753 link "hashtag LLM" url="https://www.linkedin.com/search/results/all/?keywords=%23llm&origin=HASH_TAG_FROM_FEED"
|
|
1381
|
+
uid=f101e1754 generic value="hashtag"
|
|
1382
|
+
uid=f101e1755 generic value="#LLM"
|
|
1383
|
+
uid=f101e1756 link "hashtag LangGraph" url="https://www.linkedin.com/search/results/all/?keywords=%23langgraph&origin=HASH_TAG_FROM_FEED"
|
|
1384
|
+
uid=f101e1757 generic value="hashtag"
|
|
1385
|
+
uid=f101e1758 generic value="#LangGraph"
|
|
1386
|
+
uid=f101e1759 link "hashtag Fintech" url="https://www.linkedin.com/search/results/all/?keywords=%23fintech&origin=HASH_TAG_FROM_FEED"
|
|
1387
|
+
uid=f101e1760 generic value="hashtag"
|
|
1388
|
+
uid=f101e1761 generic value="#Fintech"
|
|
1389
|
+
uid=f101e1762 link "hashtag OpenSource" url="https://www.linkedin.com/search/results/all/?keywords=%23opensource&origin=HASH_TAG_FROM_FEED"
|
|
1390
|
+
uid=f101e1763 generic value="hashtag"
|
|
1391
|
+
uid=f101e1764 generic value="#OpenSource"
|
|
1392
|
+
uid=f101e1765 button "see more, visually reveals content which is already detected by screen readers"
|
|
1393
|
+
uid=f101e1766 generic value="…more"
|
|
1394
|
+
uid=f101e1767 generic
|
|
1395
|
+
uid=f101e1771 region "Video player"
|
|
1396
|
+
uid=f101e1775 generic
|
|
1397
|
+
uid=f101e1776 button "Play"
|
|
1398
|
+
uid=f101e1777 generic value="Play"
|
|
1399
|
+
uid=f101e1778 slider "Playback progress"
|
|
1400
|
+
uid=f101e1780 generic value="Loaded: 5.03%"
|
|
1401
|
+
uid=f101e1782 generic
|
|
1402
|
+
uid=s289 StaticText "Remaining time"
|
|
1403
|
+
uid=f101e1783 generic value="2:39"
|
|
1404
|
+
uid=f101e1784 generic
|
|
1405
|
+
uid=s290 generic value="1x"
|
|
1406
|
+
uid=f101e1785 button "Playback speed"
|
|
1407
|
+
uid=f101e1786 generic value="Playback speed"
|
|
1408
|
+
uid=f101e1787 button "Turn closed captions on"
|
|
1409
|
+
uid=f101e1788 generic value="Turn closed captions on"
|
|
1410
|
+
uid=f101e1789 generic
|
|
1411
|
+
uid=f101e1790 button "Unmute"
|
|
1412
|
+
uid=f101e1791 generic value="Unmute"
|
|
1413
|
+
uid=s291 generic
|
|
1414
|
+
uid=s292 slider "Volume"
|
|
1415
|
+
uid=f101e1793 button "Turn fullscreen on"
|
|
1416
|
+
uid=f101e1794 generic value="Turn fullscreen on"
|
|
1417
|
+
uid=f101e1795 generic
|
|
1418
|
+
uid=f101e1796 generic
|
|
1419
|
+
uid=f101e1797 img
|
|
1420
|
+
uid=f101e1798 img
|
|
1421
|
+
uid=f101e1800 generic
|
|
1422
|
+
uid=f101e1801 paragraph value="Auto captions have been added to your video"
|
|
1423
|
+
uid=f101e1802 button "Open captions edit modal"
|
|
1424
|
+
uid=f101e1803 generic value="Edit captions"
|
|
1425
|
+
uid=f101e1804 button "Dismiss this banner"
|
|
1426
|
+
uid=f101e1805 img
|
|
1427
|
+
uid=f101e1808 generic
|
|
1428
|
+
uid=f101e1812 list
|
|
1429
|
+
uid=f101e1813 listitem
|
|
1430
|
+
uid=f101e1814 button "Jon Twigge and 1 other"
|
|
1431
|
+
uid=f101e1815 img "like"
|
|
1432
|
+
uid=f101e1816 generic
|
|
1433
|
+
uid=f101e1817 generic value="2"
|
|
1434
|
+
uid=f101e1818 generic value="Jon Twigge and 1 other"
|
|
1435
|
+
uid=f101e1819 listitem
|
|
1436
|
+
uid=f101e1820 list
|
|
1437
|
+
uid=f101e1821 listitem
|
|
1438
|
+
uid=f101e1822 button "2 comments on Jerome Etienne’s post"
|
|
1439
|
+
uid=f101e1823 generic value="2 comments"
|
|
1440
|
+
uid=f101e1824 generic
|
|
1441
|
+
uid=f101e1825 generic
|
|
1442
|
+
uid=f101e1826 button "React Like"
|
|
1443
|
+
uid=f101e1828 generic
|
|
1444
|
+
uid=f101e1829 img
|
|
1445
|
+
uid=f101e1831 generic value="Like"
|
|
1446
|
+
uid=s293 button "Open reactions menu"
|
|
1447
|
+
uid=f101e1833 img
|
|
1448
|
+
uid=f101e1837 button "Comment"
|
|
1449
|
+
uid=f101e1838 img
|
|
1450
|
+
uid=f101e1840 generic value="Comment"
|
|
1451
|
+
uid=f101e1843 button "Repost"
|
|
1452
|
+
uid=f101e1844 img
|
|
1453
|
+
uid=f101e1846 generic value="Repost"
|
|
1454
|
+
uid=f101e1849 button "Send in a private message"
|
|
1455
|
+
uid=f101e1850 img
|
|
1456
|
+
uid=f101e1853 generic value="Send"
|
|
1457
|
+
uid=f101e1856 link "185 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7448322944574853120/"
|
|
1458
|
+
uid=f101e1857 generic
|
|
1459
|
+
uid=f101e1858 generic
|
|
1460
|
+
uid=f101e1859 img
|
|
1461
|
+
uid=f101e1862 strong value="185 impressions"
|
|
1462
|
+
uid=f101e1863 generic value="View analytics"
|
|
1463
|
+
uid=f101e1864 listitem
|
|
1464
|
+
uid=f101e1866 generic
|
|
1465
|
+
uid=f101e1867 generic
|
|
1466
|
+
uid=f101e1868 generic value="Promote this post to reach people who matter to you."
|
|
1467
|
+
uid=f101e1870 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3AugcPost%3A7447960922687496192&origin=memberProfileAllActivity"
|
|
1468
|
+
uid=s294 StaticText "Boost"
|
|
1469
|
+
uid=f101e1874 article
|
|
1470
|
+
uid=f101e1876 generic
|
|
1471
|
+
uid=f101e1877 heading "Feed post number 13" level="2"
|
|
1472
|
+
uid=f101e1878 generic
|
|
1473
|
+
uid=f101e1879 generic
|
|
1474
|
+
uid=f101e1881 generic
|
|
1475
|
+
uid=f101e1882 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1476
|
+
uid=f101e1886 img "View Jerome Etienne’s graphic link"
|
|
1477
|
+
uid=f101e1887 generic
|
|
1478
|
+
uid=s295 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1479
|
+
uid=f101e1889 generic
|
|
1480
|
+
uid=f101e1891 generic
|
|
1481
|
+
uid=f101e1892 generic value="Jerome Etienne"
|
|
1482
|
+
uid=f101e1893 generic value="Jerome Etienne"
|
|
1483
|
+
uid=f101e1894 generic
|
|
1484
|
+
uid=f101e1895 generic
|
|
1485
|
+
uid=f101e1896 img
|
|
1486
|
+
uid=s296 StaticText "• You"
|
|
1487
|
+
uid=f101e1898 generic value="Verified • You"
|
|
1488
|
+
uid=f101e1899 generic
|
|
1489
|
+
uid=f101e1900 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1490
|
+
uid=f101e1901 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1491
|
+
uid=f101e1902 generic
|
|
1492
|
+
uid=f101e1903 generic
|
|
1493
|
+
uid=s297 StaticText "3w •"
|
|
1494
|
+
uid=f101e1906 img
|
|
1495
|
+
uid=f101e1908 generic value="3 weeks ago • Visible to anyone on or off LinkedIn"
|
|
1496
|
+
uid=f101e1911 button "Open control menu for post by Jerome Etienne"
|
|
1497
|
+
uid=f101e1912 img
|
|
1498
|
+
uid=f101e1915 generic
|
|
1499
|
+
uid=f101e1918 generic
|
|
1500
|
+
uid=s298 StaticText "𝗦𝗼𝗺𝗲𝗼𝗻𝗲 𝗲𝘃𝗮𝗹𝘂𝗮𝘁𝗲𝗱 𝟳𝟰𝟬 𝗷𝗼𝗯 𝗼𝗳𝗳𝗲𝗿𝘀 𝗮𝗻𝗱 𝗴𝗲𝗻𝗲𝗿𝗮𝘁𝗲𝗱 𝟭𝟬𝟬+ 𝘁𝗮𝗶𝗹𝗼𝗿𝗲𝗱 𝗖𝗩𝘀 𝗯𝗲𝗳𝗼𝗿𝗲 𝗹𝗮𝗻𝗱𝗶𝗻𝗴 𝗮 𝗛𝗲𝗮𝗱 𝗼𝗳 𝗔𝗽𝗽𝗹𝗶𝗲𝗱 𝗔𝗜 𝗿𝗼𝗹𝗲."
|
|
1501
|
+
uid=s299 StaticText "He didn't grind harder. 𝗛𝗲 𝗯𝘂𝗶𝗹𝘁 𝗮 𝘀𝘆𝘀𝘁𝗲𝗺."
|
|
1502
|
+
uid=s300 StaticText "Most people job search the same way they spam cold emails — high volume, low precision. Paste your CV everywhere and hope something sticks. 🙈"
|
|
1503
|
+
uid=s301 StaticText "This guy took a different approach. He turned 𝗖𝗹𝗮𝘂𝗱𝗲 𝗖𝗼𝗱𝗲 into a full job search command center. 🤖"
|
|
1504
|
+
uid=s302 StaticText "Here's how it works:"
|
|
1505
|
+
uid=s303 StaticText "- 🔍 Paste a job URL"
|
|
1506
|
+
uid=s304 StaticText "- 🏷️ System auto-classifies the role archetype (LLMOps, Agentic, PM, SA)"
|
|
1507
|
+
uid=s305 StaticText "- 📊 Runs a structured 𝗔–𝗙 𝗲𝘃𝗮𝗹𝘂𝗮𝘁𝗶𝗼𝗻 𝗮𝗰𝗿𝗼𝘀𝘀 𝟭𝟬 𝘄𝗲𝗶𝗴𝗵𝘁𝗲𝗱 𝗱𝗶𝗺𝗲𝗻𝘀𝗶𝗼𝗻𝘀"
|
|
1508
|
+
uid=s306 StaticText "- 📄 Generates a keyword-injected, ATS-optimized PDF"
|
|
1509
|
+
uid=s307 StaticText "- 🗂️ Logs everything to a Go dashboard"
|
|
1510
|
+
uid=s308 StaticText "𝗢𝗻𝗲 𝗰𝗼𝗺𝗺𝗮𝗻𝗱. 𝗙𝘂𝗹𝗹 𝗽𝗶𝗽𝗲𝗹𝗶𝗻𝗲."
|
|
1511
|
+
uid=s309 StaticText "But the real insight is the 𝗯𝗮𝘁𝗰𝗵 𝗽𝗿𝗼𝗰𝗲𝘀𝘀𝗶𝗻𝗴. ⚡"
|
|
1512
|
+
uid=s310 StaticText "He didn't evaluate offers one at a time. He ran 𝟭𝟬+ 𝗶𝗻 𝗽𝗮𝗿𝗮𝗹𝗹𝗲𝗹 using Claude sub-agents - the same way engineers run parallel worktrees."
|
|
1513
|
+
uid=s311 StaticText "The scoring wasn't vibes. It checked CV match, comp research, culture fit, level strategy, and generated 𝗦𝗧𝗔𝗥+𝗥 𝘀𝘁𝗼𝗿𝗶𝗲𝘀 for behavioral interviews. 🎯"
|
|
1514
|
+
uid=s312 StaticText "The result: 𝗼𝗻𝗹𝘆 𝗮𝗽𝗽𝗹𝘆 𝘄𝗵𝗲𝗿𝗲 𝘁𝗵𝗲𝗿𝗲'𝘀 𝗴𝗲𝗻𝘂𝗶𝗻𝗲 𝗳𝗶𝘁."
|
|
1515
|
+
uid=s313 StaticText "740 offers evaluated. 100+ tailored CVs. 𝟭 𝗷𝗼𝗯 𝗹𝗮𝗻𝗱𝗲𝗱 - the right one. 🏆"
|
|
1516
|
+
uid=s314 StaticText "The skill wasn't applying to more jobs."
|
|
1517
|
+
uid=s315 StaticText "It was 𝗯𝘂𝗶𝗹𝗱𝗶𝗻𝗴 𝗮 𝘀𝘆𝘀𝘁𝗲𝗺 𝘁𝗵𝗮𝘁 𝗳𝗶𝗹𝘁𝗲𝗿𝘀 𝗿𝘂𝘁𝗵𝗹𝗲𝘀𝘀𝗹𝘆. 🔬"
|
|
1518
|
+
uid=s316 StaticText "Link in comment"
|
|
1519
|
+
uid=s317 StaticText "𝗧𝗵𝗮𝘁'𝘀 𝘁𝗵𝗲 𝗱𝗶𝗳𝗳𝗲𝗿𝗲𝗻𝗰𝗲 𝗯𝗲𝘁𝘄𝗲𝗲𝗻 𝘀𝗽𝗿𝗮𝘆-𝗮𝗻𝗱-𝗽𝗿𝗮𝘆 𝗮𝗻𝗱 𝗮𝗰𝘁𝘂𝗮𝗹𝗹𝘆 𝗴𝗲𝘁𝘁𝗶𝗻𝗴 𝗵𝗶𝗿𝗲𝗱."
|
|
1520
|
+
uid=s318 StaticText "What's the most creative use of AI tools you've seen in a job search? 👇"
|
|
1521
|
+
uid=f101e1919 button "see more, visually reveals content which is already detected by screen readers"
|
|
1522
|
+
uid=f101e1920 generic value="…more"
|
|
1523
|
+
uid=f101e1925 region "Video player"
|
|
1524
|
+
uid=f101e1929 generic
|
|
1525
|
+
uid=f101e1930 button "Play"
|
|
1526
|
+
uid=f101e1931 generic value="Play"
|
|
1527
|
+
uid=f101e1932 slider "Playback progress"
|
|
1528
|
+
uid=f101e1934 generic value="Loaded: 79.88%"
|
|
1529
|
+
uid=f101e1936 generic
|
|
1530
|
+
uid=s319 StaticText "Remaining time"
|
|
1531
|
+
uid=f101e1937 generic value="0:20"
|
|
1532
|
+
uid=f101e1938 generic
|
|
1533
|
+
uid=s320 generic value="1x"
|
|
1534
|
+
uid=f101e1939 button "Playback speed"
|
|
1535
|
+
uid=f101e1940 generic value="Playback speed"
|
|
1536
|
+
uid=f101e1941 generic
|
|
1537
|
+
uid=f101e1942 button "Unmute"
|
|
1538
|
+
uid=f101e1943 generic value="Unmute"
|
|
1539
|
+
uid=s321 generic
|
|
1540
|
+
uid=s322 slider "Volume"
|
|
1541
|
+
uid=f101e1945 button "Turn fullscreen on"
|
|
1542
|
+
uid=f101e1946 generic value="Turn fullscreen on"
|
|
1543
|
+
uid=f101e1947 generic
|
|
1544
|
+
uid=f101e1951 list
|
|
1545
|
+
uid=f101e1952 listitem
|
|
1546
|
+
uid=f101e1953 button "You and 2 others"
|
|
1547
|
+
uid=f101e1954 img "like"
|
|
1548
|
+
uid=f101e1955 generic
|
|
1549
|
+
uid=f101e1956 generic value="3"
|
|
1550
|
+
uid=f101e1957 generic value="You and 2 others"
|
|
1551
|
+
uid=f101e1958 listitem
|
|
1552
|
+
uid=f101e1959 list
|
|
1553
|
+
uid=f101e1960 listitem
|
|
1554
|
+
uid=f101e1961 button "2 comments on Jerome Etienne’s post"
|
|
1555
|
+
uid=f101e1962 generic value="2 comments"
|
|
1556
|
+
uid=s323 StaticText "·"
|
|
1557
|
+
uid=f101e1963 listitem
|
|
1558
|
+
uid=f101e1964 button "1 repost of Jerome Etienne’s post"
|
|
1559
|
+
uid=f101e1965 generic value="1 repost"
|
|
1560
|
+
uid=f101e1966 generic
|
|
1561
|
+
uid=f101e1967 generic
|
|
1562
|
+
uid=f101e1968 button "Unreact Like" pressed
|
|
1563
|
+
uid=f101e1970 generic
|
|
1564
|
+
uid=f101e1971 img "like"
|
|
1565
|
+
uid=f101e1972 generic value="Like"
|
|
1566
|
+
uid=s324 button "Open reactions menu"
|
|
1567
|
+
uid=f101e1974 img
|
|
1568
|
+
uid=f101e1978 button "Comment"
|
|
1569
|
+
uid=f101e1979 img
|
|
1570
|
+
uid=f101e1981 generic value="Comment"
|
|
1571
|
+
uid=f101e1984 button "Repost"
|
|
1572
|
+
uid=f101e1985 img
|
|
1573
|
+
uid=f101e1987 generic value="Repost"
|
|
1574
|
+
uid=f101e1990 button "Send in a private message"
|
|
1575
|
+
uid=f101e1991 img
|
|
1576
|
+
uid=f101e1994 generic value="Send"
|
|
1577
|
+
uid=f101e1997 link "2,150 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7447960974512254976/"
|
|
1578
|
+
uid=f101e1998 generic
|
|
1579
|
+
uid=f101e1999 generic
|
|
1580
|
+
uid=f101e2000 img
|
|
1581
|
+
uid=f101e2003 strong value="2,150 impressions"
|
|
1582
|
+
uid=f101e2004 generic value="View analytics"
|
|
1583
|
+
uid=f101e2005 listitem
|
|
1584
|
+
uid=f101e2007 generic
|
|
1585
|
+
uid=f101e2008 generic
|
|
1586
|
+
uid=f101e2009 generic value="Promote this post to reach people who matter to you."
|
|
1587
|
+
uid=f101e2011 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3AugcPost%3A7447523790546157568&origin=memberProfileAllActivity"
|
|
1588
|
+
uid=s325 StaticText "Boost"
|
|
1589
|
+
uid=f101e2015 article
|
|
1590
|
+
uid=f101e2017 generic
|
|
1591
|
+
uid=f101e2018 heading "Feed post number 14" level="2"
|
|
1592
|
+
uid=f101e2019 generic
|
|
1593
|
+
uid=f101e2020 generic
|
|
1594
|
+
uid=f101e2022 generic
|
|
1595
|
+
uid=f101e2023 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1596
|
+
uid=f101e2027 img "View Jerome Etienne’s graphic link"
|
|
1597
|
+
uid=f101e2028 generic
|
|
1598
|
+
uid=s326 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1599
|
+
uid=f101e2030 generic
|
|
1600
|
+
uid=f101e2032 generic
|
|
1601
|
+
uid=f101e2033 generic value="Jerome Etienne"
|
|
1602
|
+
uid=f101e2034 generic value="Jerome Etienne"
|
|
1603
|
+
uid=f101e2035 generic
|
|
1604
|
+
uid=f101e2036 generic
|
|
1605
|
+
uid=f101e2037 img
|
|
1606
|
+
uid=s327 StaticText "• You"
|
|
1607
|
+
uid=f101e2039 generic value="Verified • You"
|
|
1608
|
+
uid=f101e2040 generic
|
|
1609
|
+
uid=f101e2041 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1610
|
+
uid=f101e2042 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1611
|
+
uid=f101e2043 generic
|
|
1612
|
+
uid=f101e2044 generic
|
|
1613
|
+
uid=s328 StaticText "3w •"
|
|
1614
|
+
uid=f101e2047 img
|
|
1615
|
+
uid=f101e2049 generic value="3 weeks ago • Visible to anyone on or off LinkedIn"
|
|
1616
|
+
uid=f101e2052 button "Open control menu for post by Jerome Etienne"
|
|
1617
|
+
uid=f101e2053 img
|
|
1618
|
+
uid=f101e2056 generic
|
|
1619
|
+
uid=f101e2059 generic
|
|
1620
|
+
uid=s329 StaticText "🌟 Exciting AI/Tech Discovery! 🌟"
|
|
1621
|
+
uid=s330 StaticText "Have you ever wanted to try motion capture without buying expensive studio equipment? There’s now a free and open-source tool called FreeMoCap that lets anyone track 3D body motion using just a regular webcam!"
|
|
1622
|
+
uid=s331 StaticText "With FreeMoCap, you can:"
|
|
1623
|
+
uid=s332 StaticText "- Track full-body movement in 3D"
|
|
1624
|
+
uid=s333 StaticText "- No markers or special suits needed"
|
|
1625
|
+
uid=s334 StaticText "- Use almost any camera (even multiple for better models)"
|
|
1626
|
+
uid=s335 StaticText "- Generate a 3D skeleton model of yourself right at home"
|
|
1627
|
+
uid=s336 StaticText "This democratizes motion capture technology that was once limited to big studios and high budgets. Perfect for AI, animation, research, and creative projects!"
|
|
1628
|
+
uid=s337 StaticText "Check it out on GitHub:"
|
|
1629
|
+
uid=f101e2060 link "https://lnkd.in/eq5gAZsn" url="https://lnkd.in/eq5gAZsn"
|
|
1630
|
+
uid=s338 StaticText "Let’s keep exploring practical AI tools that empower everyone 🚀"
|
|
1631
|
+
uid=f101e2061 link "hashtag AI" url="https://www.linkedin.com/search/results/all/?keywords=%23ai&origin=HASH_TAG_FROM_FEED"
|
|
1632
|
+
uid=f101e2062 generic value="hashtag"
|
|
1633
|
+
uid=f101e2063 generic value="#AI"
|
|
1634
|
+
uid=f101e2064 link "hashtag OpenSource" url="https://www.linkedin.com/search/results/all/?keywords=%23opensource&origin=HASH_TAG_FROM_FEED"
|
|
1635
|
+
uid=f101e2065 generic value="hashtag"
|
|
1636
|
+
uid=f101e2066 generic value="#OpenSource"
|
|
1637
|
+
uid=f101e2067 link "hashtag MotionCapture" url="https://www.linkedin.com/search/results/all/?keywords=%23motioncapture&origin=HASH_TAG_FROM_FEED"
|
|
1638
|
+
uid=f101e2068 generic value="hashtag"
|
|
1639
|
+
uid=f101e2069 generic value="#MotionCapture"
|
|
1640
|
+
uid=f101e2070 link "hashtag Innovation" url="https://www.linkedin.com/search/results/all/?keywords=%23innovation&origin=HASH_TAG_FROM_FEED"
|
|
1641
|
+
uid=f101e2071 generic value="hashtag"
|
|
1642
|
+
uid=f101e2072 generic value="#Innovation"
|
|
1643
|
+
uid=f101e2073 link "hashtag TechForGood" url="https://www.linkedin.com/search/results/all/?keywords=%23techforgood&origin=HASH_TAG_FROM_FEED"
|
|
1644
|
+
uid=f101e2074 generic value="hashtag"
|
|
1645
|
+
uid=f101e2075 generic value="#TechForGood"
|
|
1646
|
+
uid=f101e2076 button "see more, visually reveals content which is already detected by screen readers"
|
|
1647
|
+
uid=f101e2077 generic value="…more"
|
|
1648
|
+
uid=f101e2082 region "Video player"
|
|
1649
|
+
uid=f101e2086 generic
|
|
1650
|
+
uid=f101e2087 button "Play"
|
|
1651
|
+
uid=f101e2088 generic value="Play"
|
|
1652
|
+
uid=f101e2089 slider "Playback progress"
|
|
1653
|
+
uid=f101e2091 generic value="Loaded: 9.57%"
|
|
1654
|
+
uid=f101e2093 generic
|
|
1655
|
+
uid=s339 StaticText "Remaining time"
|
|
1656
|
+
uid=f101e2094 generic value="1:23"
|
|
1657
|
+
uid=f101e2095 generic
|
|
1658
|
+
uid=s340 generic value="1x"
|
|
1659
|
+
uid=f101e2096 button "Playback speed"
|
|
1660
|
+
uid=f101e2097 generic value="Playback speed"
|
|
1661
|
+
uid=f101e2098 generic
|
|
1662
|
+
uid=f101e2099 button "Unmute"
|
|
1663
|
+
uid=f101e2100 generic value="Unmute"
|
|
1664
|
+
uid=s341 generic
|
|
1665
|
+
uid=s342 slider "Volume"
|
|
1666
|
+
uid=f101e2102 button "Turn fullscreen on"
|
|
1667
|
+
uid=f101e2103 generic value="Turn fullscreen on"
|
|
1668
|
+
uid=f101e2104 generic
|
|
1669
|
+
uid=f101e2108 list
|
|
1670
|
+
uid=f101e2109 listitem
|
|
1671
|
+
uid=f101e2110 button "Romain Kurtz and 3 others"
|
|
1672
|
+
uid=f101e2111 img "like"
|
|
1673
|
+
uid=f101e2112 generic
|
|
1674
|
+
uid=f101e2113 generic value="4"
|
|
1675
|
+
uid=f101e2114 generic value="Romain Kurtz and 3 others"
|
|
1676
|
+
uid=f101e2115 generic
|
|
1677
|
+
uid=f101e2116 generic
|
|
1678
|
+
uid=f101e2117 button "React Like"
|
|
1679
|
+
uid=f101e2119 generic
|
|
1680
|
+
uid=f101e2120 img
|
|
1681
|
+
uid=f101e2122 generic value="Like"
|
|
1682
|
+
uid=s343 button "Open reactions menu"
|
|
1683
|
+
uid=f101e2124 img
|
|
1684
|
+
uid=f101e2128 button "Comment"
|
|
1685
|
+
uid=f101e2129 img
|
|
1686
|
+
uid=f101e2131 generic value="Comment"
|
|
1687
|
+
uid=f101e2134 button "Repost"
|
|
1688
|
+
uid=f101e2135 img
|
|
1689
|
+
uid=f101e2137 generic value="Repost"
|
|
1690
|
+
uid=f101e2140 button "Send in a private message"
|
|
1691
|
+
uid=f101e2141 img
|
|
1692
|
+
uid=f101e2144 generic value="Send"
|
|
1693
|
+
uid=f101e2147 link "222 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7447523855213957120/"
|
|
1694
|
+
uid=f101e2148 generic
|
|
1695
|
+
uid=f101e2149 generic
|
|
1696
|
+
uid=f101e2150 img
|
|
1697
|
+
uid=f101e2153 strong value="222 impressions"
|
|
1698
|
+
uid=f101e2154 generic value="View analytics"
|
|
1699
|
+
uid=f101e2155 listitem
|
|
1700
|
+
uid=f101e2157 generic
|
|
1701
|
+
uid=f101e2159 generic
|
|
1702
|
+
uid=s344 StaticText "This post is not eligible to be boosted."
|
|
1703
|
+
uid=f101e2162 button "Disclaimer tooltip"
|
|
1704
|
+
uid=f101e2163 img
|
|
1705
|
+
uid=f101e2168 article
|
|
1706
|
+
uid=f101e2170 generic
|
|
1707
|
+
uid=f101e2171 heading "Feed post number 15" level="2"
|
|
1708
|
+
uid=f101e2172 generic
|
|
1709
|
+
uid=f101e2173 generic
|
|
1710
|
+
uid=f101e2175 generic
|
|
1711
|
+
uid=f101e2176 link "Jerome’s profile photo" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1712
|
+
uid=f101e2179 img "Jerome’s profile photo"
|
|
1713
|
+
uid=f101e2180 generic
|
|
1714
|
+
uid=f101e2182 link "Jerome Etienne" url="/in/jeromeetienne/"
|
|
1715
|
+
uid=s345 StaticText "reposted this"
|
|
1716
|
+
uid=f101e2185 button "Open control menu for post by Daniel Han"
|
|
1717
|
+
uid=f101e2186 img
|
|
1718
|
+
uid=f101e2188 generic
|
|
1719
|
+
uid=f101e2189 generic
|
|
1720
|
+
uid=f101e2190 link "View Daniel Han’s graphic link" url="https://www.linkedin.com/in/danielhanchen?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAB5uZxEBdaDD9s2wq-JQWkYM3y9pnPXKlj0"
|
|
1721
|
+
uid=f101e2194 img "View Daniel Han’s graphic link"
|
|
1722
|
+
uid=f101e2195 generic
|
|
1723
|
+
uid=s346 unknown url="https://www.linkedin.com/in/danielhanchen?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAB5uZxEBdaDD9s2wq-JQWkYM3y9pnPXKlj0"
|
|
1724
|
+
uid=f101e2197 generic
|
|
1725
|
+
uid=f101e2199 generic
|
|
1726
|
+
uid=f101e2200 generic value="Daniel Han"
|
|
1727
|
+
uid=f101e2201 generic value="Daniel Han"
|
|
1728
|
+
uid=f101e2202 generic
|
|
1729
|
+
uid=f101e2203 generic
|
|
1730
|
+
uid=f101e2204 img
|
|
1731
|
+
uid=s347 StaticText "• 2nd"
|
|
1732
|
+
uid=f101e2206 generic value="Verified • 2nd"
|
|
1733
|
+
uid=f101e2207 generic
|
|
1734
|
+
uid=f101e2208 generic value="Co-founder @ Unsloth AI"
|
|
1735
|
+
uid=f101e2209 generic value="Co-founder @ Unsloth AI"
|
|
1736
|
+
uid=f101e2210 link "Visit my website" url="https://unsloth.ai/"
|
|
1737
|
+
uid=f101e2211 generic value="Visit my website"
|
|
1738
|
+
uid=f101e2212 generic
|
|
1739
|
+
uid=f101e2213 generic
|
|
1740
|
+
uid=s348 StaticText "3w • Edited •"
|
|
1741
|
+
uid=f101e2216 img
|
|
1742
|
+
uid=f101e2218 generic value="3 weeks ago • Edited • Visible to anyone on or off LinkedIn"
|
|
1743
|
+
uid=f101e2219 button "Follow Daniel Han"
|
|
1744
|
+
uid=f101e2220 img
|
|
1745
|
+
uid=f101e2222 generic value="Follow"
|
|
1746
|
+
uid=f101e2224 generic
|
|
1747
|
+
uid=f101e2227 generic
|
|
1748
|
+
uid=s349 StaticText "You can now fine-tune Gemma 4 with our free notebooks! 🔥"
|
|
1749
|
+
uid=s350 StaticText "Gemma-4 just needs 8GB VRAM to train locally on"
|
|
1750
|
+
uid=f101e2228 link "Unsloth AI" url="https://www.linkedin.com/company/unsloth/"
|
|
1751
|
+
uid=f101e2230 generic value="Unsloth AI"
|
|
1752
|
+
uid=s351 StaticText "."
|
|
1753
|
+
uid=s352 StaticText "Unsloth trains"
|
|
1754
|
+
uid=f101e2231 link "Google" url="https://www.linkedin.com/company/google/"
|
|
1755
|
+
uid=f101e2233 generic value="Google"
|
|
1756
|
+
uid=s353 StaticText "Gemma4 1.5x faster with 60% less VRAM, than FA2 setups. You can also train via Unsloth Studio for vision, audio and text support."
|
|
1757
|
+
uid=s354 StaticText "We also did some bug fixes. Details in our guide:"
|
|
1758
|
+
uid=f101e2234 link "https://lnkd.in/gFARZfPb" url="https://lnkd.in/gFARZfPb"
|
|
1759
|
+
uid=s355 StaticText "⭐ GitHub repo:"
|
|
1760
|
+
uid=f101e2235 link "https://lnkd.in/gyaDBTxK" url="https://lnkd.in/gyaDBTxK"
|
|
1761
|
+
uid=s356 StaticText "Gemma-4-E4B Colab:"
|
|
1762
|
+
uid=f101e2236 link "https://lnkd.in/gqeNse-2" url="https://lnkd.in/gqeNse-2"
|
|
1763
|
+
uid=f101e2237 button "see more, visually reveals content which is already detected by screen readers"
|
|
1764
|
+
uid=f101e2238 generic value="…more"
|
|
1765
|
+
uid=f101e2240 generic
|
|
1766
|
+
uid=f101e2242 button "Activate to view larger image, No alternative text description for this image"
|
|
1767
|
+
uid=f101e2243 generic value="Activate to view larger image,"
|
|
1768
|
+
uid=f101e2246 img "No alternative text description for this image"
|
|
1769
|
+
uid=f101e2247 generic value="Activate to view larger image,"
|
|
1770
|
+
uid=f101e2248 generic
|
|
1771
|
+
uid=f101e2252 list
|
|
1772
|
+
uid=f101e2253 listitem
|
|
1773
|
+
uid=f101e2254 button "You and 3,218 others"
|
|
1774
|
+
uid=f101e2255 img "like"
|
|
1775
|
+
uid=f101e2256 img "insightful"
|
|
1776
|
+
uid=f101e2257 img "love"
|
|
1777
|
+
uid=f101e2258 generic
|
|
1778
|
+
uid=f101e2259 generic value="3,219"
|
|
1779
|
+
uid=f101e2260 generic value="You and 3,218 others"
|
|
1780
|
+
uid=f101e2261 listitem
|
|
1781
|
+
uid=f101e2262 list
|
|
1782
|
+
uid=f101e2263 listitem
|
|
1783
|
+
uid=f101e2264 button "107 comments on Daniel Han’s post"
|
|
1784
|
+
uid=f101e2265 generic value="107 comments"
|
|
1785
|
+
uid=s357 StaticText "·"
|
|
1786
|
+
uid=f101e2266 listitem
|
|
1787
|
+
uid=f101e2267 button "275 reposts of Daniel Han’s post"
|
|
1788
|
+
uid=f101e2268 generic value="275 reposts"
|
|
1789
|
+
uid=f101e2269 generic
|
|
1790
|
+
uid=f101e2270 generic
|
|
1791
|
+
uid=f101e2271 button "Unreact Like" pressed
|
|
1792
|
+
uid=f101e2273 generic
|
|
1793
|
+
uid=f101e2274 img "like"
|
|
1794
|
+
uid=f101e2275 generic value="Like"
|
|
1795
|
+
uid=s358 button "Open reactions menu"
|
|
1796
|
+
uid=f101e2277 img
|
|
1797
|
+
uid=f101e2281 button "Comment"
|
|
1798
|
+
uid=f101e2282 img
|
|
1799
|
+
uid=f101e2284 generic value="Comment"
|
|
1800
|
+
uid=f101e2287 button "Repost"
|
|
1801
|
+
uid=f101e2288 img
|
|
1802
|
+
uid=f101e2290 generic value="Repost"
|
|
1803
|
+
uid=f101e2293 button "Send in a private message"
|
|
1804
|
+
uid=f101e2294 img
|
|
1805
|
+
uid=f101e2297 generic value="Send"
|
|
1806
|
+
uid=f101e2298 listitem
|
|
1807
|
+
uid=f101e2300 generic
|
|
1808
|
+
uid=f101e2301 generic
|
|
1809
|
+
uid=f101e2302 generic value="Promote this post to reach people who matter to you."
|
|
1810
|
+
uid=f101e2304 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3Ashare%3A7446885218788982784&origin=memberProfileAllActivity"
|
|
1811
|
+
uid=s359 StaticText "Boost"
|
|
1812
|
+
uid=f101e2308 article
|
|
1813
|
+
uid=f101e2310 generic
|
|
1814
|
+
uid=f101e2311 heading "Feed post number 16" level="2"
|
|
1815
|
+
uid=f101e2312 generic
|
|
1816
|
+
uid=f101e2313 generic
|
|
1817
|
+
uid=f101e2315 generic
|
|
1818
|
+
uid=f101e2316 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1819
|
+
uid=f101e2320 img "View Jerome Etienne’s graphic link"
|
|
1820
|
+
uid=f101e2321 generic
|
|
1821
|
+
uid=s360 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1822
|
+
uid=f101e2323 generic
|
|
1823
|
+
uid=f101e2325 generic
|
|
1824
|
+
uid=f101e2326 generic value="Jerome Etienne"
|
|
1825
|
+
uid=f101e2327 generic value="Jerome Etienne"
|
|
1826
|
+
uid=f101e2328 generic
|
|
1827
|
+
uid=f101e2329 generic
|
|
1828
|
+
uid=f101e2330 img
|
|
1829
|
+
uid=s361 StaticText "• You"
|
|
1830
|
+
uid=f101e2332 generic value="Verified • You"
|
|
1831
|
+
uid=f101e2333 generic
|
|
1832
|
+
uid=f101e2334 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1833
|
+
uid=f101e2335 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1834
|
+
uid=f101e2336 generic
|
|
1835
|
+
uid=f101e2337 generic
|
|
1836
|
+
uid=s362 StaticText "3w •"
|
|
1837
|
+
uid=f101e2340 img
|
|
1838
|
+
uid=f101e2342 generic value="3 weeks ago • Visible to anyone on or off LinkedIn"
|
|
1839
|
+
uid=f101e2345 button "Open control menu for post by Jerome Etienne"
|
|
1840
|
+
uid=f101e2346 img
|
|
1841
|
+
uid=f101e2349 generic
|
|
1842
|
+
uid=f101e2352 generic
|
|
1843
|
+
uid=s363 StaticText "I’ve been exploring what a truly *useful* AI agent looks like for business operators — not just chat, but something that can actually think through a full FP&A workflow."
|
|
1844
|
+
uid=s364 StaticText "Here’s a demo I just shared 👇"
|
|
1845
|
+
uid=s365 StaticText "**Business Analyst Agent**"
|
|
1846
|
+
uid=s366 StaticText "A multi-skill assistant that combines modeling, analysis, and planning to help you understand and steer your business."
|
|
1847
|
+
uid=s367 StaticText "💡 In this demo: *Mid-Year Budget Reforecast (B2B SaaS)*"
|
|
1848
|
+
uid=s368 StaticText "You’re the FP&A lead."
|
|
1849
|
+
uid=s369 StaticText "The 2026 budget was approved… but Q1 & Q2 missed the plan."
|
|
1850
|
+
uid=s370 StaticText "The CFO wants a revised forecast by the end of the week."
|
|
1851
|
+
uid=s371 StaticText "The agent walks through the full process:"
|
|
1852
|
+
uid=s372 StaticText "* Rebuilding the original budget"
|
|
1853
|
+
uid=s373 StaticText "* Injecting actuals"
|
|
1854
|
+
uid=s374 StaticText "* Diagnosing gaps vs plan"
|
|
1855
|
+
uid=s375 StaticText "* Generating multiple H2 scenarios"
|
|
1856
|
+
uid=s376 StaticText "* Selecting the best path"
|
|
1857
|
+
uid=s377 StaticText "* Building a milestone plan"
|
|
1858
|
+
uid=s378 StaticText "* Simulating outcomes"
|
|
1859
|
+
uid=s379 StaticText "* Delivering a clear recommendation"
|
|
1860
|
+
uid=s380 StaticText "What’s interesting here isn’t just automation — it’s the **structured reasoning across multiple steps**, like a real operator would do."
|
|
1861
|
+
uid=s381 StaticText "Curious how far we can push agents beyond “answering questions” into *decision systems*."
|
|
1862
|
+
uid=s382 StaticText "Would love your thoughts — where would something like this break (or shine) in your workflow?"
|
|
1863
|
+
uid=f101e2353 button "see more, visually reveals content which is already detected by screen readers"
|
|
1864
|
+
uid=f101e2354 generic value="…more"
|
|
1865
|
+
uid=f101e2355 generic
|
|
1866
|
+
uid=s383 unknown url="https://youtube.com/watch?v=T28IEQVhdDg&si=PjDwncfhjT57TNSJ"
|
|
1867
|
+
uid=s384 unknown url="https://youtube.com/watch?v=T28IEQVhdDg&si=PjDwncfhjT57TNSJ"
|
|
1868
|
+
uid=f101e2365 generic
|
|
1869
|
+
uid=f101e2366 generic value="AgentMD Runner - Business Analyst Agent - Demo 07 - Elaborate: Mid-Year Budget Reforecast"
|
|
1870
|
+
uid=f101e2367 generic value="youtube.com"
|
|
1871
|
+
uid=f101e2368 generic
|
|
1872
|
+
uid=f101e2372 list
|
|
1873
|
+
uid=f101e2373 listitem
|
|
1874
|
+
uid=f101e2374 button "3 reactions"
|
|
1875
|
+
uid=f101e2375 img "like"
|
|
1876
|
+
uid=f101e2376 generic value="3"
|
|
1877
|
+
uid=f101e2377 generic
|
|
1878
|
+
uid=f101e2378 generic
|
|
1879
|
+
uid=f101e2379 button "React Like"
|
|
1880
|
+
uid=f101e2381 generic
|
|
1881
|
+
uid=f101e2382 img
|
|
1882
|
+
uid=f101e2384 generic value="Like"
|
|
1883
|
+
uid=s385 button "Open reactions menu"
|
|
1884
|
+
uid=f101e2386 img
|
|
1885
|
+
uid=f101e2390 button "Comment"
|
|
1886
|
+
uid=f101e2391 img
|
|
1887
|
+
uid=f101e2393 generic value="Comment"
|
|
1888
|
+
uid=f101e2396 button "Repost"
|
|
1889
|
+
uid=f101e2397 img
|
|
1890
|
+
uid=f101e2399 generic value="Repost"
|
|
1891
|
+
uid=f101e2402 button "Send in a private message"
|
|
1892
|
+
uid=f101e2403 img
|
|
1893
|
+
uid=f101e2406 generic value="Send"
|
|
1894
|
+
uid=f101e2409 link "141 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7446885221574189056/"
|
|
1895
|
+
uid=f101e2410 generic
|
|
1896
|
+
uid=f101e2411 generic
|
|
1897
|
+
uid=f101e2412 img
|
|
1898
|
+
uid=f101e2415 strong value="141 impressions"
|
|
1899
|
+
uid=f101e2416 generic value="View analytics"
|
|
1900
|
+
uid=f101e2417 listitem
|
|
1901
|
+
uid=f101e2419 generic
|
|
1902
|
+
uid=f101e2420 generic
|
|
1903
|
+
uid=f101e2421 generic value="Promote this post to reach people who matter to you."
|
|
1904
|
+
uid=f101e2423 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3Ashare%3A7444638688757649408&origin=memberProfileAllActivity"
|
|
1905
|
+
uid=s386 StaticText "Boost"
|
|
1906
|
+
uid=f101e2427 article
|
|
1907
|
+
uid=f101e2429 generic
|
|
1908
|
+
uid=f101e2430 heading "Feed post number 17" level="2"
|
|
1909
|
+
uid=f101e2431 generic
|
|
1910
|
+
uid=f101e2432 generic
|
|
1911
|
+
uid=f101e2434 generic
|
|
1912
|
+
uid=f101e2435 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1913
|
+
uid=f101e2439 img "View Jerome Etienne’s graphic link"
|
|
1914
|
+
uid=f101e2440 generic
|
|
1915
|
+
uid=s387 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1916
|
+
uid=f101e2442 generic
|
|
1917
|
+
uid=f101e2444 generic
|
|
1918
|
+
uid=f101e2445 generic value="Jerome Etienne"
|
|
1919
|
+
uid=f101e2446 generic value="Jerome Etienne"
|
|
1920
|
+
uid=f101e2447 generic
|
|
1921
|
+
uid=f101e2448 generic
|
|
1922
|
+
uid=f101e2449 img
|
|
1923
|
+
uid=s388 StaticText "• You"
|
|
1924
|
+
uid=f101e2451 generic value="Verified • You"
|
|
1925
|
+
uid=f101e2452 generic
|
|
1926
|
+
uid=f101e2453 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1927
|
+
uid=f101e2454 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1928
|
+
uid=f101e2455 generic
|
|
1929
|
+
uid=f101e2456 generic
|
|
1930
|
+
uid=s389 StaticText "1mo •"
|
|
1931
|
+
uid=f101e2459 img
|
|
1932
|
+
uid=f101e2461 generic value="1 month ago • Visible to anyone on or off LinkedIn"
|
|
1933
|
+
uid=f101e2464 button "Open control menu for post by Jerome Etienne"
|
|
1934
|
+
uid=f101e2465 img
|
|
1935
|
+
uid=f101e2471 generic
|
|
1936
|
+
uid=s390 StaticText "Qwen 3.5 over thinking 😜"
|
|
1937
|
+
uid=f101e2472 link "hashtag ai" url="https://www.linkedin.com/search/results/all/?keywords=%23ai&origin=HASH_TAG_FROM_FEED"
|
|
1938
|
+
uid=f101e2473 generic value="hashtag"
|
|
1939
|
+
uid=f101e2474 generic value="#ai"
|
|
1940
|
+
uid=f101e2476 generic
|
|
1941
|
+
uid=f101e2478 button "Activate to view larger image, text, email"
|
|
1942
|
+
uid=f101e2479 generic value="Activate to view larger image,"
|
|
1943
|
+
uid=f101e2482 img "text, email"
|
|
1944
|
+
uid=f101e2483 generic value="Activate to view larger image,"
|
|
1945
|
+
uid=f101e2484 generic
|
|
1946
|
+
uid=f101e2488 list
|
|
1947
|
+
uid=f101e2489 listitem
|
|
1948
|
+
uid=f101e2490 button "Akbar Sultanov and 3 others"
|
|
1949
|
+
uid=f101e2491 img "like"
|
|
1950
|
+
uid=f101e2492 img "funny"
|
|
1951
|
+
uid=f101e2493 generic
|
|
1952
|
+
uid=f101e2494 generic value="4"
|
|
1953
|
+
uid=f101e2495 generic value="Akbar Sultanov and 3 others"
|
|
1954
|
+
uid=f101e2496 listitem
|
|
1955
|
+
uid=f101e2497 list
|
|
1956
|
+
uid=f101e2498 listitem
|
|
1957
|
+
uid=f101e2499 button "2 comments on Jerome Etienne’s post"
|
|
1958
|
+
uid=f101e2500 generic value="2 comments"
|
|
1959
|
+
uid=f101e2501 generic
|
|
1960
|
+
uid=f101e2502 generic
|
|
1961
|
+
uid=f101e2503 button "React Like"
|
|
1962
|
+
uid=f101e2505 generic
|
|
1963
|
+
uid=f101e2506 img
|
|
1964
|
+
uid=f101e2508 generic value="Like"
|
|
1965
|
+
uid=s391 button "Open reactions menu"
|
|
1966
|
+
uid=f101e2510 img
|
|
1967
|
+
uid=f101e2514 button "Comment"
|
|
1968
|
+
uid=f101e2515 img
|
|
1969
|
+
uid=f101e2517 generic value="Comment"
|
|
1970
|
+
uid=f101e2520 button "Repost"
|
|
1971
|
+
uid=f101e2521 img
|
|
1972
|
+
uid=f101e2523 generic value="Repost"
|
|
1973
|
+
uid=f101e2526 button "Send in a private message"
|
|
1974
|
+
uid=f101e2527 img
|
|
1975
|
+
uid=f101e2530 generic value="Send"
|
|
1976
|
+
uid=f101e2533 link "186 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7444638689680347136/"
|
|
1977
|
+
uid=f101e2534 generic
|
|
1978
|
+
uid=f101e2535 generic
|
|
1979
|
+
uid=f101e2536 img
|
|
1980
|
+
uid=f101e2539 strong value="186 impressions"
|
|
1981
|
+
uid=f101e2540 generic value="View analytics"
|
|
1982
|
+
uid=f101e2541 listitem
|
|
1983
|
+
uid=f101e2543 generic
|
|
1984
|
+
uid=f101e2544 generic
|
|
1985
|
+
uid=f101e2545 generic value="Promote this post to reach people who matter to you."
|
|
1986
|
+
uid=f101e2547 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3Ashare%3A7443329499192029185&origin=memberProfileAllActivity"
|
|
1987
|
+
uid=s392 StaticText "Boost"
|
|
1988
|
+
uid=f101e2551 article
|
|
1989
|
+
uid=f101e2553 generic
|
|
1990
|
+
uid=f101e2554 heading "Feed post number 18" level="2"
|
|
1991
|
+
uid=f101e2555 generic
|
|
1992
|
+
uid=f101e2556 generic
|
|
1993
|
+
uid=f101e2558 generic
|
|
1994
|
+
uid=f101e2559 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1995
|
+
uid=f101e2563 img "View Jerome Etienne’s graphic link"
|
|
1996
|
+
uid=f101e2564 generic
|
|
1997
|
+
uid=s393 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1998
|
+
uid=f101e2566 generic
|
|
1999
|
+
uid=f101e2568 generic
|
|
2000
|
+
uid=f101e2569 generic value="Jerome Etienne"
|
|
2001
|
+
uid=f101e2570 generic value="Jerome Etienne"
|
|
2002
|
+
uid=f101e2571 generic
|
|
2003
|
+
uid=f101e2572 generic
|
|
2004
|
+
uid=f101e2573 img
|
|
2005
|
+
uid=s394 StaticText "• You"
|
|
2006
|
+
uid=f101e2575 generic value="Verified • You"
|
|
2007
|
+
uid=f101e2576 generic
|
|
2008
|
+
uid=f101e2577 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
2009
|
+
uid=f101e2578 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
2010
|
+
uid=f101e2579 generic
|
|
2011
|
+
uid=f101e2580 generic
|
|
2012
|
+
uid=s395 StaticText "1mo •"
|
|
2013
|
+
uid=f101e2583 img
|
|
2014
|
+
uid=f101e2585 generic value="1 month ago • Visible to anyone on or off LinkedIn"
|
|
2015
|
+
uid=f101e2588 button "Open control menu for post by Jerome Etienne"
|
|
2016
|
+
uid=f101e2589 img
|
|
2017
|
+
uid=f101e2595 generic
|
|
2018
|
+
uid=s396 StaticText "ok caching openai in streaming mode is too strong for my brain :)"
|
|
2019
|
+
uid=f101e2596 link "hashtag ai" url="https://www.linkedin.com/search/results/all/?keywords=%23ai&origin=HASH_TAG_FROM_FEED"
|
|
2020
|
+
uid=f101e2597 generic value="hashtag"
|
|
2021
|
+
uid=f101e2598 generic value="#ai"
|
|
2022
|
+
uid=f101e2599 link "hashtag buildInPublic" url="https://www.linkedin.com/search/results/all/?keywords=%23buildinpublic&origin=HASH_TAG_FROM_FEED"
|
|
2023
|
+
uid=f101e2600 generic value="hashtag"
|
|
2024
|
+
uid=f101e2601 generic value="#buildInPublic"
|
|
2025
|
+
uid=f101e2603 generic
|
|
2026
|
+
uid=f101e2604 generic
|
|
2027
|
+
uid=f101e2605 button "React Like"
|
|
2028
|
+
uid=f101e2607 generic
|
|
2029
|
+
uid=f101e2608 img
|
|
2030
|
+
uid=f101e2610 generic value="Like"
|
|
2031
|
+
uid=s397 button "Open reactions menu"
|
|
2032
|
+
uid=f101e2612 img
|
|
2033
|
+
uid=f101e2616 button "Comment"
|
|
2034
|
+
uid=f101e2617 img
|
|
2035
|
+
uid=f101e2619 generic value="Comment"
|
|
2036
|
+
uid=f101e2622 button "Repost"
|
|
2037
|
+
uid=f101e2623 img
|
|
2038
|
+
uid=f101e2625 generic value="Repost"
|
|
2039
|
+
uid=f101e2628 button "Send in a private message"
|
|
2040
|
+
uid=f101e2629 img
|
|
2041
|
+
uid=f101e2632 generic value="Send"
|
|
2042
|
+
uid=f101e2635 link "92 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7443329499695390720/"
|
|
2043
|
+
uid=f101e2636 generic
|
|
2044
|
+
uid=f101e2637 generic
|
|
2045
|
+
uid=f101e2638 img
|
|
2046
|
+
uid=f101e2641 strong value="92 impressions"
|
|
2047
|
+
uid=f101e2642 generic value="View analytics"
|
|
2048
|
+
uid=f101e2643 listitem
|
|
2049
|
+
uid=f101e2645 generic
|
|
2050
|
+
uid=f101e2646 generic
|
|
2051
|
+
uid=f101e2647 generic value="Promote this post to reach people who matter to you."
|
|
2052
|
+
uid=f101e2649 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3Ashare%3A7439064104717152256&origin=memberProfileAllActivity"
|
|
2053
|
+
uid=s398 StaticText "Boost"
|
|
2054
|
+
uid=f101e2653 article
|
|
2055
|
+
uid=f101e2655 generic
|
|
2056
|
+
uid=f101e2656 heading "Feed post number 19" level="2"
|
|
2057
|
+
uid=f101e2657 generic
|
|
2058
|
+
uid=f101e2658 generic
|
|
2059
|
+
uid=f101e2660 generic
|
|
2060
|
+
uid=f101e2661 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
2061
|
+
uid=f101e2665 img "View Jerome Etienne’s graphic link"
|
|
2062
|
+
uid=f101e2666 generic
|
|
2063
|
+
uid=s399 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
2064
|
+
uid=f101e2668 generic
|
|
2065
|
+
uid=f101e2670 generic
|
|
2066
|
+
uid=f101e2671 generic value="Jerome Etienne"
|
|
2067
|
+
uid=f101e2672 generic value="Jerome Etienne"
|
|
2068
|
+
uid=f101e2673 generic
|
|
2069
|
+
uid=f101e2674 generic
|
|
2070
|
+
uid=f101e2675 img
|
|
2071
|
+
uid=s400 StaticText "• You"
|
|
2072
|
+
uid=f101e2677 generic value="Verified • You"
|
|
2073
|
+
uid=f101e2678 generic
|
|
2074
|
+
uid=f101e2679 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
2075
|
+
uid=f101e2680 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
2076
|
+
uid=f101e2681 generic
|
|
2077
|
+
uid=f101e2682 generic
|
|
2078
|
+
uid=s401 StaticText "1mo • Edited •"
|
|
2079
|
+
uid=f101e2685 img
|
|
2080
|
+
uid=f101e2687 generic value="1 month ago • Edited • Visible to anyone on or off LinkedIn"
|
|
2081
|
+
uid=f101e2690 button "Open control menu for post by Jerome Etienne"
|
|
2082
|
+
uid=f101e2691 img
|
|
2083
|
+
uid=f101e2694 generic
|
|
2084
|
+
uid=f101e2697 generic
|
|
2085
|
+
uid=s402 StaticText "Just spent the evening playing with the OpenAI Agents JS library and it’s honestly **a really nice developer experience**."
|
|
2086
|
+
uid=s403 StaticText "You can compose agents, add tools, orchestrate workflows, and see how everything flows together. It feels much closer to building *systems* than just calling an API."
|
|
2087
|
+
uid=s404 StaticText "A few things that stood out:"
|
|
2088
|
+
uid=s405 StaticText "• Clean abstractions for agents and tools"
|
|
2089
|
+
uid=s406 StaticText "• Easy orchestration between steps"
|
|
2090
|
+
uid=s407 StaticText "• Tracing makes it much easier to understand what the agent is actually doing"
|
|
2091
|
+
uid=s408 StaticText "Feels like we're moving from *prompt engineering* to **agent architecture**."
|
|
2092
|
+
uid=s409 StaticText "If you're building AI apps, this is definitely worth exploring 👇"
|
|
2093
|
+
uid=f101e2698 link "https://lnkd.in/d35S6HKb" url="https://lnkd.in/d35S6HKb"
|
|
2094
|
+
uid=s410 StaticText "Curious how others are using it in production."
|
|
2095
|
+
uid=f101e2699 link "hashtag AI" url="https://www.linkedin.com/search/results/all/?keywords=%23ai&origin=HASH_TAG_FROM_FEED"
|
|
2096
|
+
uid=f101e2700 generic value="hashtag"
|
|
2097
|
+
uid=f101e2701 generic value="#AI"
|
|
2098
|
+
uid=f101e2702 link "hashtag OpenAI" url="https://www.linkedin.com/search/results/all/?keywords=%23openai&origin=HASH_TAG_FROM_FEED"
|
|
2099
|
+
uid=f101e2703 generic value="hashtag"
|
|
2100
|
+
uid=f101e2704 generic value="#OpenAI"
|
|
2101
|
+
uid=f101e2705 link "hashtag Agents" url="https://www.linkedin.com/search/results/all/?keywords=%23agents&origin=HASH_TAG_FROM_FEED"
|
|
2102
|
+
uid=f101e2706 generic value="hashtag"
|
|
2103
|
+
uid=f101e2707 generic value="#Agents"
|
|
2104
|
+
uid=f101e2708 link "hashtag JavaScript" url="https://www.linkedin.com/search/results/all/?keywords=%23javascript&origin=HASH_TAG_FROM_FEED"
|
|
2105
|
+
uid=f101e2709 generic value="hashtag"
|
|
2106
|
+
uid=f101e2710 generic value="#JavaScript"
|
|
2107
|
+
uid=f101e2711 link "hashtag DevTools" url="https://www.linkedin.com/search/results/all/?keywords=%23devtools&origin=HASH_TAG_FROM_FEED"
|
|
2108
|
+
uid=f101e2712 generic value="hashtag"
|
|
2109
|
+
uid=f101e2713 generic value="#DevTools"
|
|
2110
|
+
uid=f101e2714 button "see more, visually reveals content which is already detected by screen readers"
|
|
2111
|
+
uid=f101e2715 generic value="…more"
|
|
2112
|
+
uid=f101e2716 generic
|
|
2113
|
+
uid=f101e2720 list
|
|
2114
|
+
uid=f101e2721 listitem
|
|
2115
|
+
uid=f101e2722 button "Daniel Taub and 5 others"
|
|
2116
|
+
uid=f101e2723 img "like"
|
|
2117
|
+
uid=f101e2724 img "love"
|
|
2118
|
+
uid=f101e2725 generic
|
|
2119
|
+
uid=f101e2726 generic value="6"
|
|
2120
|
+
uid=f101e2727 generic value="Daniel Taub and 5 others"
|
|
2121
|
+
uid=f101e2728 listitem
|
|
2122
|
+
uid=f101e2729 list
|
|
2123
|
+
uid=f101e2730 listitem
|
|
2124
|
+
uid=f101e2731 button "6 comments on Jerome Etienne’s post"
|
|
2125
|
+
uid=f101e2732 generic value="6 comments"
|
|
2126
|
+
uid=f101e2733 generic
|
|
2127
|
+
uid=f101e2734 generic
|
|
2128
|
+
uid=f101e2735 button "React Like"
|
|
2129
|
+
uid=f101e2737 generic
|
|
2130
|
+
uid=f101e2738 img
|
|
2131
|
+
uid=f101e2740 generic value="Like"
|
|
2132
|
+
uid=s411 button "Open reactions menu"
|
|
2133
|
+
uid=f101e2742 img
|
|
2134
|
+
uid=f101e2746 button "Comment"
|
|
2135
|
+
uid=f101e2747 img
|
|
2136
|
+
uid=f101e2749 generic value="Comment"
|
|
2137
|
+
uid=f101e2752 button "Repost"
|
|
2138
|
+
uid=f101e2753 img
|
|
2139
|
+
uid=f101e2755 generic value="Repost"
|
|
2140
|
+
uid=f101e2758 button "Send in a private message"
|
|
2141
|
+
uid=f101e2759 img
|
|
2142
|
+
uid=f101e2762 generic value="Send"
|
|
2143
|
+
uid=f101e2765 link "946 impressions View analytics" url="/analytics/post-summary/urn:li:activity:7439064105547649024/"
|
|
2144
|
+
uid=f101e2766 generic
|
|
2145
|
+
uid=f101e2767 generic
|
|
2146
|
+
uid=f101e2768 img
|
|
2147
|
+
uid=f101e2771 strong value="946 impressions"
|
|
2148
|
+
uid=f101e2772 generic value="View analytics"
|
|
2149
|
+
uid=f101e2773 listitem
|
|
2150
|
+
uid=f101e2776 generic
|
|
2151
|
+
uid=f101e2777 generic value="Promote this post to reach people who matter to you."
|
|
2152
|
+
uid=f101e2779 link "Go to boost post page" url="https://www.linkedin.com/ad-beta/boost/campaigns/new/details?content=urn%3Ali%3Ashare%3A7438876449480282112&origin=memberProfileAllActivity"
|
|
2153
|
+
uid=s412 StaticText "Boost"
|
|
2154
|
+
uid=f101e2783 button "Show more results"
|
|
2155
|
+
uid=f101e2784 generic value="Show more results"
|
|
2156
|
+
uid=f101e2785 complementary "Interests"
|
|
2157
|
+
uid=f101e2787 iframe
|
|
2158
|
+
uid=f118e3 main "Work With Us Container"
|
|
2159
|
+
uid=f118e4 generic
|
|
2160
|
+
uid=f118e6 img
|
|
2161
|
+
uid=f118e7 generic
|
|
2162
|
+
uid=f118e8 img "Jerome"
|
|
2163
|
+
uid=f118e9 link "SNCF Connect & Tech" url="https://www.linkedin.com/li/tscp/sct?destinationUrl=http%3A%2F%2Fwww.linkedin.com%2Fcompany%2F78387078%2Flife&trackingEvent=%5B%7B%22eventInfo%22%3A%7B%22appId%22%3A%22com.linkedin.ads.rendering.d_web%22%2C%22eventName%22%3A%22SponsoredRightRailContentActionEvent%22%2C%22topicName%22%3A%22SponsoredRightRailContentActionEvent%22%7D%2C%22eventBody%22%3A%7B%22sponsoredEventHeader%22%3A%7B%22encryptedTrackingData%22%3A%22CwEAAAGd8apcy7NOr9I5hTlu1NiXuHJs0-jNRx8VhYkVc1_-dMNUUq1FTItTKvdkOz2OfCrvbHM82qWN3fVW7nVxuF1YZ01i90FsO605bcs54NOGrjfdYa1G6TYquFzLahAaVM9suLpgMO_R4snGJiq_RwOTeyxvq637lJwgL7RLTmI50BQ6Gcb4bnhpifeAZ1bc4LTDC1eOiNsDGxBKAQOlf6OqoIzRXjvZ1I6mjvnZie0YV3wNKbjPLU2N8hmzGkGYmjEuUZcx93qbnZ7opGznuTWJSWNJB8uzT9-pD7Nd_PWfVRkUECISjH9dBEdA5rwjlquEfV8qY_1EucgwUvbTXwD_SHOG-nu9-khIbnOBCZBCqzmFJxhzR7vJTCPK7KMfgspZdqhRG_JUX1WU35Z24GGj-Pgkmsy7S2p5YGoY81vISEXkKTYbRwCa_YlBLB7Mii_49zlZ2ZfrS22fgy8APbp-Ntbgxeb0CQu_J7ilxoT9Ufa9ewyP7oeoO6WnhatYgTAPiRMNegzhjI8lFezNWl2O2QrCOc2FoqYU_908ccLGAetAfXhcDxlu1m0LE7qRr4oRjU9GlvFdQ20XlEVTJfV7mAO5o8xNKrudOcJyQHi5zVLRMxLP6v7Su3kgy-OyxUrdn8tS7-mIqc5n1GtiDf0AhGPi3cOnbfrt00kZINL__Bu_ltwAswDoF7AbtGXh755wPpMPm_hQB_jPz8-uVnkz_NuP0o-1bVTHQDXLSw8ZsBco1rkfoAGSKRq9MLP7A12gkOtlk2VsEFhAKjdnZoBBPRQQh3V5tUa6Bx27Jka3uF5XmjypfSGJzaRXUNHKQq1jE0IhSjaP4E15WfVtHLXHJzBF3oQg2Ig7F1P9WMG6-viukcUbb_eMeJkoRm4RyU89LvvwdCCPd0bapavmW110S6_Xu_YVSaYkHPI7e8pAPv8k9PnDBZKxqI82fEDbAZV7FfRr_owYXu1nm2U8pPZ7h_3d6VQar-5Y6wbNwtSRDjxg67sEp1Ore7d2En_z3QcUD5byt1B_WrMBPtenBDO2drHGVm39pzSdeAz_LhqO5oRjqONbypIN5x8b2Gu9OO0E1lqc4X0ZotxRzhL9SODs1L4bnpqmqprcdn1NMwYq_S2abbKghiGRkmYjvmX3BmryJCN-uNwTNDlNJPoiJhDcFuxGbcH7L-5J5q90_lukPoDM%22%7D%2C%22header%22%3A%7B%22pageInstance%22%3A%7B%22pageUrn%22%3A%22urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_recent_activity_content_view%22%2C%22trackingId%22%3A%223b591d8b-90da-4aa1-8ab8-9057acc61b15%22%7D%2C%22time%22%3A1777875967136%2C%22version%22%3A%220.0.0%22%7D%2C%22requestHeader%22%3A%7B%22pageKey%22%3A%22d_flagship3_profile_view_base_recent_activity_content_view%22%2C%22interfaceLocale%22%3A%22en-US%22%7D%7D%7D%5D&csrfToken=ajax%3A5544974620789791545"
|
|
2164
|
+
uid=f118e10 img "SNCF Connect & Tech"
|
|
2165
|
+
uid=f118e11 generic
|
|
2166
|
+
uid=f118e12 generic
|
|
2167
|
+
uid=f118e13 paragraph value="Jerome, explore relevant opportunities with SNCF Connect & Tech"
|
|
2168
|
+
uid=f118e14 paragraph value="Get the latest jobs and industry news"
|
|
2169
|
+
uid=f118e15 link "Follow" url="https://www.linkedin.com/li/tscp/sct?destinationUrl=http%3A%2F%2Fwww.linkedin.com%2Fcompany%2F78387078%2Flife%3FisFollowingPage%3Dtrue&trackingEvent=%5B%7B%22eventInfo%22%3A%7B%22appId%22%3A%22com.linkedin.ads.rendering.d_web%22%2C%22eventName%22%3A%22SponsoredRightRailContentActionEvent%22%2C%22topicName%22%3A%22SponsoredRightRailContentActionEvent%22%7D%2C%22eventBody%22%3A%7B%22sponsoredEventHeader%22%3A%7B%22encryptedTrackingData%22%3A%22CwEAAAGd8apcy-_xuZAVTvvW4WXh16Wdv-VjDyApD7zfczPOSvT61x3gJGqICEYp5rdiuI0eWHW4bUnC9lScClbfrqeFugn5Ez-4YrLvS-IKnp6I8DCfPQVvfqhQI8R-qPpJmRAV5AQBDh2sVofarir7hX05o9Nt2gJS1dTMxmTwn6XkXjdjPPA0zYN7oruYYecQ8fxsLHTOXkBTkJBf938hmoGhzmJar0zL-ow4BqASz1y9Pv005pzKrpm1ikNWG0m016X4JZVx4BKRMjgagSt53fzhbVHdmYPlFJ9g36t3WcGIj7icuxLHxasQp2u_G0hLCXZD5vG--YJXwxm6kvmp1S9UYHJph8OvNnza8Q4edhqWyo3rs0_vxvEbrDL4U9RyYugt1FXzJvsSrE8XbFvLQuEcFkSenGhRpko2Wud-E46VexcHd0hjcE1aOlohJdCtUJN2Y2H0l9GIaAQ7kgb_kffucVkRC4LpEpmQZ-Yq_qbnKRblj2Bkz0-p1PRcZT97TXHrhmXYVwJnehK5qc6kw6GYhugbQU7w_RWFS7LDJZmyDn_B9Y0Vq-LvbQ7FNJWGS1LfO8uD2x3Y-tptS6z4be87LP-sR7RfZKGw45wKrJQvCToNeeAA5PlLZhHtfnJALOTNe7-liAaNZtGCQl02xsTwAjzA9Dl4zsVA1x5NB2POhuA55fzqJItPAXCGa4BzV14WR4NUxxFzEQk8TCJu0aOxx_9qVZ3m02-xlDgL6WuZAGO5mbyAKniD97T7tzcyGrivKDnMiCiMv-TqGzPKgjkf6ySB_lCU48A1c264zfLBjGThtEwWaRYy26YWKc4Z5OFm1jC7O_VAjCzlcpfeo5KDWWPB-StMLLHJex9Yvwk4W_TTN-owpUMY2He2fYZhHNrTcEnd1kuB5vZ5kAoHUxE5PdywXyDdJdzLuFZ-kk63DvvsnizMPR-9o077f9IId-TQ58q1CxANTqgTSQp8NCiRODEWSv7vxBUvMwEHKoh_y0NygLcTGNSRlIetotLYjEz1_f0dQ4zHST62SM2qzKbKpSAuJ3LfD7SndcSqwZ4hu1jyuhomHXjmqdvw3sU2QLpYRMf0EaI6eMCRdPJgcGnx34wQ-cUV8ghYXb2-ZKSFVW3vhj107sAeRXrLg0IBHfGt16KWs5N5oZ2cQG8UCQ4bJ-xnAGjJKs13i70xJ5P-LsnTv8J3tPk_ovIyC5UZpiUWtO2AbOBgljhBj7hLPYTkg93g%22%7D%2C%22header%22%3A%7B%22pageInstance%22%3A%7B%22pageUrn%22%3A%22urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_recent_activity_content_view%22%2C%22trackingId%22%3A%22919c1651-9a62-443b-b3a6-83b932e14a20%22%7D%2C%22time%22%3A1777875967136%2C%22version%22%3A%220.0.0%22%7D%2C%22requestHeader%22%3A%7B%22pageKey%22%3A%22d_flagship3_profile_view_base_recent_activity_content_view%22%2C%22interfaceLocale%22%3A%22en-US%22%7D%7D%7D%5D&csrfToken=ajax%3A5544974620789791545"
|
|
2170
|
+
uid=f118e16 generic
|
|
2171
|
+
uid=f118e17 paragraph value="Promoted"
|
|
2172
|
+
uid=f118e18 button "Ad Options"
|
|
2173
|
+
uid=f118e19 img
|
|
2174
|
+
uid=f118e23 generic value="Ad Options"
|
|
2175
|
+
uid=f101e2788 generic
|
|
2176
|
+
uid=f101e2793 heading "People you may know" level="2"
|
|
2177
|
+
uid=f101e2794 generic value="People you may know"
|
|
2178
|
+
uid=f101e2795 generic value="People you may know"
|
|
2179
|
+
uid=f101e2796 generic
|
|
2180
|
+
uid=f101e2797 list
|
|
2181
|
+
uid=f101e2798 listitem
|
|
2182
|
+
uid=f101e2799 generic
|
|
2183
|
+
uid=f101e2801 link "Steven Henty" url="https://www.linkedin.com/in/stevenhenty"
|
|
2184
|
+
uid=f101e2804 img "Steven Henty"
|
|
2185
|
+
uid=f101e2805 generic
|
|
2186
|
+
uid=s413 unknown url="https://www.linkedin.com/in/stevenhenty?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAAxERABdRTPuEX10UR6CbC4WzVLsRDvB14"
|
|
2187
|
+
uid=f101e2808 generic
|
|
2188
|
+
uid=f101e2811 generic
|
|
2189
|
+
uid=f101e2812 generic value="Steven Henty"
|
|
2190
|
+
uid=f101e2813 generic value="Steven Henty"
|
|
2191
|
+
uid=f101e2816 img
|
|
2192
|
+
uid=f101e2817 img
|
|
2193
|
+
uid=f101e2822 generic
|
|
2194
|
+
uid=f101e2823 generic value="Product and Engineering Leader | Co-Founder, Willow | ex: Director, Gravity | 2x Exits"
|
|
2195
|
+
uid=f101e2824 generic value="Product and Engineering Leader | Co-Founder, Willow | ex: Director, Gravity | 2x Exits"
|
|
2196
|
+
uid=f101e2826 list
|
|
2197
|
+
uid=f101e2827 listitem
|
|
2198
|
+
uid=f101e2829 button "Invite Steven Henty to connect"
|
|
2199
|
+
uid=f101e2830 img
|
|
2200
|
+
uid=f101e2832 generic value="Connect"
|
|
2201
|
+
uid=f101e2833 listitem
|
|
2202
|
+
uid=f101e2834 generic
|
|
2203
|
+
uid=f101e2836 link "Alexander Bushnev" url="https://www.linkedin.com/in/abushnev"
|
|
2204
|
+
uid=f101e2839 img "Alexander Bushnev"
|
|
2205
|
+
uid=f101e2840 generic
|
|
2206
|
+
uid=f101e2842 link "Alexander Bushnev Software Engineering Manager - ZettaScale Technology" url="https://www.linkedin.com/in/abushnev?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAABc2IU4Bk5B4mv98d8jGbLggqwwQOD00H4w"
|
|
2207
|
+
uid=f101e2843 generic
|
|
2208
|
+
uid=f101e2846 generic
|
|
2209
|
+
uid=f101e2847 generic value="Alexander Bushnev"
|
|
2210
|
+
uid=f101e2848 generic value="Alexander Bushnev"
|
|
2211
|
+
uid=f101e2851 img
|
|
2212
|
+
uid=f101e2856 generic
|
|
2213
|
+
uid=f101e2857 generic value="Software Engineering Manager - ZettaScale Technology"
|
|
2214
|
+
uid=f101e2858 generic value="Software Engineering Manager - ZettaScale Technology"
|
|
2215
|
+
uid=f101e2860 list
|
|
2216
|
+
uid=f101e2861 listitem
|
|
2217
|
+
uid=f101e2863 button "Invite Alexander Bushnev to connect"
|
|
2218
|
+
uid=f101e2864 img
|
|
2219
|
+
uid=f101e2866 generic value="Connect"
|
|
2220
|
+
uid=f101e2867 listitem
|
|
2221
|
+
uid=f101e2868 generic
|
|
2222
|
+
uid=f101e2870 link "Jean-Charles Verdié" url="https://www.linkedin.com/in/jcverdie"
|
|
2223
|
+
uid=f101e2873 img "Jean-Charles Verdié"
|
|
2224
|
+
uid=f101e2874 generic
|
|
2225
|
+
uid=f101e2876 link "Jean-Charles Verdié Bringing the best of Ubuntu and other Canonical products to Embedded Devices & IOT" url="https://www.linkedin.com/in/jcverdie?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAADbLiUB5vm5PmbHfOODTKvzMuB18-xnywc"
|
|
2226
|
+
uid=f101e2877 generic
|
|
2227
|
+
uid=f101e2880 generic
|
|
2228
|
+
uid=f101e2881 generic value="Jean-Charles Verdié"
|
|
2229
|
+
uid=f101e2882 generic value="Jean-Charles Verdié"
|
|
2230
|
+
uid=f101e2885 img
|
|
2231
|
+
uid=f101e2890 generic
|
|
2232
|
+
uid=f101e2891 generic value="Bringing the best of Ubuntu and other Canonical products to Embedded Devices & IOT"
|
|
2233
|
+
uid=f101e2892 generic value="Bringing the best of Ubuntu and other Canonical products to Embedded Devices & IOT"
|
|
2234
|
+
uid=f101e2894 list
|
|
2235
|
+
uid=f101e2895 listitem
|
|
2236
|
+
uid=f101e2897 button "Invite Jean-Charles Verdié to connect"
|
|
2237
|
+
uid=f101e2898 img
|
|
2238
|
+
uid=f101e2900 generic value="Connect"
|
|
2239
|
+
uid=f101e2901 listitem
|
|
2240
|
+
uid=f101e2902 generic
|
|
2241
|
+
uid=f101e2904 link "Josselin Petit" url="https://www.linkedin.com/in/josselin-petit-0994802b"
|
|
2242
|
+
uid=f101e2907 img "Josselin Petit"
|
|
2243
|
+
uid=f101e2908 generic
|
|
2244
|
+
uid=f101e2910 link "Josselin Petit Optics, Photonics & Sensor Simulation for all domains @ EDRMedeso | Former Ansys" url="https://www.linkedin.com/in/josselin-petit-0994802b?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAZMaHUBlAesGK_r3hXwIVXTpJroCbIpiak"
|
|
2245
|
+
uid=f101e2911 generic
|
|
2246
|
+
uid=f101e2914 generic
|
|
2247
|
+
uid=f101e2915 generic value="Josselin Petit"
|
|
2248
|
+
uid=f101e2916 generic value="Josselin Petit"
|
|
2249
|
+
uid=f101e2919 img
|
|
2250
|
+
uid=f101e2924 generic
|
|
2251
|
+
uid=f101e2925 generic value="Optics, Photonics & Sensor Simulation for all domains @ EDRMedeso | Former Ansys"
|
|
2252
|
+
uid=f101e2926 generic value="Optics, Photonics & Sensor Simulation for all domains @ EDRMedeso | Former Ansys"
|
|
2253
|
+
uid=f101e2928 list
|
|
2254
|
+
uid=f101e2929 listitem
|
|
2255
|
+
uid=f101e2931 button "Invite Josselin Petit to connect"
|
|
2256
|
+
uid=f101e2932 img
|
|
2257
|
+
uid=f101e2934 generic value="Connect"
|
|
2258
|
+
uid=f101e2935 listitem
|
|
2259
|
+
uid=f101e2936 generic
|
|
2260
|
+
uid=f101e2938 link "Slava Yanson" url="https://www.linkedin.com/in/slavayanson"
|
|
2261
|
+
uid=f101e2941 img "Slava Yanson"
|
|
2262
|
+
uid=f101e2942 generic
|
|
2263
|
+
uid=f101e2944 link "Slava Yanson Co-Founder & CEO, Stellenium | AI data centers with behind-the-meter power | 20+ yrs engineering & infrastructure" url="https://www.linkedin.com/in/slavayanson?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAHKFKIBXLTDlMoEqxX9QaWseA9G2tKWc2c"
|
|
2264
|
+
uid=f101e2945 generic
|
|
2265
|
+
uid=f101e2948 generic
|
|
2266
|
+
uid=f101e2949 generic value="Slava Yanson"
|
|
2267
|
+
uid=f101e2950 generic value="Slava Yanson"
|
|
2268
|
+
uid=f101e2953 img
|
|
2269
|
+
uid=f101e2958 generic
|
|
2270
|
+
uid=f101e2959 generic value="Co-Founder & CEO, Stellenium | AI data centers with behind-the-meter power | 20+ yrs engineering & infrastructure"
|
|
2271
|
+
uid=f101e2960 generic value="Co-Founder & CEO, Stellenium | AI data centers with behind-the-meter power | 20+ yrs engineering & infrastructure"
|
|
2272
|
+
uid=f101e2962 list
|
|
2273
|
+
uid=f101e2963 listitem
|
|
2274
|
+
uid=f101e2965 button "Invite Slava Yanson to connect"
|
|
2275
|
+
uid=f101e2966 img
|
|
2276
|
+
uid=f101e2968 generic value="Connect"
|
|
2277
|
+
uid=f101e2971 button "Show more"
|
|
2278
|
+
uid=f101e2972 img
|
|
2279
|
+
uid=f101e2974 generic value="Show more"
|
|
2280
|
+
uid=f101e2977 generic
|
|
2281
|
+
uid=f101e2979 iframe
|
|
2282
|
+
uid=f119e3 main "Work With Us Container"
|
|
2283
|
+
uid=f119e4 generic
|
|
2284
|
+
uid=f119e6 img
|
|
2285
|
+
uid=f119e7 generic
|
|
2286
|
+
uid=f119e8 img "Jerome"
|
|
2287
|
+
uid=f119e9 link "Ditto (ex-Beavr)" url="https://www.linkedin.com/li/tscp/sct?destinationUrl=http%3A%2F%2Fwww.linkedin.com%2Fcompany%2F77140802%2Flife&trackingEvent=%5B%7B%22eventInfo%22%3A%7B%22appId%22%3A%22com.linkedin.ads.rendering.d_web%22%2C%22eventName%22%3A%22SponsoredRightRailContentActionEvent%22%2C%22topicName%22%3A%22SponsoredRightRailContentActionEvent%22%7D%2C%22eventBody%22%3A%7B%22sponsoredEventHeader%22%3A%7B%22encryptedTrackingData%22%3A%22CwEAAAGd8apc4MotDfuNksxMkHHCAQMVFA1WHgHVBm2vwrZ5l8Y6HSh_aEWdRm4qy1B3VJNztxnbUvHaQrVwYC3UQDCR_Pa4rQRcOHYx1lSy-MQNw8TzX5Sw7EVZimmpBIU2266tkmQyd7KNbKkACo2hZrZEwICz2AEcOiKuzGOTz2Dfz9ltpbUF7H-YmIz07756nQLV7j_hiksh5yCZKst-ssslHrIPGMOyW0cseSn2_b9rNe6iymw-ZKfwnBSEC-3QBKtRIA6rkBwc8cWIrTIYWHieuQsaqUQbDzlY-HXFqy3jX2bgndswc4E8WF7vIkUjerInQ5JpmlpLMKT_PtSLV2Zzsw5E9AEWYIhTAfl_cP8Rp9PrgmTKO69S1uT6YPeAEw1xmtaQ0s9U8j1U5iOeHSrtWf6w4SU90WDqS7Q2r2R2vh_F27akjJJQlE0lbYZ5L5JGe3k9o7eNM0pEVHu42QwHp2fqWdP6Aqge-0O3RfW4rZ-v18Vd6jR9LNgPfeNbd37BLpVUShv4FNep-V1CswfAk6XnzNnNcpTNZuXGa91Per7dAOzJXKdtqUdJnpcWMJ_kCRSIS_chLyhBa_tHgTf-11zxZ-Zs2mCt1ir_PVH3aYNZw61GUZSPCqDAFo_wYcBPkk2S6ugqo03LBsciMQ3B1Zk3W_e0N7dPVq6AsA1VObN1yJ6Lc_vQynBdu7wigDMh3FvqKXxPB1TsWgWS3E64u6SIBuB7XSOJSsIiLht3-RsgvqSorajywYOky17I8EzBE5XyH5jfwlADP8disbZElfFWHONN--bqlA1d2oMRKOhPOicFEgJLvegc9cShcwdR0TK88xw6xmIRbX72m6gOD9J5JLAGxLy1RQjYYnpQn2p5RL6tZxK7hdGrL54ncFO30VNbhh8g04kkNzFZ2rR0-ehJS6bOGiZio-obQkR3Bh4_nzqBZvELpRd5NvIT4Q8tW5dbA72on9dW5S8xhrkCRXsW0wf3Nw_xX9pyUWGsQ17Eqn5r6lbBrVyQn7vSiPeZCQOlDhbfcQwA00GN916TAJoVBGg5QVKJrCYDBuKGZPKEft6E2V-NrXM7xmH4tfDKuml73p152ayt397Rrbrr2tQDoo31LmneJ06aJsnZYqrfTOlmbnmL80_i4ZgBmcg7rKMTNxoH6LZPCHUVbdSa9M2sPmJRK7PibEYnCsRNiGM%22%7D%2C%22header%22%3A%7B%22pageInstance%22%3A%7B%22pageUrn%22%3A%22urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_recent_activity_content_view%22%2C%22trackingId%22%3A%22891e6604-365f-4fbb-babf-ed5da26e9870%22%7D%2C%22time%22%3A1777875967173%2C%22version%22%3A%220.0.0%22%7D%2C%22requestHeader%22%3A%7B%22pageKey%22%3A%22d_flagship3_profile_view_base_recent_activity_content_view%22%2C%22interfaceLocale%22%3A%22en-US%22%7D%7D%7D%5D&csrfToken=ajax%3A5544974620789791545"
|
|
2288
|
+
uid=f119e10 img "Ditto (ex-Beavr)"
|
|
2289
|
+
uid=f119e11 generic
|
|
2290
|
+
uid=f119e12 generic
|
|
2291
|
+
uid=f119e13 paragraph value="Jerome, explore relevant opportunities with Ditto (ex-Beavr)"
|
|
2292
|
+
uid=f119e14 paragraph value="Get the latest jobs and industry news"
|
|
2293
|
+
uid=f119e15 link "Follow" url="https://www.linkedin.com/li/tscp/sct?destinationUrl=http%3A%2F%2Fwww.linkedin.com%2Fcompany%2F77140802%2Flife%3FisFollowingPage%3Dtrue&trackingEvent=%5B%7B%22eventInfo%22%3A%7B%22appId%22%3A%22com.linkedin.ads.rendering.d_web%22%2C%22eventName%22%3A%22SponsoredRightRailContentActionEvent%22%2C%22topicName%22%3A%22SponsoredRightRailContentActionEvent%22%7D%2C%22eventBody%22%3A%7B%22sponsoredEventHeader%22%3A%7B%22encryptedTrackingData%22%3A%22CwEAAAGd8apc4D0D4dZh8qa9tFJk4xJ8RMI8DqKTmxodTmmkCJ5Zw6Q77JmMpYpxdRJDhPINNZCeMWIPDVEL3NhUuf9q5HLaUiYJ4hY60A9ashM6-vhMHERnbbb3M-t_9KY3ukSLFEXlIFwY-o7yZOsbJ1ihzgQ56MHbVXHFLUzOCDGyc0FXoLi2491RmLQ6s9AyzYlsOZijhNQCWnsd55UVDE8LaroCmP8Kk3hwP-Ge-9RRW2OUep2IytQM6Jdb624RpTgbYb7UA6WgF5UDv31yqUxQy0IDoCUdTTdl1CqL4b5dSyEEqcocWwp9m3r15OAhZxgBCWJP18ok5e4Nh1pITZUKVeNUMkoVslUGx_KQpGbAY60LNWB8m_juJMAiC6MtRf2Qd-PopqpZdzD0HZ-qz6m5ypyMFJBe8DvjYylQs79Hc3gRaEGYZCtaRHI7ol0oN9ahsWiFbpneiot_dN2u6hiaD05obs_PqTq9btSdIwVu2OJgrkyEZz5Y8wRvZsdKL_-lX-VqmfFSu35drMfWp7VzRaqeNY4KCbTUsHb7GmJuieyE3BPpiPpzfA9aojACtPpoGnCJmwGjMFbAMGHEDtTs-YF_uKbVg8GHbcsCgqlgj67szOGntYrvZ7GfQ1mm_3NgmflpUYKRHSmU_94LaaIaA393_05VxCjwfx69j4Km9J5tjXBrVEAAEWzwT1LpeTHKNfsYhHQEwVxnBIs3mXgAIU-ywgv5qQtdsUbby6dfOZf3yPjYaMi8WckFrCeQKlAkCNHHzVz7fmVdAiwu6u9b4zHojfoPK87S2r5LfideK6rmcpV15OFEiLQNgo_Y8iK6dNOZ9_2n1Bse8YPFebCc7pyabjCLPjikEBnm3RPkf0kFw-d50nG0YWgaY1cbtXh8d-CTg-gGIUvLnhSC67TdeeSw4T9SzcBAnFFY3qgLJ3gCJghJshXTamUpVNrIjheCnFKchPDlKKoF65CJUo5ojhNlpqDQhBC-KLfLCELXWTEdV5LAkkBhi2qyzp835WrXsaucl-LQ9sm-rw2siRPUif5DyFM3TA8Y99cMw74D2k6yU61PqUICanisib0JsMX205i4hTECQonGRpThrIgGtefZjnTyORFUFGb0BrP_rRbLukFiD7w4QnlszZPp3AZ6RRF6PYlk5IamZTZ3c_aNorii8Xoi3GSCO8WOMx0wnp2VG9LnPu8uovpB2Fl8v4EwS7nLGjeQz2je5KFotR2HpAw%22%7D%2C%22header%22%3A%7B%22pageInstance%22%3A%7B%22pageUrn%22%3A%22urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_recent_activity_content_view%22%2C%22trackingId%22%3A%22eab5e763-5b26-4701-810e-b45f59afa864%22%7D%2C%22time%22%3A1777875967173%2C%22version%22%3A%220.0.0%22%7D%2C%22requestHeader%22%3A%7B%22pageKey%22%3A%22d_flagship3_profile_view_base_recent_activity_content_view%22%2C%22interfaceLocale%22%3A%22en-US%22%7D%7D%7D%5D&csrfToken=ajax%3A5544974620789791545"
|
|
2294
|
+
uid=f119e16 generic
|
|
2295
|
+
uid=f119e17 paragraph value="Promoted"
|
|
2296
|
+
uid=f119e18 button "Ad Options"
|
|
2297
|
+
uid=f119e19 img
|
|
2298
|
+
uid=f119e23 generic value="Ad Options"
|
|
2299
|
+
uid=f101e2980 generic "LinkedIn Footer Content"
|
|
2300
|
+
uid=f101e2981 generic
|
|
2301
|
+
uid=f101e2982 paragraph value="Accessibilité: partiellement conforme"
|
|
2302
|
+
uid=f101e2983 list
|
|
2303
|
+
uid=f101e2984 listitem
|
|
2304
|
+
uid=f101e2985 link "About" url="https://about.linkedin.com/"
|
|
2305
|
+
uid=f101e2986 generic value="About"
|
|
2306
|
+
uid=f101e2987 listitem
|
|
2307
|
+
uid=f101e2988 link "Accessibility" url="https://www.linkedin.com/accessibility"
|
|
2308
|
+
uid=f101e2989 generic value="Accessibility"
|
|
2309
|
+
uid=f101e2990 listitem
|
|
2310
|
+
uid=f101e2991 link "Help Center" url="https://www.linkedin.com/help/linkedin?trk=footer_d_flagship3_profile_view_base_recent_activity_content_view"
|
|
2311
|
+
uid=f101e2992 generic value="Help Center"
|
|
2312
|
+
uid=f101e2993 listitem
|
|
2313
|
+
uid=f101e2995 button "Privacy & Terms"
|
|
2314
|
+
uid=f101e2997 generic
|
|
2315
|
+
uid=s414 StaticText "Privacy & Terms"
|
|
2316
|
+
uid=f101e2998 img
|
|
2317
|
+
uid=f101e3000 listitem
|
|
2318
|
+
uid=f101e3001 link "Ad Choices" url="https://www.linkedin.com/help/linkedin/answer/62931"
|
|
2319
|
+
uid=f101e3002 generic value="Ad Choices"
|
|
2320
|
+
uid=f101e3003 listitem
|
|
2321
|
+
uid=f101e3004 link "Advertising" url="https://www.linkedin.com/ad/start?trk=n_nav_ads_rr"
|
|
2322
|
+
uid=f101e3005 generic value="Advertising"
|
|
2323
|
+
uid=f101e3006 listitem
|
|
2324
|
+
uid=f101e3008 button "Business Services"
|
|
2325
|
+
uid=f101e3010 generic
|
|
2326
|
+
uid=s415 StaticText "Business Services"
|
|
2327
|
+
uid=f101e3011 img
|
|
2328
|
+
uid=f101e3013 listitem
|
|
2329
|
+
uid=f101e3016 button "Get the LinkedIn app"
|
|
2330
|
+
uid=f101e3017 listitem
|
|
2331
|
+
uid=f101e3018 button "More options" value="More"
|
|
2332
|
+
uid=f101e3019 generic
|
|
2333
|
+
uid=f101e3020 img "LinkedIn"
|
|
2334
|
+
uid=f101e3021 img
|
|
2335
|
+
uid=s416 StaticText "LinkedIn Corporation © 2026"
|
|
2336
|
+
uid=s417 generic
|
|
2337
|
+
uid=s418 generic
|
|
2338
|
+
uid=s419 complementary
|
|
2339
|
+
uid=e2620 generic
|
|
2340
|
+
uid=e2621 generic
|
|
2341
|
+
uid=e2623 generic
|
|
2342
|
+
uid=e2624 generic
|
|
2343
|
+
uid=e2625 img "Jerome Etienne"
|
|
2344
|
+
uid=e2757 generic value="Status is online"
|
|
2345
|
+
uid=e2626 button "You are on the messaging overlay. Press enter to open the list of conversations."
|
|
2346
|
+
uid=e2627 generic
|
|
2347
|
+
uid=e2628 generic value="Messaging"
|
|
2348
|
+
uid=e2629 generic value="You are on the messaging overlay. Press enter to open the list of conversations."
|
|
2349
|
+
uid=e2630 generic
|
|
2350
|
+
uid=e2632 button "Open messenger dropdown menu"
|
|
2351
|
+
uid=e2633 img "Open messenger dropdown menu"
|
|
2352
|
+
uid=e2636 button "Compose message"
|
|
2353
|
+
uid=e2637 img
|
|
2354
|
+
uid=e2639 generic value="Compose message"
|
|
2355
|
+
uid=e2640 button "You are on the messaging overlay. Press enter to open the list of conversations."
|
|
2356
|
+
uid=e2641 img
|
|
2357
|
+
uid=e2643 generic value="You are on the messaging overlay. Press enter to open the list of conversations."
|
|
2358
|
+
uid=e2758 generic
|
|
2359
|
+
uid=e2760 heading "Page inboxes" level="3"
|
|
2360
|
+
uid=e2761 generic
|
|
2361
|
+
uid=e2762 generic value="Click to see affiliated inboxes"
|
|
2362
|
+
uid=e2763 button "Page inboxes"
|
|
2363
|
+
uid=e2764 img
|
|
2364
|
+
uid=s420 complementary "AI-powered assistant to get help with your career, jobs etc"
|