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,2740 @@
|
|
|
1
|
+
uid=e1 generic active
|
|
2
|
+
uid=s4 generic
|
|
3
|
+
uid=s5 region "Toast message"
|
|
4
|
+
uid=e3 heading "0 notifications total" level="2"
|
|
5
|
+
uid=s6 alert
|
|
6
|
+
uid=e4 region
|
|
7
|
+
uid=e5 generic
|
|
8
|
+
uid=e7 generic
|
|
9
|
+
uid=e8 button "Skip to search"
|
|
10
|
+
uid=e9 generic value="Skip to search"
|
|
11
|
+
uid=e10 button "Skip to main content"
|
|
12
|
+
uid=e11 generic value="Skip to main content"
|
|
13
|
+
uid=e12 button "Keyboard shortcuts"
|
|
14
|
+
uid=e13 generic value="Keyboard shortcuts"
|
|
15
|
+
uid=e14 button "Close jump menu"
|
|
16
|
+
uid=e15 img
|
|
17
|
+
uid=e17 generic value="Close jump menu"
|
|
18
|
+
uid=e18 banner "Global Navigation"
|
|
19
|
+
uid=e19 generic
|
|
20
|
+
uid=e20 link "LinkedIn" url="https://www.linkedin.com/feed/?nis=true"
|
|
21
|
+
uid=e23 img "LinkedIn"
|
|
22
|
+
uid=e24 img
|
|
23
|
+
uid=e28 generic
|
|
24
|
+
uid=e29 combobox "Search"
|
|
25
|
+
uid=s7 generic
|
|
26
|
+
uid=s8 img
|
|
27
|
+
uid=e30 navigation "Primary Navigation"
|
|
28
|
+
uid=e31 list
|
|
29
|
+
uid=e32 listitem
|
|
30
|
+
uid=e33 link "new feed updates notifications Home" url="https://www.linkedin.com/feed/?nis=true&"
|
|
31
|
+
uid=e34 generic
|
|
32
|
+
uid=e37 generic value="new feed updates notifications"
|
|
33
|
+
uid=e41 img
|
|
34
|
+
uid=e43 generic "Home"
|
|
35
|
+
uid=e44 listitem
|
|
36
|
+
uid=e45 link "My Network" url="https://www.linkedin.com/mynetwork/?"
|
|
37
|
+
uid=e49 img
|
|
38
|
+
uid=e51 generic "My Network"
|
|
39
|
+
uid=e52 listitem
|
|
40
|
+
uid=e53 link "Jobs" url="https://www.linkedin.com/jobs/?"
|
|
41
|
+
uid=e57 img
|
|
42
|
+
uid=e59 generic "Jobs"
|
|
43
|
+
uid=e60 listitem
|
|
44
|
+
uid=e61 link "Messaging" url="https://www.linkedin.com/messaging/?"
|
|
45
|
+
uid=e65 img
|
|
46
|
+
uid=e67 generic "Messaging"
|
|
47
|
+
uid=e68 listitem
|
|
48
|
+
uid=e69 link "3 new notifications Notifications" url="https://www.linkedin.com/notifications/?"
|
|
49
|
+
uid=e70 generic
|
|
50
|
+
uid=e71 generic
|
|
51
|
+
uid=e72 generic value="3"
|
|
52
|
+
uid=e73 generic value="3 new notifications"
|
|
53
|
+
uid=e77 img
|
|
54
|
+
uid=e79 generic "Notifications"
|
|
55
|
+
uid=e80 listitem
|
|
56
|
+
uid=e82 button "Jerome Etienne Me"
|
|
57
|
+
uid=e83 img "Jerome Etienne"
|
|
58
|
+
uid=e84 generic
|
|
59
|
+
uid=s9 StaticText "Me"
|
|
60
|
+
uid=e85 img
|
|
61
|
+
uid=e87 listitem
|
|
62
|
+
uid=e89 button "For Business"
|
|
63
|
+
uid=e93 img
|
|
64
|
+
uid=e95 generic "For Business"
|
|
65
|
+
uid=s10 StaticText "For Business"
|
|
66
|
+
uid=e96 img
|
|
67
|
+
uid=e98 listitem
|
|
68
|
+
uid=e100 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=BeeKV9ixSbySo9iDL4w2DQ%3D%3D&companyUrn=urn%3Ali%3Afsd_company%3A106063595&isSS=false&upsellSlotId=NAV_SPOTLIGHT&destRedirectURL=https%3A%2F%2Fwww.linkedin.com%2Fin%2Fjontwigge%2Frecent-activity%2Fall%2F"
|
|
69
|
+
uid=e102 generic value="Claim your 1 month free Premium Page"
|
|
70
|
+
uid=e108 generic
|
|
71
|
+
uid=e109 complementary
|
|
72
|
+
uid=e112 generic
|
|
73
|
+
uid=e117 img "PREMIUM"
|
|
74
|
+
uid=e118 img
|
|
75
|
+
uid=e121 link "Jon Twigge" url="/in/jontwigge/"
|
|
76
|
+
uid=e122 img "Jon Twigge"
|
|
77
|
+
uid=e123 generic
|
|
78
|
+
uid=e124 link "Jon Twigge Jon Twigge is a Premium member" url="/in/jontwigge/"
|
|
79
|
+
uid=e125 heading "Jon Twigge Jon Twigge is a Premium member" level="3"
|
|
80
|
+
uid=s11 StaticText "Jon Twigge"
|
|
81
|
+
uid=e127 img "Jon Twigge is a Premium member"
|
|
82
|
+
uid=e128 img
|
|
83
|
+
uid=e130 heading "Founder, Potentialisation | Helping people find their way in the new world" level="4"
|
|
84
|
+
uid=e132 generic
|
|
85
|
+
uid=e133 generic
|
|
86
|
+
uid=e134 generic value="Followers"
|
|
87
|
+
uid=e135 generic value="2,867"
|
|
88
|
+
uid=e138 button "Message Jon"
|
|
89
|
+
uid=e139 generic value="Message"
|
|
90
|
+
uid=e140 main
|
|
91
|
+
uid=e142 generic
|
|
92
|
+
uid=e143 heading "All activity" level="2"
|
|
93
|
+
uid=e146 group "Select type of recent activity"
|
|
94
|
+
uid=e147 button "Posts" pressed
|
|
95
|
+
uid=e148 generic value="Posts"
|
|
96
|
+
uid=e149 button "Comments"
|
|
97
|
+
uid=e150 generic value="Comments"
|
|
98
|
+
uid=e151 button "Images"
|
|
99
|
+
uid=e152 generic value="Images"
|
|
100
|
+
uid=e153 button "Articles"
|
|
101
|
+
uid=e154 generic value="Articles"
|
|
102
|
+
uid=e155 button "Reactions"
|
|
103
|
+
uid=e156 generic value="Reactions"
|
|
104
|
+
uid=e159 generic
|
|
105
|
+
uid=e160 generic
|
|
106
|
+
uid=e161 generic value="Loaded 36 Posts posts"
|
|
107
|
+
uid=e162 list
|
|
108
|
+
uid=e163 listitem
|
|
109
|
+
uid=e168 article
|
|
110
|
+
uid=e170 generic
|
|
111
|
+
uid=e171 heading "Feed post number 1" level="2"
|
|
112
|
+
uid=e172 generic
|
|
113
|
+
uid=e173 generic
|
|
114
|
+
uid=e175 generic
|
|
115
|
+
uid=e176 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
116
|
+
uid=e180 img "View Jon Twigge’s graphic link"
|
|
117
|
+
uid=e181 generic
|
|
118
|
+
uid=s12 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
119
|
+
uid=e183 generic
|
|
120
|
+
uid=e185 generic
|
|
121
|
+
uid=e186 generic value="Jon Twigge"
|
|
122
|
+
uid=e187 generic value="Jon Twigge"
|
|
123
|
+
uid=e188 generic
|
|
124
|
+
uid=e189 generic
|
|
125
|
+
uid=e190 img
|
|
126
|
+
uid=e191 img
|
|
127
|
+
uid=s13 StaticText "• 1st"
|
|
128
|
+
uid=e193 generic value="Premium • 1st"
|
|
129
|
+
uid=e194 generic
|
|
130
|
+
uid=e195 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
131
|
+
uid=e196 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
132
|
+
uid=e197 generic
|
|
133
|
+
uid=e198 generic
|
|
134
|
+
uid=s14 StaticText "9h •"
|
|
135
|
+
uid=e201 img
|
|
136
|
+
uid=e203 generic value="9 hours ago • Visible to anyone on or off LinkedIn"
|
|
137
|
+
uid=e206 button "Open control menu for post by Jon Twigge"
|
|
138
|
+
uid=e207 img
|
|
139
|
+
uid=e213 generic value="I comment on Steve's post that his principle should apply to far more than contracts. Drowning people in information is not transparency, it is often worse than nothing."
|
|
140
|
+
uid=e214 generic
|
|
141
|
+
uid=e215 generic
|
|
142
|
+
uid=e216 generic
|
|
143
|
+
uid=e217 link "Academy of Life Planning, graphic." url="https://www.linkedin.com/company/aolpinfo/posts"
|
|
144
|
+
uid=e221 generic
|
|
145
|
+
uid=s15 unknown url="https://www.linkedin.com/company/aolpinfo/posts"
|
|
146
|
+
uid=e225 generic
|
|
147
|
+
uid=e227 generic value="Academy of Life Planning"
|
|
148
|
+
uid=e229 generic value="Academy of Life Planning"
|
|
149
|
+
uid=e230 generic
|
|
150
|
+
uid=e231 generic value="506 followers"
|
|
151
|
+
uid=e232 generic value="506 followers"
|
|
152
|
+
uid=e233 generic
|
|
153
|
+
uid=e234 generic
|
|
154
|
+
uid=s16 StaticText "14h •"
|
|
155
|
+
uid=e237 img
|
|
156
|
+
uid=e239 generic value="14 hours ago • Visible to anyone on or off LinkedIn"
|
|
157
|
+
uid=e240 button "Follow Academy of Life Planning"
|
|
158
|
+
uid=e241 img
|
|
159
|
+
uid=e243 generic value="Follow"
|
|
160
|
+
uid=e245 link "Most People Don’t Read the Contracts They Sign. That’s Not a Personal Failure — It’s a System Design Problem. By the Academy of Life Planning A recent consumer survey of over 50,000 people by Surve… see more, visually reveals content which is already detected by screen readers" url="/feed/update/urn:li:activity:7456740863440953344/"
|
|
161
|
+
uid=e246 generic
|
|
162
|
+
uid=e249 generic value="Most People Don’t Read the Contracts They Sign. That’s Not a Personal Failure — It’s a System Design Problem. By the Academy of Life Planning A recent consumer survey of over 50,000 people by Surve…"
|
|
163
|
+
uid=e250 button "see more, visually reveals content which is already detected by screen readers"
|
|
164
|
+
uid=e251 generic value="…more"
|
|
165
|
+
uid=e252 generic
|
|
166
|
+
uid=s17 unknown url="http://academyoflifeplanning.blog/2026/05/03/most-people-dont-read-the-contracts-they-sign/"
|
|
167
|
+
uid=e259 link "Most People Don’t Read the Contracts They Sign." url="http://academyoflifeplanning.blog/2026/05/03/most-people-dont-read-the-contracts-they-sign/"
|
|
168
|
+
uid=e262 generic
|
|
169
|
+
uid=e264 generic value="Most People Don’t Read the Contracts They Sign."
|
|
170
|
+
uid=e265 generic value="academyoflifeplanning.blog"
|
|
171
|
+
uid=e267 generic
|
|
172
|
+
uid=e268 generic
|
|
173
|
+
uid=e269 button "React Like"
|
|
174
|
+
uid=e271 generic
|
|
175
|
+
uid=e272 img
|
|
176
|
+
uid=e274 generic value="Like"
|
|
177
|
+
uid=s18 button "Open reactions menu"
|
|
178
|
+
uid=e276 img
|
|
179
|
+
uid=e280 button "Comment"
|
|
180
|
+
uid=e281 img
|
|
181
|
+
uid=e283 generic value="Comment"
|
|
182
|
+
uid=e286 button "Repost"
|
|
183
|
+
uid=e287 img
|
|
184
|
+
uid=e289 generic value="Repost"
|
|
185
|
+
uid=e292 button "Send in a private message"
|
|
186
|
+
uid=e293 img
|
|
187
|
+
uid=e296 generic value="Send"
|
|
188
|
+
uid=e297 listitem
|
|
189
|
+
uid=e302 article
|
|
190
|
+
uid=e304 generic
|
|
191
|
+
uid=e305 heading "Feed post number 2" level="2"
|
|
192
|
+
uid=e306 generic
|
|
193
|
+
uid=e307 generic
|
|
194
|
+
uid=e309 generic
|
|
195
|
+
uid=e310 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
196
|
+
uid=e314 img "View Jon Twigge’s graphic link"
|
|
197
|
+
uid=e315 generic
|
|
198
|
+
uid=s19 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
199
|
+
uid=e317 generic
|
|
200
|
+
uid=e319 generic
|
|
201
|
+
uid=e320 generic value="Jon Twigge"
|
|
202
|
+
uid=e321 generic value="Jon Twigge"
|
|
203
|
+
uid=e322 generic
|
|
204
|
+
uid=e323 generic
|
|
205
|
+
uid=e324 img
|
|
206
|
+
uid=e325 img
|
|
207
|
+
uid=s20 StaticText "• 1st"
|
|
208
|
+
uid=e327 generic value="Premium • 1st"
|
|
209
|
+
uid=e328 generic
|
|
210
|
+
uid=e329 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
211
|
+
uid=e330 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
212
|
+
uid=e331 generic
|
|
213
|
+
uid=e332 generic
|
|
214
|
+
uid=s21 StaticText "3d •"
|
|
215
|
+
uid=e335 img
|
|
216
|
+
uid=e337 generic value="3 days ago • Visible to anyone on or off LinkedIn"
|
|
217
|
+
uid=e340 button "Open control menu for post by Jon Twigge"
|
|
218
|
+
uid=e341 img
|
|
219
|
+
uid=e344 generic
|
|
220
|
+
uid=e347 generic
|
|
221
|
+
uid=s22 StaticText "I suspect that, like many things, AI will be both good and bad for learning."
|
|
222
|
+
uid=s23 StaticText "Those that use it to make themselves more effective and build on it will move even faster and more valuable."
|
|
223
|
+
uid=s24 StaticText "Those that rely without understanding risk becoming obsolete."
|
|
224
|
+
uid=s25 StaticText "Will we end up with an even more polarised world of AI power users vs the rest?"
|
|
225
|
+
uid=s26 StaticText "And, for this article in particular, how should we use AI in education to foster better growth."
|
|
226
|
+
uid=e348 button "see more, visually reveals content which is already detected by screen readers"
|
|
227
|
+
uid=e349 generic value="…more"
|
|
228
|
+
uid=e350 generic
|
|
229
|
+
uid=e351 generic
|
|
230
|
+
uid=e352 generic
|
|
231
|
+
uid=e353 link "View Dr. Christopher Dwyer’s open to work graphic link" url="https://www.linkedin.com/in/dr-christopher-dwyer-research-critical-thinking-psychology-training?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAp3ZuwBD7GEHNp8g3p29Ivl1RJ3lROJP8Q"
|
|
232
|
+
uid=e357 img "View Dr. Christopher Dwyer’s open to work graphic link"
|
|
233
|
+
uid=e358 generic
|
|
234
|
+
uid=s27 unknown url="https://www.linkedin.com/in/dr-christopher-dwyer-research-critical-thinking-psychology-training?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAp3ZuwBD7GEHNp8g3p29Ivl1RJ3lROJP8Q"
|
|
235
|
+
uid=e360 generic
|
|
236
|
+
uid=e362 generic
|
|
237
|
+
uid=e363 generic value="Dr. Christopher Dwyer"
|
|
238
|
+
uid=e364 generic value="Dr. Christopher Dwyer"
|
|
239
|
+
uid=e365 generic
|
|
240
|
+
uid=e366 generic
|
|
241
|
+
uid=e367 img
|
|
242
|
+
uid=s28 StaticText "• 2nd"
|
|
243
|
+
uid=e369 generic value="Verified • 2nd"
|
|
244
|
+
uid=e370 generic
|
|
245
|
+
uid=e371 generic value="Research, Project Management, Education & Training, Psychology and Critical Thinking"
|
|
246
|
+
uid=e372 generic value="Research, Project Management, Education & Training, Psychology and Critical Thinking"
|
|
247
|
+
uid=e373 generic
|
|
248
|
+
uid=e374 generic
|
|
249
|
+
uid=s29 StaticText "3d •"
|
|
250
|
+
uid=e377 img
|
|
251
|
+
uid=e379 generic value="3 days ago • Visible to anyone on or off LinkedIn"
|
|
252
|
+
uid=e380 button "Follow Dr. Christopher Dwyer"
|
|
253
|
+
uid=e381 img
|
|
254
|
+
uid=e383 generic value="Follow"
|
|
255
|
+
uid=e385 link "Check out my new piece on Psychology Today about different perspectives on how we might think about student use of AI in writing essays. Technological University of the Shannon Technological University of the Shannon, Athlone Campus see more, visually reveals content which is already detected by screen readers" url="/feed/update/urn:li:activity:7455560737256607744/"
|
|
256
|
+
uid=e386 generic
|
|
257
|
+
uid=e389 generic
|
|
258
|
+
uid=s30 StaticText "Check out my new piece on"
|
|
259
|
+
uid=e390 link "Psychology Today" url="https://www.linkedin.com/company/psychology-today/"
|
|
260
|
+
uid=e392 generic value="Psychology Today"
|
|
261
|
+
uid=s31 StaticText "about different perspectives on how we might think about student use of AI in writing essays."
|
|
262
|
+
uid=e393 link "Technological University of the Shannon" url="https://www.linkedin.com/company/tus-ie/"
|
|
263
|
+
uid=e395 generic value="Technological University of the Shannon"
|
|
264
|
+
uid=e396 link "Technological University of the Shannon, Athlone Campus" url="https://www.linkedin.com/company/tus-athlone/"
|
|
265
|
+
uid=e398 generic value="Technological University of the Shannon, Athlone Campus"
|
|
266
|
+
uid=e399 button "see more, visually reveals content which is already detected by screen readers"
|
|
267
|
+
uid=e400 generic value="…more"
|
|
268
|
+
uid=e401 generic
|
|
269
|
+
uid=s32 unknown url="https://www.psychologytoday.com/us/blog/thoughts-on-thinking/202604/ai-written-essays-cheating-or-leveraging-technology"
|
|
270
|
+
uid=s33 unknown url="https://www.psychologytoday.com/us/blog/thoughts-on-thinking/202604/ai-written-essays-cheating-or-leveraging-technology"
|
|
271
|
+
uid=e411 generic
|
|
272
|
+
uid=e413 generic value="AI-Written Essays: Cheating or Leveraging Technology?"
|
|
273
|
+
uid=e414 generic value="psychologytoday.com"
|
|
274
|
+
uid=e415 generic
|
|
275
|
+
uid=e419 list
|
|
276
|
+
uid=e420 listitem
|
|
277
|
+
uid=e421 button "You and 3 others"
|
|
278
|
+
uid=e422 img "like"
|
|
279
|
+
uid=e423 generic
|
|
280
|
+
uid=e424 generic value="4"
|
|
281
|
+
uid=e425 generic value="You and 3 others"
|
|
282
|
+
uid=e426 generic
|
|
283
|
+
uid=e427 generic
|
|
284
|
+
uid=e428 button "Unreact Like" pressed
|
|
285
|
+
uid=e430 generic
|
|
286
|
+
uid=e431 img "like"
|
|
287
|
+
uid=e432 generic value="Like"
|
|
288
|
+
uid=s34 button "Open reactions menu"
|
|
289
|
+
uid=e434 img
|
|
290
|
+
uid=e438 button "Comment"
|
|
291
|
+
uid=e439 img
|
|
292
|
+
uid=e441 generic value="Comment"
|
|
293
|
+
uid=e444 button "Repost"
|
|
294
|
+
uid=e445 img
|
|
295
|
+
uid=e447 generic value="Repost"
|
|
296
|
+
uid=e450 button "Send in a private message"
|
|
297
|
+
uid=e451 img
|
|
298
|
+
uid=e454 generic value="Send"
|
|
299
|
+
uid=e455 listitem
|
|
300
|
+
uid=e460 article
|
|
301
|
+
uid=e462 generic
|
|
302
|
+
uid=e463 heading "Feed post number 3" level="2"
|
|
303
|
+
uid=e464 generic
|
|
304
|
+
uid=e465 generic
|
|
305
|
+
uid=e467 generic
|
|
306
|
+
uid=e468 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
307
|
+
uid=e472 img "View Jon Twigge’s graphic link"
|
|
308
|
+
uid=e473 generic
|
|
309
|
+
uid=s35 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
310
|
+
uid=e475 generic
|
|
311
|
+
uid=e477 generic
|
|
312
|
+
uid=e478 generic value="Jon Twigge"
|
|
313
|
+
uid=e479 generic value="Jon Twigge"
|
|
314
|
+
uid=e480 generic
|
|
315
|
+
uid=e481 generic
|
|
316
|
+
uid=e482 img
|
|
317
|
+
uid=e483 img
|
|
318
|
+
uid=s36 StaticText "• 1st"
|
|
319
|
+
uid=e485 generic value="Premium • 1st"
|
|
320
|
+
uid=e486 generic
|
|
321
|
+
uid=e487 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
322
|
+
uid=e488 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
323
|
+
uid=e489 generic
|
|
324
|
+
uid=e490 generic
|
|
325
|
+
uid=s37 StaticText "4d •"
|
|
326
|
+
uid=e493 img
|
|
327
|
+
uid=e495 generic value="4 days ago • Visible to anyone on or off LinkedIn"
|
|
328
|
+
uid=e498 button "Open control menu for post by Jon Twigge"
|
|
329
|
+
uid=e499 img
|
|
330
|
+
uid=e502 generic
|
|
331
|
+
uid=e505 generic
|
|
332
|
+
uid=s38 StaticText "Yesterday morning, at a tech startup networking event, I caught myself asking the question I've spent years thinking is broken."
|
|
333
|
+
uid=s39 StaticText "\"What do you do?\""
|
|
334
|
+
uid=s40 StaticText "I stopped mid-sentence and said something like: \"I know this is a bad question, and I have a better one in mind — but I haven't quite got it yet. So, what do you do?\""
|
|
335
|
+
uid=s41 StaticText "I have very high agreeableness. I notice when these five words land badly on someone — the stay-at-home father, the retiree, the person who apologises for doing the thing that makes their heart sing because no one is paying them for it."
|
|
336
|
+
uid=s42 StaticText "And there are a lot more of them than people let on."
|
|
337
|
+
uid=s43 StaticText "We don't need a better answer to \"What do you do?\" We need a better question entirely."
|
|
338
|
+
uid=s44 StaticText "I wrote up why I think the most common question in English is broken — and why it'll be unanswerable for millions of people in the next few years."
|
|
339
|
+
uid=e506 link "hashtag identity" url="https://www.linkedin.com/search/results/all/?keywords=%23identity&origin=HASH_TAG_FROM_FEED"
|
|
340
|
+
uid=e507 generic value="hashtag"
|
|
341
|
+
uid=e508 generic value="#identity"
|
|
342
|
+
uid=e509 link "hashtag futureofwork" url="https://www.linkedin.com/search/results/all/?keywords=%23futureofwork&origin=HASH_TAG_FROM_FEED"
|
|
343
|
+
uid=e510 generic value="hashtag"
|
|
344
|
+
uid=e511 generic value="#futureofwork"
|
|
345
|
+
uid=e512 link "hashtag selfawareness" url="https://www.linkedin.com/search/results/all/?keywords=%23selfawareness&origin=HASH_TAG_FROM_FEED"
|
|
346
|
+
uid=e513 generic value="hashtag"
|
|
347
|
+
uid=e514 generic value="#selfawareness"
|
|
348
|
+
uid=e515 button "see more, visually reveals content which is already detected by screen readers"
|
|
349
|
+
uid=e516 generic value="…more"
|
|
350
|
+
uid=e517 article
|
|
351
|
+
uid=e518 generic
|
|
352
|
+
uid=s45 unknown url="https://www.linkedin.com/pulse/most-common-question-english-broken-jon-twigge-yogse?trackingId=b7BWrpCrz3LizgjKBBh5NQ%3D%3D"
|
|
353
|
+
uid=s46 unknown url="https://www.linkedin.com/pulse/most-common-question-english-broken-jon-twigge-yogse?trackingId=b7BWrpCrz3LizgjKBBh5NQ%3D%3D"
|
|
354
|
+
uid=e526 generic
|
|
355
|
+
uid=e528 generic value="The most common question in English is broken"
|
|
356
|
+
uid=e529 generic value="Jon Twigge"
|
|
357
|
+
uid=e530 generic
|
|
358
|
+
uid=e534 list
|
|
359
|
+
uid=e535 listitem
|
|
360
|
+
uid=e536 button "You and 8 others"
|
|
361
|
+
uid=e537 img "like"
|
|
362
|
+
uid=e538 img "celebrate"
|
|
363
|
+
uid=e539 generic
|
|
364
|
+
uid=e540 generic value="9"
|
|
365
|
+
uid=e541 generic value="You and 8 others"
|
|
366
|
+
uid=e542 listitem
|
|
367
|
+
uid=e543 list
|
|
368
|
+
uid=e544 listitem
|
|
369
|
+
uid=e545 button "2 reposts of Jon Twigge’s post"
|
|
370
|
+
uid=e546 generic value="2 reposts"
|
|
371
|
+
uid=e547 generic
|
|
372
|
+
uid=e548 generic
|
|
373
|
+
uid=e549 button "Unreact Like" pressed
|
|
374
|
+
uid=e551 generic
|
|
375
|
+
uid=e552 img "like"
|
|
376
|
+
uid=e553 generic value="Like"
|
|
377
|
+
uid=s47 button "Open reactions menu"
|
|
378
|
+
uid=e555 img
|
|
379
|
+
uid=e559 button "Comment"
|
|
380
|
+
uid=e560 img
|
|
381
|
+
uid=e562 generic value="Comment"
|
|
382
|
+
uid=e565 button "Repost"
|
|
383
|
+
uid=e566 img
|
|
384
|
+
uid=e568 generic value="Repost"
|
|
385
|
+
uid=e571 button "Send in a private message"
|
|
386
|
+
uid=e572 img
|
|
387
|
+
uid=e575 generic value="Send"
|
|
388
|
+
uid=e576 listitem
|
|
389
|
+
uid=e581 article
|
|
390
|
+
uid=e583 generic
|
|
391
|
+
uid=e584 heading "Feed post number 4" level="2"
|
|
392
|
+
uid=e585 generic
|
|
393
|
+
uid=e586 generic
|
|
394
|
+
uid=e588 generic
|
|
395
|
+
uid=e589 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
396
|
+
uid=e593 img "View Jon Twigge’s graphic link"
|
|
397
|
+
uid=e594 generic
|
|
398
|
+
uid=s48 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
399
|
+
uid=e596 generic
|
|
400
|
+
uid=e598 generic
|
|
401
|
+
uid=e599 generic value="Jon Twigge"
|
|
402
|
+
uid=e600 generic value="Jon Twigge"
|
|
403
|
+
uid=e601 generic
|
|
404
|
+
uid=e602 generic
|
|
405
|
+
uid=e603 img
|
|
406
|
+
uid=e604 img
|
|
407
|
+
uid=s49 StaticText "• 1st"
|
|
408
|
+
uid=e606 generic value="Premium • 1st"
|
|
409
|
+
uid=e607 generic
|
|
410
|
+
uid=e608 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
411
|
+
uid=e609 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
412
|
+
uid=e610 generic
|
|
413
|
+
uid=e611 generic
|
|
414
|
+
uid=s50 StaticText "5d •"
|
|
415
|
+
uid=e614 img
|
|
416
|
+
uid=e616 generic value="5 days ago • Visible to anyone on or off LinkedIn"
|
|
417
|
+
uid=e619 button "Open control menu for post by Jon Twigge"
|
|
418
|
+
uid=e620 img
|
|
419
|
+
uid=e623 generic
|
|
420
|
+
uid=e626 generic
|
|
421
|
+
uid=s51 StaticText "Leadership matters to the nature of work in the AI age"
|
|
422
|
+
uid=s52 StaticText "All the way up and all the way down"
|
|
423
|
+
uid=s53 StaticText "Not just in the office, in families, communities, nations and globally."
|
|
424
|
+
uid=e627 button "see more, visually reveals content which is already detected by screen readers"
|
|
425
|
+
uid=e628 generic value="…more"
|
|
426
|
+
uid=e629 generic
|
|
427
|
+
uid=e630 generic
|
|
428
|
+
uid=e631 generic
|
|
429
|
+
uid=e632 link "View John Amaechi OBE’s graphic link" url="https://www.linkedin.com/in/amaechi?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAADQ_FYBR3-IUCmOG7RUfVEjDkwwasobY5I"
|
|
430
|
+
uid=e636 img "View John Amaechi OBE’s graphic link"
|
|
431
|
+
uid=e637 generic
|
|
432
|
+
uid=s54 unknown url="https://www.linkedin.com/in/amaechi?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAADQ_FYBR3-IUCmOG7RUfVEjDkwwasobY5I"
|
|
433
|
+
uid=e639 generic
|
|
434
|
+
uid=e641 generic
|
|
435
|
+
uid=e642 generic value="John Amaechi OBE"
|
|
436
|
+
uid=e643 generic value="John Amaechi OBE"
|
|
437
|
+
uid=e644 generic
|
|
438
|
+
uid=e645 generic
|
|
439
|
+
uid=e647 img
|
|
440
|
+
uid=s55 StaticText "• 2nd"
|
|
441
|
+
uid=e649 generic value="Influencer • 2nd"
|
|
442
|
+
uid=e650 generic
|
|
443
|
+
uid=e651 generic value="Speaker. Bestselling Author. Psychologist. Giant. Professor of Leadership at the University of Exeter. Founder of APS Intelligence Ltd. Chartered Psychologist & Associate Fellow of the British Psychological Society."
|
|
444
|
+
uid=e652 generic value="Speaker. Bestselling Author. Psychologist. Giant. Professor of Leadership at the University of Exeter. Founder of APS Intelligence Ltd. Chartered Psychologist & Associate Fellow of the British Psychological Society."
|
|
445
|
+
uid=e653 generic
|
|
446
|
+
uid=e654 generic
|
|
447
|
+
uid=s56 StaticText "5d •"
|
|
448
|
+
uid=e657 img
|
|
449
|
+
uid=e659 generic value="5 days ago • Visible to anyone on or off LinkedIn"
|
|
450
|
+
uid=e660 button "Follow John Amaechi OBE"
|
|
451
|
+
uid=e661 img
|
|
452
|
+
uid=e663 generic value="Follow"
|
|
453
|
+
uid=s57 unknown url="/feed/update/urn:li:activity:7454803604177244161/"
|
|
454
|
+
uid=e666 generic
|
|
455
|
+
uid=e669 generic
|
|
456
|
+
uid=s58 StaticText "The future of work will be shaped by artificial intelligence, but it will be defined by the decisions leaders make about people."
|
|
457
|
+
uid=s59 StaticText "I’m pleased to be part of the"
|
|
458
|
+
uid=e671 link "Mayor of London, Sadiq Khan" url="/in/mayoroflondon/"
|
|
459
|
+
uid=s60 StaticText "’s AI and Future of Work Taskforce, chaired by Baroness"
|
|
460
|
+
uid=e673 link "Martha Lane Fox" url="/in/marthalanefox/"
|
|
461
|
+
uid=s61 StaticText ", working to ensure that this next phase of change is something people are meaningfully part of, rather than something that simply happens around them."
|
|
462
|
+
uid=s62 StaticText "You can read more here:"
|
|
463
|
+
uid=e674 link "https://lnkd.in/e9nbMggt" url="https://lnkd.in/e9nbMggt"
|
|
464
|
+
uid=e675 button "see more, visually reveals content which is already detected by screen readers"
|
|
465
|
+
uid=e676 generic value="…more"
|
|
466
|
+
uid=e681 region "Video player"
|
|
467
|
+
uid=e685 generic
|
|
468
|
+
uid=e686 button "Play"
|
|
469
|
+
uid=e687 generic value="Play"
|
|
470
|
+
uid=e688 slider "Playback progress"
|
|
471
|
+
uid=e690 generic value="Loaded: 4.40%"
|
|
472
|
+
uid=e692 generic
|
|
473
|
+
uid=s63 StaticText "Remaining time"
|
|
474
|
+
uid=e693 generic value="1:30"
|
|
475
|
+
uid=e694 generic
|
|
476
|
+
uid=s64 generic value="1x"
|
|
477
|
+
uid=e695 button "Playback speed"
|
|
478
|
+
uid=e696 generic value="Playback speed"
|
|
479
|
+
uid=e697 button "Turn closed captions on"
|
|
480
|
+
uid=e698 generic value="Turn closed captions on"
|
|
481
|
+
uid=e699 generic
|
|
482
|
+
uid=e700 button "Unmute"
|
|
483
|
+
uid=e701 generic value="Unmute"
|
|
484
|
+
uid=s65 generic
|
|
485
|
+
uid=s66 slider "Volume"
|
|
486
|
+
uid=e703 button "Turn fullscreen on"
|
|
487
|
+
uid=e704 generic value="Turn fullscreen on"
|
|
488
|
+
uid=e705 generic
|
|
489
|
+
uid=e709 list
|
|
490
|
+
uid=e710 listitem
|
|
491
|
+
uid=e711 button "2 reactions"
|
|
492
|
+
uid=e712 img "like"
|
|
493
|
+
uid=e713 generic value="2"
|
|
494
|
+
uid=e714 generic
|
|
495
|
+
uid=e715 generic
|
|
496
|
+
uid=e716 button "Unreact Like" pressed
|
|
497
|
+
uid=e718 generic
|
|
498
|
+
uid=e719 img "like"
|
|
499
|
+
uid=e720 generic value="Like"
|
|
500
|
+
uid=s67 button "Open reactions menu"
|
|
501
|
+
uid=e722 img
|
|
502
|
+
uid=e726 button "Comment"
|
|
503
|
+
uid=e727 img
|
|
504
|
+
uid=e729 generic value="Comment"
|
|
505
|
+
uid=e732 button "Repost"
|
|
506
|
+
uid=e733 img
|
|
507
|
+
uid=e735 generic value="Repost"
|
|
508
|
+
uid=e738 button "Send in a private message"
|
|
509
|
+
uid=e739 img
|
|
510
|
+
uid=e742 generic value="Send"
|
|
511
|
+
uid=e743 listitem
|
|
512
|
+
uid=e748 article
|
|
513
|
+
uid=e750 generic
|
|
514
|
+
uid=e751 heading "Feed post number 5" level="2"
|
|
515
|
+
uid=e752 generic
|
|
516
|
+
uid=e753 generic
|
|
517
|
+
uid=e755 generic
|
|
518
|
+
uid=e756 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
519
|
+
uid=e760 img "View Jon Twigge’s graphic link"
|
|
520
|
+
uid=e761 generic
|
|
521
|
+
uid=s68 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
522
|
+
uid=e763 generic
|
|
523
|
+
uid=e765 generic
|
|
524
|
+
uid=e766 generic value="Jon Twigge"
|
|
525
|
+
uid=e767 generic value="Jon Twigge"
|
|
526
|
+
uid=e768 generic
|
|
527
|
+
uid=e769 generic
|
|
528
|
+
uid=e770 img
|
|
529
|
+
uid=e771 img
|
|
530
|
+
uid=s69 StaticText "• 1st"
|
|
531
|
+
uid=e773 generic value="Premium • 1st"
|
|
532
|
+
uid=e774 generic
|
|
533
|
+
uid=e775 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
534
|
+
uid=e776 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
535
|
+
uid=e777 generic
|
|
536
|
+
uid=e778 generic
|
|
537
|
+
uid=s70 StaticText "6d •"
|
|
538
|
+
uid=e781 img
|
|
539
|
+
uid=e783 generic value="6 days ago • Visible to anyone on or off LinkedIn"
|
|
540
|
+
uid=e786 button "Open control menu for post by Jon Twigge"
|
|
541
|
+
uid=e787 img
|
|
542
|
+
uid=e790 generic
|
|
543
|
+
uid=e793 generic
|
|
544
|
+
uid=s71 StaticText "I hear more and more people saying AI is impacting jobs. Especially at entry levels."
|
|
545
|
+
uid=s72 StaticText "Not so many people looking at the structural changes we will very likely soon need if the current trajectory keeps accelerating."
|
|
546
|
+
uid=e794 button "see more, visually reveals content which is already detected by screen readers"
|
|
547
|
+
uid=e795 generic value="…more"
|
|
548
|
+
uid=e796 generic
|
|
549
|
+
uid=e797 generic
|
|
550
|
+
uid=e798 generic
|
|
551
|
+
uid=e799 link "View Dave Winsborough’s graphic link" url="https://www.linkedin.com/in/davewinsborough?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAACBv24BiAecirFd5BVh3msnOmCtUcpPUTA"
|
|
552
|
+
uid=e803 img "View Dave Winsborough’s graphic link"
|
|
553
|
+
uid=e804 generic
|
|
554
|
+
uid=s73 unknown url="https://www.linkedin.com/in/davewinsborough?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAACBv24BiAecirFd5BVh3msnOmCtUcpPUTA"
|
|
555
|
+
uid=e806 generic
|
|
556
|
+
uid=e808 generic
|
|
557
|
+
uid=e809 generic value="Dave Winsborough"
|
|
558
|
+
uid=e810 generic value="Dave Winsborough"
|
|
559
|
+
uid=e811 generic
|
|
560
|
+
uid=e812 generic
|
|
561
|
+
uid=e813 img
|
|
562
|
+
uid=s74 StaticText "• 3rd+"
|
|
563
|
+
uid=e815 generic value="Verified • 3rd+"
|
|
564
|
+
uid=e816 generic
|
|
565
|
+
uid=e817 generic value="Founder: Deeper Signals; Terrain; Button Psychology"
|
|
566
|
+
uid=e818 generic value="Founder: Deeper Signals; Terrain; Button Psychology"
|
|
567
|
+
uid=e819 generic
|
|
568
|
+
uid=e820 generic
|
|
569
|
+
uid=s75 StaticText "3mo •"
|
|
570
|
+
uid=e823 img
|
|
571
|
+
uid=e825 generic value="3 months ago • Visible to anyone on or off LinkedIn"
|
|
572
|
+
uid=e826 button "Follow Dave Winsborough"
|
|
573
|
+
uid=e827 img
|
|
574
|
+
uid=e829 generic value="Follow"
|
|
575
|
+
uid=e831 link url="/feed/update/urn:li:activity:7423859187593408512/"
|
|
576
|
+
uid=e832 generic
|
|
577
|
+
uid=e835 generic
|
|
578
|
+
uid=s76 StaticText "There are a lot of grim stories of graduates firing off hundreds of applications into the void and still not getting work."
|
|
579
|
+
uid=e837 link "Erik Brynjolfsson" url="/in/erikbrynjolfsson/"
|
|
580
|
+
uid=s77 StaticText "'s work shows hiring for junior staff in AI exposed firms has shrunk ."
|
|
581
|
+
uid=s78 StaticText "But hold the canary. If organisations are serious about building an AI-literate workforce, the talent pipeline matters more than ever."
|
|
582
|
+
uid=s79 StaticText "As a recent The Economist article notes, entry-level hires bring three things that are at a premium in smart firms: fewer ingrained habits, preparedness to do things differently and far greater day-to-day use of AI. According to OpenAI, 18–29-year-olds are more than twice as likely to use ChatGPT at work as those over 50."
|
|
583
|
+
uid=s80 StaticText "Innovation isn’t just about tools; it’s about unlearning and perspective. Younger employees don’t have decades of “this is how we do things” as a millstone."
|
|
584
|
+
uid=s81 StaticText "Freezing graduate hiring might look good on paper right now. In the long run it will starve organisations of the very capabilities they say they need to adapt."
|
|
585
|
+
uid=e838 button "see more, visually reveals content which is already detected by screen readers"
|
|
586
|
+
uid=e839 generic value="…more"
|
|
587
|
+
uid=e840 generic
|
|
588
|
+
uid=e844 list
|
|
589
|
+
uid=e845 listitem
|
|
590
|
+
uid=e846 button "1 reaction"
|
|
591
|
+
uid=e847 img "insightful"
|
|
592
|
+
uid=e848 generic value="1"
|
|
593
|
+
uid=e849 listitem
|
|
594
|
+
uid=e850 list
|
|
595
|
+
uid=e851 listitem
|
|
596
|
+
uid=e852 button "1 repost of Jon Twigge’s post"
|
|
597
|
+
uid=e853 generic value="1 repost"
|
|
598
|
+
uid=e854 generic
|
|
599
|
+
uid=e855 generic
|
|
600
|
+
uid=e856 button "React Like"
|
|
601
|
+
uid=e858 generic
|
|
602
|
+
uid=e859 img
|
|
603
|
+
uid=e861 generic value="Like"
|
|
604
|
+
uid=s82 button "Open reactions menu"
|
|
605
|
+
uid=e863 img
|
|
606
|
+
uid=e867 button "Comment"
|
|
607
|
+
uid=e868 img
|
|
608
|
+
uid=e870 generic value="Comment"
|
|
609
|
+
uid=e873 button "Repost"
|
|
610
|
+
uid=e874 img
|
|
611
|
+
uid=e876 generic value="Repost"
|
|
612
|
+
uid=e879 button "Send in a private message"
|
|
613
|
+
uid=e880 img
|
|
614
|
+
uid=e883 generic value="Send"
|
|
615
|
+
uid=e884 listitem
|
|
616
|
+
uid=e890 article
|
|
617
|
+
uid=e892 generic
|
|
618
|
+
uid=e893 heading "Feed post number 6" level="2"
|
|
619
|
+
uid=e894 generic
|
|
620
|
+
uid=e895 generic
|
|
621
|
+
uid=e897 generic
|
|
622
|
+
uid=e898 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
623
|
+
uid=e902 img "View Jon Twigge’s graphic link"
|
|
624
|
+
uid=e903 generic
|
|
625
|
+
uid=s83 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
626
|
+
uid=e905 generic
|
|
627
|
+
uid=e907 generic
|
|
628
|
+
uid=e908 generic value="Jon Twigge"
|
|
629
|
+
uid=e909 generic value="Jon Twigge"
|
|
630
|
+
uid=e910 generic
|
|
631
|
+
uid=e911 generic
|
|
632
|
+
uid=e912 img
|
|
633
|
+
uid=e913 img
|
|
634
|
+
uid=s84 StaticText "• 1st"
|
|
635
|
+
uid=e915 generic value="Premium • 1st"
|
|
636
|
+
uid=e916 generic
|
|
637
|
+
uid=e917 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
638
|
+
uid=e918 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
639
|
+
uid=e919 generic
|
|
640
|
+
uid=e920 generic
|
|
641
|
+
uid=s85 StaticText "1w •"
|
|
642
|
+
uid=e923 img
|
|
643
|
+
uid=e925 generic value="1 week ago • Visible to anyone on or off LinkedIn"
|
|
644
|
+
uid=e928 button "Open control menu for post by Jon Twigge"
|
|
645
|
+
uid=e929 img
|
|
646
|
+
uid=e932 generic
|
|
647
|
+
uid=e935 generic
|
|
648
|
+
uid=s86 StaticText "Picking a psychometric provider is a bit like dealing with estate agents. Each shows you only their inventory."
|
|
649
|
+
uid=s87 StaticText "Nobody steps back and asks whether what would help you most might be in someone else's catalogue."
|
|
650
|
+
uid=s88 StaticText "That's the fragmentation problem in self-knowledge tools — and it's about to get more urgent as AI reshapes work."
|
|
651
|
+
uid=s89 StaticText "Wrote up the case for a different model. Including why broadening the market is an opportunity for coaches and practitioners, not a threat."
|
|
652
|
+
uid=s90 StaticText "Honest views from people working in this space welcome."
|
|
653
|
+
uid=e936 link "hashtag psychometrics" url="https://www.linkedin.com/search/results/all/?keywords=%23psychometrics&origin=HASH_TAG_FROM_FEED"
|
|
654
|
+
uid=e937 generic value="hashtag"
|
|
655
|
+
uid=e938 generic value="#psychometrics"
|
|
656
|
+
uid=e939 link "hashtag coaching" url="https://www.linkedin.com/search/results/all/?keywords=%23coaching&origin=HASH_TAG_FROM_FEED"
|
|
657
|
+
uid=e940 generic value="hashtag"
|
|
658
|
+
uid=e941 generic value="#coaching"
|
|
659
|
+
uid=e942 link "hashtag futureofwork" url="https://www.linkedin.com/search/results/all/?keywords=%23futureofwork&origin=HASH_TAG_FROM_FEED"
|
|
660
|
+
uid=e943 generic value="hashtag"
|
|
661
|
+
uid=e944 generic value="#futureofwork"
|
|
662
|
+
uid=e945 button "see more, visually reveals content which is already detected by screen readers"
|
|
663
|
+
uid=e946 generic value="…more"
|
|
664
|
+
uid=e947 article
|
|
665
|
+
uid=e948 generic
|
|
666
|
+
uid=s91 unknown url="https://www.linkedin.com/pulse/fragmentation-problem-jon-twigge-s6eme?trackingId=cOasvBIz%2Bpk%2FXTbl3O0MOQ%3D%3D"
|
|
667
|
+
uid=s92 unknown url="https://www.linkedin.com/pulse/fragmentation-problem-jon-twigge-s6eme?trackingId=cOasvBIz%2Bpk%2FXTbl3O0MOQ%3D%3D"
|
|
668
|
+
uid=e956 generic
|
|
669
|
+
uid=e958 generic value="The fragmentation problem"
|
|
670
|
+
uid=e959 generic value="Jon Twigge"
|
|
671
|
+
uid=e960 generic
|
|
672
|
+
uid=e964 list
|
|
673
|
+
uid=e965 listitem
|
|
674
|
+
uid=e966 button "You and 4 others"
|
|
675
|
+
uid=e967 img "like"
|
|
676
|
+
uid=e968 generic
|
|
677
|
+
uid=e969 generic value="5"
|
|
678
|
+
uid=e970 generic value="You and 4 others"
|
|
679
|
+
uid=e971 generic
|
|
680
|
+
uid=e972 generic
|
|
681
|
+
uid=e973 button "Unreact Like" pressed
|
|
682
|
+
uid=e975 generic
|
|
683
|
+
uid=e976 img "like"
|
|
684
|
+
uid=e977 generic value="Like"
|
|
685
|
+
uid=s93 button "Open reactions menu"
|
|
686
|
+
uid=e979 img
|
|
687
|
+
uid=e983 button "Comment"
|
|
688
|
+
uid=e984 img
|
|
689
|
+
uid=e986 generic value="Comment"
|
|
690
|
+
uid=e989 button "Repost"
|
|
691
|
+
uid=e990 img
|
|
692
|
+
uid=e992 generic value="Repost"
|
|
693
|
+
uid=e995 button "Send in a private message"
|
|
694
|
+
uid=e996 img
|
|
695
|
+
uid=e999 generic value="Send"
|
|
696
|
+
uid=e1000 listitem
|
|
697
|
+
uid=e1006 article
|
|
698
|
+
uid=e1008 generic
|
|
699
|
+
uid=e1009 heading "Feed post number 7" level="2"
|
|
700
|
+
uid=e1010 generic
|
|
701
|
+
uid=e1011 generic
|
|
702
|
+
uid=e1013 generic
|
|
703
|
+
uid=e1014 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
704
|
+
uid=e1018 img "View Jon Twigge’s graphic link"
|
|
705
|
+
uid=e1019 generic
|
|
706
|
+
uid=s94 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
707
|
+
uid=e1021 generic
|
|
708
|
+
uid=e1023 generic
|
|
709
|
+
uid=e1024 generic value="Jon Twigge"
|
|
710
|
+
uid=e1025 generic value="Jon Twigge"
|
|
711
|
+
uid=e1026 generic
|
|
712
|
+
uid=e1027 generic
|
|
713
|
+
uid=e1028 img
|
|
714
|
+
uid=e1029 img
|
|
715
|
+
uid=s95 StaticText "• 1st"
|
|
716
|
+
uid=e1031 generic value="Premium • 1st"
|
|
717
|
+
uid=e1032 generic
|
|
718
|
+
uid=e1033 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
719
|
+
uid=e1034 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
720
|
+
uid=e1035 generic
|
|
721
|
+
uid=e1036 generic
|
|
722
|
+
uid=s96 StaticText "1w •"
|
|
723
|
+
uid=e1039 img
|
|
724
|
+
uid=e1041 generic value="1 week ago • Visible to anyone on or off LinkedIn"
|
|
725
|
+
uid=e1044 button "Open control menu for post by Jon Twigge"
|
|
726
|
+
uid=e1045 img
|
|
727
|
+
uid=e1051 generic value="Fascinating to hear what people most in the AI know are most worried about."
|
|
728
|
+
uid=e1052 generic
|
|
729
|
+
uid=e1053 generic
|
|
730
|
+
uid=e1054 generic
|
|
731
|
+
uid=e1055 link "View Jay Van Bavel, PhD’s graphic link" url="https://www.linkedin.com/in/jayvanbavel?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAVlkxMBiuUov1P7Ojb7zZf5qF3_6riwkcI"
|
|
732
|
+
uid=e1059 img "View Jay Van Bavel, PhD’s graphic link"
|
|
733
|
+
uid=e1060 generic
|
|
734
|
+
uid=s97 unknown url="https://www.linkedin.com/in/jayvanbavel?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAVlkxMBiuUov1P7Ojb7zZf5qF3_6riwkcI"
|
|
735
|
+
uid=e1062 generic
|
|
736
|
+
uid=e1064 generic
|
|
737
|
+
uid=e1065 generic value="Jay Van Bavel, PhD"
|
|
738
|
+
uid=e1066 generic value="Jay Van Bavel, PhD"
|
|
739
|
+
uid=e1067 generic
|
|
740
|
+
uid=e1068 generic
|
|
741
|
+
uid=e1069 img
|
|
742
|
+
uid=e1070 img
|
|
743
|
+
uid=s98 StaticText "• 2nd"
|
|
744
|
+
uid=e1072 generic value="Premium • 2nd"
|
|
745
|
+
uid=e1073 generic
|
|
746
|
+
uid=e1074 generic value="Psychology Professor | Book Author | Keynote Speaker"
|
|
747
|
+
uid=e1075 generic value="Psychology Professor | Book Author | Keynote Speaker"
|
|
748
|
+
uid=e1076 generic
|
|
749
|
+
uid=e1077 generic
|
|
750
|
+
uid=s99 StaticText "1w •"
|
|
751
|
+
uid=e1080 img
|
|
752
|
+
uid=e1082 generic value="1 week ago • Visible to anyone on or off LinkedIn"
|
|
753
|
+
uid=e1083 button "Follow Jay Van Bavel, PhD"
|
|
754
|
+
uid=e1084 img
|
|
755
|
+
uid=e1086 generic value="Follow"
|
|
756
|
+
uid=e1088 link "What is the one thing that most worries you about AI? In a survey of 3,700 AI researchers, only 3% of respondents replied existential risk — despite “the prominence given to these risks in media. Far more researchers are worried aout malicious use, misinformation, job losses, bias, etc. https://lnkd.in/eWbUEVmY see more, visually reveals content which is already detected by screen readers" url="/feed/update/urn:li:activity:7454170767543529472/"
|
|
757
|
+
uid=e1089 generic
|
|
758
|
+
uid=e1092 generic
|
|
759
|
+
uid=s100 StaticText "What is the one thing that most worries you about AI?"
|
|
760
|
+
uid=s101 StaticText "In a survey of 3,700 AI researchers, only 3% of respondents replied existential risk — despite “the prominence given to these risks in media. Far more researchers are worried aout malicious use, misinformation, job losses, bias, etc."
|
|
761
|
+
uid=e1093 link "https://lnkd.in/eWbUEVmY" url="https://lnkd.in/eWbUEVmY"
|
|
762
|
+
uid=e1094 button "see more, visually reveals content which is already detected by screen readers"
|
|
763
|
+
uid=e1095 generic value="…more"
|
|
764
|
+
uid=e1097 generic
|
|
765
|
+
uid=e1099 button "Activate to view larger image, No alternative text description for this image"
|
|
766
|
+
uid=e1100 generic value="Activate to view larger image,"
|
|
767
|
+
uid=e1103 img "No alternative text description for this image"
|
|
768
|
+
uid=e1104 generic value="Activate to view larger image,"
|
|
769
|
+
uid=e1105 generic
|
|
770
|
+
uid=e1109 list
|
|
771
|
+
uid=e1110 listitem
|
|
772
|
+
uid=e1111 button "You and 3 others"
|
|
773
|
+
uid=e1112 img "like"
|
|
774
|
+
uid=e1113 generic
|
|
775
|
+
uid=e1114 generic value="4"
|
|
776
|
+
uid=e1115 generic value="You and 3 others"
|
|
777
|
+
uid=e1116 listitem
|
|
778
|
+
uid=e1117 list
|
|
779
|
+
uid=e1118 listitem
|
|
780
|
+
uid=e1119 button "2 comments on Jon Twigge’s post"
|
|
781
|
+
uid=e1120 generic value="2 comments"
|
|
782
|
+
uid=s102 StaticText "·"
|
|
783
|
+
uid=e1121 listitem
|
|
784
|
+
uid=e1122 button "1 repost of Jon Twigge’s post"
|
|
785
|
+
uid=e1123 generic value="1 repost"
|
|
786
|
+
uid=e1124 generic
|
|
787
|
+
uid=e1125 generic
|
|
788
|
+
uid=e1126 button "Unreact Like" pressed
|
|
789
|
+
uid=e1128 generic
|
|
790
|
+
uid=e1129 img "like"
|
|
791
|
+
uid=e1130 generic value="Like"
|
|
792
|
+
uid=s103 button "Open reactions menu"
|
|
793
|
+
uid=e1132 img
|
|
794
|
+
uid=e1136 button "Comment"
|
|
795
|
+
uid=e1137 img
|
|
796
|
+
uid=e1139 generic value="Comment"
|
|
797
|
+
uid=e1142 button "Repost"
|
|
798
|
+
uid=e1143 img
|
|
799
|
+
uid=e1145 generic value="Repost"
|
|
800
|
+
uid=e1148 button "Send in a private message"
|
|
801
|
+
uid=e1149 img
|
|
802
|
+
uid=e1152 generic value="Send"
|
|
803
|
+
uid=e1153 listitem
|
|
804
|
+
uid=e1159 article
|
|
805
|
+
uid=e1161 generic
|
|
806
|
+
uid=e1162 heading "Feed post number 8" level="2"
|
|
807
|
+
uid=e1163 generic
|
|
808
|
+
uid=e1164 generic
|
|
809
|
+
uid=e1166 generic
|
|
810
|
+
uid=e1167 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
811
|
+
uid=e1171 img "View Jon Twigge’s graphic link"
|
|
812
|
+
uid=e1172 generic
|
|
813
|
+
uid=s104 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
814
|
+
uid=e1174 generic
|
|
815
|
+
uid=e1176 generic
|
|
816
|
+
uid=e1177 generic value="Jon Twigge"
|
|
817
|
+
uid=e1178 generic value="Jon Twigge"
|
|
818
|
+
uid=e1179 generic
|
|
819
|
+
uid=e1180 generic
|
|
820
|
+
uid=e1181 img
|
|
821
|
+
uid=e1182 img
|
|
822
|
+
uid=s105 StaticText "• 1st"
|
|
823
|
+
uid=e1184 generic value="Premium • 1st"
|
|
824
|
+
uid=e1185 generic
|
|
825
|
+
uid=e1186 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
826
|
+
uid=e1187 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
827
|
+
uid=e1188 generic
|
|
828
|
+
uid=e1189 generic
|
|
829
|
+
uid=s106 StaticText "1w •"
|
|
830
|
+
uid=e1192 img
|
|
831
|
+
uid=e1194 generic value="1 week ago • Visible to anyone on or off LinkedIn"
|
|
832
|
+
uid=e1197 button "Open control menu for post by Jon Twigge"
|
|
833
|
+
uid=e1198 img
|
|
834
|
+
uid=e1201 generic
|
|
835
|
+
uid=e1204 generic
|
|
836
|
+
uid=s107 StaticText "I love this kind of thing. I always want to know why - not just what. With why we can we be really aware and go under the hood and change things."
|
|
837
|
+
uid=s108 StaticText "With the world of employment changing quickly we are going to need a lot more meta why about our own learning and understanding to adapt effectively."
|
|
838
|
+
uid=e1205 button "see more, visually reveals content which is already detected by screen readers"
|
|
839
|
+
uid=e1206 generic value="…more"
|
|
840
|
+
uid=e1207 article
|
|
841
|
+
uid=e1208 generic
|
|
842
|
+
uid=s109 unknown url="https://www.linkedin.com/pulse/structure-magic-darren-stevens-phd-s002e?trackingId=6AF4xBV1ZmWDFjkGX0rSjA%3D%3D"
|
|
843
|
+
uid=s110 unknown url="https://www.linkedin.com/pulse/structure-magic-darren-stevens-phd-s002e?trackingId=6AF4xBV1ZmWDFjkGX0rSjA%3D%3D"
|
|
844
|
+
uid=e1215 generic
|
|
845
|
+
uid=e1216 generic
|
|
846
|
+
uid=e1217 link "Exceptional Leadership, graphic." url="https://www.linkedin.com/newsletters/exceptional-leadership-7265293037520445440"
|
|
847
|
+
uid=e1219 img
|
|
848
|
+
uid=e1220 generic
|
|
849
|
+
uid=e1221 link "Exceptional Leadership" url="https://www.linkedin.com/newsletters/exceptional-leadership-7265293037520445440"
|
|
850
|
+
uid=e1224 generic
|
|
851
|
+
uid=e1225 generic value="Exceptional Leadership"
|
|
852
|
+
uid=e1226 generic value="Exceptional Leadership"
|
|
853
|
+
uid=e1227 button "Subscribe"
|
|
854
|
+
uid=e1228 img
|
|
855
|
+
uid=e1230 generic value="Subscribe"
|
|
856
|
+
uid=e1231 generic value="Subscribe to {:entityName}"
|
|
857
|
+
uid=e1232 generic
|
|
858
|
+
uid=e1234 generic value="The Structure of The Structure of Magic"
|
|
859
|
+
uid=e1235 generic value="Darren Stevens, PhD"
|
|
860
|
+
uid=e1236 generic
|
|
861
|
+
uid=e1240 list
|
|
862
|
+
uid=e1241 listitem
|
|
863
|
+
uid=e1242 button "1 reaction"
|
|
864
|
+
uid=e1243 img "like"
|
|
865
|
+
uid=e1244 generic value="1"
|
|
866
|
+
uid=e1245 generic
|
|
867
|
+
uid=e1246 generic
|
|
868
|
+
uid=e1247 button "Unreact Like" pressed
|
|
869
|
+
uid=e1249 generic
|
|
870
|
+
uid=e1250 img "like"
|
|
871
|
+
uid=e1251 generic value="Like"
|
|
872
|
+
uid=s111 button "Open reactions menu"
|
|
873
|
+
uid=e1253 img
|
|
874
|
+
uid=e1257 button "Comment"
|
|
875
|
+
uid=e1258 img
|
|
876
|
+
uid=e1260 generic value="Comment"
|
|
877
|
+
uid=e1263 button "Repost"
|
|
878
|
+
uid=e1264 img
|
|
879
|
+
uid=e1266 generic value="Repost"
|
|
880
|
+
uid=e1269 button "Send in a private message"
|
|
881
|
+
uid=e1270 img
|
|
882
|
+
uid=e1273 generic value="Send"
|
|
883
|
+
uid=e1274 listitem
|
|
884
|
+
uid=e1280 article
|
|
885
|
+
uid=e1282 generic
|
|
886
|
+
uid=e1283 heading "Feed post number 9" level="2"
|
|
887
|
+
uid=e1284 generic
|
|
888
|
+
uid=e1285 generic
|
|
889
|
+
uid=e1287 generic
|
|
890
|
+
uid=e1288 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
891
|
+
uid=e1292 img "View Jon Twigge’s graphic link"
|
|
892
|
+
uid=e1293 generic
|
|
893
|
+
uid=s112 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
894
|
+
uid=e1295 generic
|
|
895
|
+
uid=e1297 generic
|
|
896
|
+
uid=e1298 generic value="Jon Twigge"
|
|
897
|
+
uid=e1299 generic value="Jon Twigge"
|
|
898
|
+
uid=e1300 generic
|
|
899
|
+
uid=e1301 generic
|
|
900
|
+
uid=e1302 img
|
|
901
|
+
uid=e1303 img
|
|
902
|
+
uid=s113 StaticText "• 1st"
|
|
903
|
+
uid=e1305 generic value="Premium • 1st"
|
|
904
|
+
uid=e1306 generic
|
|
905
|
+
uid=e1307 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
906
|
+
uid=e1308 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
907
|
+
uid=e1309 generic
|
|
908
|
+
uid=e1310 generic
|
|
909
|
+
uid=s114 StaticText "1w •"
|
|
910
|
+
uid=e1313 img
|
|
911
|
+
uid=e1315 generic value="1 week ago • Visible to anyone on or off LinkedIn"
|
|
912
|
+
uid=e1318 button "Open control menu for post by Jon Twigge"
|
|
913
|
+
uid=e1319 img
|
|
914
|
+
uid=e1322 generic
|
|
915
|
+
uid=e1325 generic
|
|
916
|
+
uid=s115 StaticText "I have known and admired Steve and his work for many years. Younger generations especially are no longer served by old models of one career, saving for a pension steadily."
|
|
917
|
+
uid=s116 StaticText "The world changed in the last 20 years as more jobs for life disappeared to be replaced by more fluid, more independent ways of engaging with work."
|
|
918
|
+
uid=s117 StaticText "The financial world that Steve works tirelessly to change has not adapted to that reality yet, and what's worse, it does not want to."
|
|
919
|
+
uid=s118 StaticText "We are rapidly entering an even greater transformation of \"work\" as AI alters the structure of the world and will touch every sphere of life."
|
|
920
|
+
uid=s119 StaticText "The old question, that interestingly is not so some common in some parts of the world, What do you do? is going to become even more troublesome as our identities will be even less tied to particular job titles."
|
|
921
|
+
uid=s120 StaticText "We need to be asking the questions more like Steve is encouraging that I might say something like How do you show up in the world?"
|
|
922
|
+
uid=e1326 button "see more, visually reveals content which is already detected by screen readers"
|
|
923
|
+
uid=e1327 generic value="…more"
|
|
924
|
+
uid=e1328 article
|
|
925
|
+
uid=e1329 generic
|
|
926
|
+
uid=s121 unknown url="https://www.linkedin.com/pulse/wrong-question-why-financial-resilience-being-what-we-steve-conley-nqese?trackingId=ar9YXEPZv%2FErne5hxn55Zg%3D%3D"
|
|
927
|
+
uid=s122 unknown url="https://www.linkedin.com/pulse/wrong-question-why-financial-resilience-being-what-we-steve-conley-nqese?trackingId=ar9YXEPZv%2FErne5hxn55Zg%3D%3D"
|
|
928
|
+
uid=e1336 generic
|
|
929
|
+
uid=e1337 generic
|
|
930
|
+
uid=e1338 link "Asset Strategies, graphic." url="https://www.linkedin.com/newsletters/asset-strategies-6906623519439077377"
|
|
931
|
+
uid=e1340 img
|
|
932
|
+
uid=e1341 generic
|
|
933
|
+
uid=e1342 link "Asset Strategies" url="https://www.linkedin.com/newsletters/asset-strategies-6906623519439077377"
|
|
934
|
+
uid=e1345 generic
|
|
935
|
+
uid=e1346 generic value="Asset Strategies"
|
|
936
|
+
uid=e1347 generic value="Asset Strategies"
|
|
937
|
+
uid=e1348 button "Subscribe"
|
|
938
|
+
uid=e1349 img
|
|
939
|
+
uid=e1351 generic value="Subscribe"
|
|
940
|
+
uid=e1352 generic value="Subscribe to {:entityName}"
|
|
941
|
+
uid=e1353 generic
|
|
942
|
+
uid=e1355 generic value="The Wrong Question: Why Financial Resilience Is Being Misdiagnosed — and What We Should Measure Instead"
|
|
943
|
+
uid=e1356 generic value="Steve Conley"
|
|
944
|
+
uid=e1357 generic
|
|
945
|
+
uid=e1361 list
|
|
946
|
+
uid=e1362 listitem
|
|
947
|
+
uid=e1363 button "1 reaction"
|
|
948
|
+
uid=e1364 img "like"
|
|
949
|
+
uid=e1365 generic value="1"
|
|
950
|
+
uid=e1366 generic
|
|
951
|
+
uid=e1367 generic
|
|
952
|
+
uid=e1368 button "React Like"
|
|
953
|
+
uid=e1370 generic
|
|
954
|
+
uid=e1371 img
|
|
955
|
+
uid=e1373 generic value="Like"
|
|
956
|
+
uid=s123 button "Open reactions menu"
|
|
957
|
+
uid=e1375 img
|
|
958
|
+
uid=e1379 button "Comment"
|
|
959
|
+
uid=e1380 img
|
|
960
|
+
uid=e1382 generic value="Comment"
|
|
961
|
+
uid=e1385 button "Repost"
|
|
962
|
+
uid=e1386 img
|
|
963
|
+
uid=e1388 generic value="Repost"
|
|
964
|
+
uid=e1391 button "Send in a private message"
|
|
965
|
+
uid=e1392 img
|
|
966
|
+
uid=e1395 generic value="Send"
|
|
967
|
+
uid=e1396 listitem
|
|
968
|
+
uid=e1402 article
|
|
969
|
+
uid=e1404 generic
|
|
970
|
+
uid=e1405 heading "Feed post number 10" level="2"
|
|
971
|
+
uid=e1406 generic
|
|
972
|
+
uid=e1407 generic
|
|
973
|
+
uid=e1409 generic
|
|
974
|
+
uid=e1410 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
975
|
+
uid=e1414 img "View Jon Twigge’s graphic link"
|
|
976
|
+
uid=e1415 generic
|
|
977
|
+
uid=s124 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
978
|
+
uid=e1417 generic
|
|
979
|
+
uid=e1419 generic
|
|
980
|
+
uid=e1420 generic value="Jon Twigge"
|
|
981
|
+
uid=e1421 generic value="Jon Twigge"
|
|
982
|
+
uid=e1422 generic
|
|
983
|
+
uid=e1423 generic
|
|
984
|
+
uid=e1424 img
|
|
985
|
+
uid=e1425 img
|
|
986
|
+
uid=s125 StaticText "• 1st"
|
|
987
|
+
uid=e1427 generic value="Premium • 1st"
|
|
988
|
+
uid=e1428 generic
|
|
989
|
+
uid=e1429 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
990
|
+
uid=e1430 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
991
|
+
uid=e1431 generic
|
|
992
|
+
uid=e1432 generic
|
|
993
|
+
uid=s126 StaticText "1w •"
|
|
994
|
+
uid=e1435 img
|
|
995
|
+
uid=e1437 generic value="1 week ago • Visible to anyone on or off LinkedIn"
|
|
996
|
+
uid=e1440 button "Open control menu for post by Jon Twigge"
|
|
997
|
+
uid=e1441 img
|
|
998
|
+
uid=e1444 generic
|
|
999
|
+
uid=e1447 generic
|
|
1000
|
+
uid=s127 StaticText "There's an odd situation in psychometrics."
|
|
1001
|
+
uid=s128 StaticText "Decades of solid research have produced instruments that genuinely help people understand themselves — their personality structure, their strengths, how they process the world. The Big Five alone has thousands of studies behind it."
|
|
1002
|
+
uid=s129 StaticText "And almost nobody outside corporate training or clinical settings ever sees them."
|
|
1003
|
+
uid=s130 StaticText "Business psychologists and coaches have their own working toolkit — Jungian-derived typing (MBTI and its kin), DISC, strengths profilers. Genuinely useful in the room. But they're a narrow slice of what psychometrics can tell you, and they rarely travel beyond the workshop."
|
|
1004
|
+
uid=s131 StaticText "The validated research instruments are locked behind per-use licensing fees that make sense for an enterprise L&D budget and no sense for an individual, a consumer-focused coaching practice, or a curious person who wants to understand themselves better."
|
|
1005
|
+
uid=s132 StaticText "Meanwhile the consumer internet is flooded with quizzes built for engagement, not insight. Which TV character are you. Which Hogwarts house. Personality as horoscope."
|
|
1006
|
+
uid=s133 StaticText "People are hungry for self-knowledge. They're either paying a practitioner to interpret a narrow tool, or being fed junk for free."
|
|
1007
|
+
uid=s134 StaticText "This is the gap Px sits in."
|
|
1008
|
+
uid=s135 StaticText "We bridge that gap, from quick insights through to focused assessments and properly validated, open-source instruments. Anyone can take them — many are free. Coaches can send them to clients and see results directly for £10/month — no more asking people to take something separately and screenshot their results back to you."
|
|
1009
|
+
uid=s136 StaticText "If you've got a few minutes and fancy giving feedback on how it works, the archetypes glimpse is the quickest way in:"
|
|
1010
|
+
uid=e1448 link "https://lnkd.in/ea9TF3aM" url="https://lnkd.in/ea9TF3aM"
|
|
1011
|
+
uid=s137 StaticText "We're adding instruments steadily — strengths, emotional intelligence, sensory processing, financial awareness — building toward a fuller picture of what \"personology\" actually looks like when you take it seriously."
|
|
1012
|
+
uid=s138 StaticText "If you're a coach or practitioner who's felt this gap, I'd like to hear how you've been working around it."
|
|
1013
|
+
uid=e1449 link "hashtag psychometrics" url="https://www.linkedin.com/search/results/all/?keywords=%23psychometrics&origin=HASH_TAG_FROM_FEED"
|
|
1014
|
+
uid=e1450 generic value="hashtag"
|
|
1015
|
+
uid=e1451 generic value="#psychometrics"
|
|
1016
|
+
uid=e1452 link "hashtag coaching" url="https://www.linkedin.com/search/results/all/?keywords=%23coaching&origin=HASH_TAG_FROM_FEED"
|
|
1017
|
+
uid=e1453 generic value="hashtag"
|
|
1018
|
+
uid=e1454 generic value="#coaching"
|
|
1019
|
+
uid=e1455 link "hashtag assessment" url="https://www.linkedin.com/search/results/all/?keywords=%23assessment&origin=HASH_TAG_FROM_FEED"
|
|
1020
|
+
uid=e1456 generic value="hashtag"
|
|
1021
|
+
uid=e1457 generic value="#assessment"
|
|
1022
|
+
uid=e1458 button "see more, visually reveals content which is already detected by screen readers"
|
|
1023
|
+
uid=e1459 generic value="…more"
|
|
1024
|
+
uid=e1463 link "Web Link" url="https://app.potentialisation.com/try/69e10f746719b6a8cc887148"
|
|
1025
|
+
uid=e1466 generic
|
|
1026
|
+
uid=e1467 generic value="Web Link"
|
|
1027
|
+
uid=e1468 generic value="app.potentialisation.com"
|
|
1028
|
+
uid=e1469 generic
|
|
1029
|
+
uid=e1473 list
|
|
1030
|
+
uid=e1474 listitem
|
|
1031
|
+
uid=e1475 button "Jon Twigge and 6 others"
|
|
1032
|
+
uid=e1476 img "like"
|
|
1033
|
+
uid=e1477 img "love"
|
|
1034
|
+
uid=e1478 generic
|
|
1035
|
+
uid=e1479 generic value="7"
|
|
1036
|
+
uid=e1480 generic value="Jon Twigge and 6 others"
|
|
1037
|
+
uid=e1481 listitem
|
|
1038
|
+
uid=e1482 list
|
|
1039
|
+
uid=e1483 listitem
|
|
1040
|
+
uid=e1484 button "1 repost of Jon Twigge’s post"
|
|
1041
|
+
uid=e1485 generic value="1 repost"
|
|
1042
|
+
uid=e1486 generic
|
|
1043
|
+
uid=e1487 generic
|
|
1044
|
+
uid=e1488 button "React Like"
|
|
1045
|
+
uid=e1490 generic
|
|
1046
|
+
uid=e1491 img
|
|
1047
|
+
uid=e1493 generic value="Like"
|
|
1048
|
+
uid=s139 button "Open reactions menu"
|
|
1049
|
+
uid=e1495 img
|
|
1050
|
+
uid=e1499 button "Comment"
|
|
1051
|
+
uid=e1500 img
|
|
1052
|
+
uid=e1502 generic value="Comment"
|
|
1053
|
+
uid=e1505 button "Repost"
|
|
1054
|
+
uid=e1506 img
|
|
1055
|
+
uid=e1508 generic value="Repost"
|
|
1056
|
+
uid=e1511 button "Send in a private message"
|
|
1057
|
+
uid=e1512 img
|
|
1058
|
+
uid=e1515 generic value="Send"
|
|
1059
|
+
uid=e1516 listitem
|
|
1060
|
+
uid=e1522 article
|
|
1061
|
+
uid=e1524 generic
|
|
1062
|
+
uid=e1525 heading "Feed post number 11" level="2"
|
|
1063
|
+
uid=e1526 generic
|
|
1064
|
+
uid=e1527 generic
|
|
1065
|
+
uid=e1529 generic
|
|
1066
|
+
uid=e1530 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1067
|
+
uid=e1534 img "View Jon Twigge’s graphic link"
|
|
1068
|
+
uid=e1535 generic
|
|
1069
|
+
uid=s140 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1070
|
+
uid=e1537 generic
|
|
1071
|
+
uid=e1539 generic
|
|
1072
|
+
uid=e1540 generic value="Jon Twigge"
|
|
1073
|
+
uid=e1541 generic value="Jon Twigge"
|
|
1074
|
+
uid=e1542 generic
|
|
1075
|
+
uid=e1543 generic
|
|
1076
|
+
uid=e1544 img
|
|
1077
|
+
uid=e1545 img
|
|
1078
|
+
uid=s141 StaticText "• 1st"
|
|
1079
|
+
uid=e1547 generic value="Premium • 1st"
|
|
1080
|
+
uid=e1548 generic
|
|
1081
|
+
uid=e1549 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
1082
|
+
uid=e1550 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
1083
|
+
uid=e1551 generic
|
|
1084
|
+
uid=e1552 generic
|
|
1085
|
+
uid=s142 StaticText "1w •"
|
|
1086
|
+
uid=e1555 img
|
|
1087
|
+
uid=e1557 generic value="1 week ago • Visible to anyone on or off LinkedIn"
|
|
1088
|
+
uid=e1560 button "Open control menu for post by Jon Twigge"
|
|
1089
|
+
uid=e1561 img
|
|
1090
|
+
uid=e1567 generic value="With AI advancing so rapidly and the effects only just beginning, people are going to need to adapt both inside organisations and as individuals. For many people, if not most, the change will be challenging."
|
|
1091
|
+
uid=e1568 generic
|
|
1092
|
+
uid=s143 unknown url="https://community.theabp.org.uk/news/13148941"
|
|
1093
|
+
uid=e1575 link "The Need for Business Psychology in Supporting the Fourth Industrial Revolution" url="https://community.theabp.org.uk/news/13148941"
|
|
1094
|
+
uid=e1578 generic
|
|
1095
|
+
uid=e1580 generic value="The Need for Business Psychology in Supporting the Fourth Industrial Revolution"
|
|
1096
|
+
uid=e1581 generic value="community.theabp.org.uk"
|
|
1097
|
+
uid=e1582 generic
|
|
1098
|
+
uid=e1586 list
|
|
1099
|
+
uid=e1587 listitem
|
|
1100
|
+
uid=e1588 button "You and 5 others"
|
|
1101
|
+
uid=e1589 img "like"
|
|
1102
|
+
uid=e1590 generic
|
|
1103
|
+
uid=e1591 generic value="6"
|
|
1104
|
+
uid=e1592 generic value="You and 5 others"
|
|
1105
|
+
uid=e1593 generic
|
|
1106
|
+
uid=e1594 generic
|
|
1107
|
+
uid=e1595 button "Unreact Like" pressed
|
|
1108
|
+
uid=e1597 generic
|
|
1109
|
+
uid=e1598 img "like"
|
|
1110
|
+
uid=e1599 generic value="Like"
|
|
1111
|
+
uid=s144 button "Open reactions menu"
|
|
1112
|
+
uid=e1601 img
|
|
1113
|
+
uid=e1605 button "Comment"
|
|
1114
|
+
uid=e1606 img
|
|
1115
|
+
uid=e1608 generic value="Comment"
|
|
1116
|
+
uid=e1611 button "Repost"
|
|
1117
|
+
uid=e1612 img
|
|
1118
|
+
uid=e1614 generic value="Repost"
|
|
1119
|
+
uid=e1617 button "Send in a private message"
|
|
1120
|
+
uid=e1618 img
|
|
1121
|
+
uid=e1621 generic value="Send"
|
|
1122
|
+
uid=e1622 listitem
|
|
1123
|
+
uid=e1628 article
|
|
1124
|
+
uid=e1630 generic
|
|
1125
|
+
uid=e1631 heading "Feed post number 12" level="2"
|
|
1126
|
+
uid=e1632 generic
|
|
1127
|
+
uid=e1633 generic
|
|
1128
|
+
uid=e1635 generic
|
|
1129
|
+
uid=e1636 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1130
|
+
uid=e1640 img "View Jon Twigge’s graphic link"
|
|
1131
|
+
uid=e1641 generic
|
|
1132
|
+
uid=s145 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1133
|
+
uid=e1643 generic
|
|
1134
|
+
uid=e1645 generic
|
|
1135
|
+
uid=e1646 generic value="Jon Twigge"
|
|
1136
|
+
uid=e1647 generic value="Jon Twigge"
|
|
1137
|
+
uid=e1648 generic
|
|
1138
|
+
uid=e1649 generic
|
|
1139
|
+
uid=e1650 img
|
|
1140
|
+
uid=e1651 img
|
|
1141
|
+
uid=s146 StaticText "• 1st"
|
|
1142
|
+
uid=e1653 generic value="Premium • 1st"
|
|
1143
|
+
uid=e1654 generic
|
|
1144
|
+
uid=e1655 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
1145
|
+
uid=e1656 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
1146
|
+
uid=e1657 generic
|
|
1147
|
+
uid=e1658 generic
|
|
1148
|
+
uid=s147 StaticText "2w •"
|
|
1149
|
+
uid=e1661 img
|
|
1150
|
+
uid=e1663 generic value="2 weeks ago • Visible to anyone on or off LinkedIn"
|
|
1151
|
+
uid=e1666 button "Open control menu for post by Jon Twigge"
|
|
1152
|
+
uid=e1667 img
|
|
1153
|
+
uid=e1670 generic
|
|
1154
|
+
uid=e1673 generic
|
|
1155
|
+
uid=s148 StaticText "Everyone's talking about which jobs AI will replace."
|
|
1156
|
+
uid=s149 StaticText "Almost nobody's talking about what happens to the person in that job — not economically, but psychologically. When the thing you've built your identity around stops being needed, the crisis isn't about money. Not first. It's about meaning."
|
|
1157
|
+
uid=s150 StaticText "Here's what I keep coming back to: the people who navigate disruption well aren't always the ones with the best technical skills. They're the ones who know themselves well enough to adapt without losing the thread. They know what they're actually good at — not the job title version, the real version. They know how they respond to uncertainty. They know what matters to them underneath the role."
|
|
1158
|
+
uid=s151 StaticText "That kind of self-knowledge isn't a luxury. It's infrastructure."
|
|
1159
|
+
uid=s152 StaticText "And right now, almost nobody is building it deliberately."
|
|
1160
|
+
uid=s153 StaticText "We invest in upskilling, reskilling, career pivots. All useful. But rarely does anyone stop and say: before we retrain you, do you actually know what you're working with? What are your real cognitive strengths? How do you process emotion? What's your relationship with change?"
|
|
1161
|
+
uid=s154 StaticText "These aren't soft questions. They're the hard substrate that everything else sits on."
|
|
1162
|
+
uid=s155 StaticText "That's what Px is for. Not therapy. Not coaching. A starting point: assessments that measure your personality across multiple frameworks, validated where freely available — Big Five, HEXACO, strengths, emotional intelligence, sensory processing, wellbeing — and synthesise the results into something you can actually use. Serious tools that help you see the shape of your own psychology, clearly, before the world asks you to reinvent yourself."
|
|
1163
|
+
uid=e1674 link "hashtag AI" url="https://www.linkedin.com/search/results/all/?keywords=%23ai&origin=HASH_TAG_FROM_FEED"
|
|
1164
|
+
uid=e1675 generic value="hashtag"
|
|
1165
|
+
uid=e1676 generic value="#AI"
|
|
1166
|
+
uid=e1677 link "hashtag futureofwork" url="https://www.linkedin.com/search/results/all/?keywords=%23futureofwork&origin=HASH_TAG_FROM_FEED"
|
|
1167
|
+
uid=e1678 generic value="hashtag"
|
|
1168
|
+
uid=e1679 generic value="#futureofwork"
|
|
1169
|
+
uid=e1680 link "hashtag selfawareness" url="https://www.linkedin.com/search/results/all/?keywords=%23selfawareness&origin=HASH_TAG_FROM_FEED"
|
|
1170
|
+
uid=e1681 generic value="hashtag"
|
|
1171
|
+
uid=e1682 generic value="#selfawareness"
|
|
1172
|
+
uid=e1683 button "see more, visually reveals content which is already detected by screen readers"
|
|
1173
|
+
uid=e1684 generic value="…more"
|
|
1174
|
+
uid=e1685 generic
|
|
1175
|
+
uid=e1689 list
|
|
1176
|
+
uid=e1690 listitem
|
|
1177
|
+
uid=e1691 button "Jon Twigge and 11 others"
|
|
1178
|
+
uid=e1692 img "like"
|
|
1179
|
+
uid=e1693 img "love"
|
|
1180
|
+
uid=e1694 img "insightful"
|
|
1181
|
+
uid=e1695 generic
|
|
1182
|
+
uid=e1696 generic value="12"
|
|
1183
|
+
uid=e1697 generic value="Jon Twigge and 11 others"
|
|
1184
|
+
uid=e1698 listitem
|
|
1185
|
+
uid=e1699 list
|
|
1186
|
+
uid=e1700 listitem
|
|
1187
|
+
uid=e1701 button "3 reposts of Jon Twigge’s post"
|
|
1188
|
+
uid=e1702 generic value="3 reposts"
|
|
1189
|
+
uid=e1703 generic
|
|
1190
|
+
uid=e1704 generic
|
|
1191
|
+
uid=e1705 button "React Like"
|
|
1192
|
+
uid=e1707 generic
|
|
1193
|
+
uid=e1708 img
|
|
1194
|
+
uid=e1710 generic value="Like"
|
|
1195
|
+
uid=s156 button "Open reactions menu"
|
|
1196
|
+
uid=e1712 img
|
|
1197
|
+
uid=e1716 button "Comment"
|
|
1198
|
+
uid=e1717 img
|
|
1199
|
+
uid=e1719 generic value="Comment"
|
|
1200
|
+
uid=e1722 button "Repost"
|
|
1201
|
+
uid=e1723 img
|
|
1202
|
+
uid=e1725 generic value="Repost"
|
|
1203
|
+
uid=e1728 button "Send in a private message"
|
|
1204
|
+
uid=e1729 img
|
|
1205
|
+
uid=e1732 generic value="Send"
|
|
1206
|
+
uid=e1733 listitem
|
|
1207
|
+
uid=e1739 article
|
|
1208
|
+
uid=e1741 generic
|
|
1209
|
+
uid=e1742 heading "Feed post number 13" level="2"
|
|
1210
|
+
uid=e1743 generic
|
|
1211
|
+
uid=e1744 generic
|
|
1212
|
+
uid=e1746 generic
|
|
1213
|
+
uid=e1747 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1214
|
+
uid=e1751 img "View Jon Twigge’s graphic link"
|
|
1215
|
+
uid=e1752 generic
|
|
1216
|
+
uid=s157 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1217
|
+
uid=e1754 generic
|
|
1218
|
+
uid=e1756 generic
|
|
1219
|
+
uid=e1757 generic value="Jon Twigge"
|
|
1220
|
+
uid=e1758 generic value="Jon Twigge"
|
|
1221
|
+
uid=e1759 generic
|
|
1222
|
+
uid=e1760 generic
|
|
1223
|
+
uid=e1761 img
|
|
1224
|
+
uid=e1762 img
|
|
1225
|
+
uid=s158 StaticText "• 1st"
|
|
1226
|
+
uid=e1764 generic value="Premium • 1st"
|
|
1227
|
+
uid=e1765 generic
|
|
1228
|
+
uid=e1766 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
1229
|
+
uid=e1767 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
1230
|
+
uid=e1768 generic
|
|
1231
|
+
uid=e1769 generic
|
|
1232
|
+
uid=s159 StaticText "2w •"
|
|
1233
|
+
uid=e1772 img
|
|
1234
|
+
uid=e1774 generic value="2 weeks ago • Visible to anyone on or off LinkedIn"
|
|
1235
|
+
uid=e1777 button "Open control menu for post by Jon Twigge"
|
|
1236
|
+
uid=e1778 img
|
|
1237
|
+
uid=e1781 generic
|
|
1238
|
+
uid=e1784 generic
|
|
1239
|
+
uid=s160 StaticText "Really sad to see how deep the abuse by the financial system goes. Steve says this is structural, the harm gets hidden away and denied. But good to see that it is getting some attention now."
|
|
1240
|
+
uid=s161 StaticText "Underneath the system is a lot of people each playing their part, looking the other way, staying safe for their job and their salary. It is going to take a lot of work to change the system but it needs to be done."
|
|
1241
|
+
uid=e1785 button "see more, visually reveals content which is already detected by screen readers"
|
|
1242
|
+
uid=e1786 generic value="…more"
|
|
1243
|
+
uid=e1787 generic
|
|
1244
|
+
uid=e1789 generic
|
|
1245
|
+
uid=e1790 link "View Steve Conley’s graphic link" url="https://www.linkedin.com/in/steveconley-totalwealthplanner?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAANWyTEBV-1TvfV--1JrfgtKV5-K6fmqJg8"
|
|
1246
|
+
uid=e1794 img "View Steve Conley’s graphic link"
|
|
1247
|
+
uid=e1795 generic
|
|
1248
|
+
uid=s162 unknown url="https://www.linkedin.com/in/steveconley-totalwealthplanner?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAANWyTEBV-1TvfV--1JrfgtKV5-K6fmqJg8"
|
|
1249
|
+
uid=e1797 generic
|
|
1250
|
+
uid=e1799 generic
|
|
1251
|
+
uid=e1800 generic value="Steve Conley"
|
|
1252
|
+
uid=e1801 generic value="Steve Conley"
|
|
1253
|
+
uid=e1802 generic
|
|
1254
|
+
uid=e1803 generic
|
|
1255
|
+
uid=e1804 img
|
|
1256
|
+
uid=e1805 img
|
|
1257
|
+
uid=s163 StaticText "• 1st"
|
|
1258
|
+
uid=e1807 generic value="Premium • 1st"
|
|
1259
|
+
uid=e1808 generic
|
|
1260
|
+
uid=e1809 generic value="Helping Financial Professionals Become Total Wealth Planners in the Age of AI (Beyond Product-Led Advice) | Founder, Academy of Life Planning"
|
|
1261
|
+
uid=e1810 generic value="Helping Financial Professionals Become Total Wealth Planners in the Age of AI (Beyond Product-Led Advice) | Founder, Academy of Life Planning"
|
|
1262
|
+
uid=e1811 generic
|
|
1263
|
+
uid=e1812 generic
|
|
1264
|
+
uid=s164 StaticText "2w • Edited •"
|
|
1265
|
+
uid=e1815 img
|
|
1266
|
+
uid=e1817 generic value="2 weeks ago • Edited • Visible to anyone on or off LinkedIn"
|
|
1267
|
+
uid=e1819 link url="/feed/update/urn:li:activity:7450146348097495040/"
|
|
1268
|
+
uid=e1820 generic
|
|
1269
|
+
uid=e1823 generic
|
|
1270
|
+
uid=s165 StaticText "Thousands of businesses didn’t fail."
|
|
1271
|
+
uid=s166 StaticText "They were designed to fail."
|
|
1272
|
+
uid=s167 StaticText "This week, Parliament debated something most people have never heard of:"
|
|
1273
|
+
uid=s168 StaticText "Hidden credit liabilities."
|
|
1274
|
+
uid=s169 StaticText "Sounds technical."
|
|
1275
|
+
uid=s170 StaticText "It isn’t."
|
|
1276
|
+
uid=s171 StaticText "Here’s what actually happened:"
|
|
1277
|
+
uid=s172 StaticText "• A business takes a loan"
|
|
1278
|
+
uid=s173 StaticText "• The bank adds a “protection product” (a derivative)"
|
|
1279
|
+
uid=s174 StaticText "• Buried inside is a hidden debt"
|
|
1280
|
+
uid=s175 StaticText "• That debt weakens the business from day one"
|
|
1281
|
+
uid=s176 StaticText "• Covenants get breached"
|
|
1282
|
+
uid=s177 StaticText "• The business gets pushed into restructuring… or worse"
|
|
1283
|
+
uid=s178 StaticText "Let that land."
|
|
1284
|
+
uid=s179 StaticText "You could be “in breach” the moment you sign."
|
|
1285
|
+
uid=s180 StaticText "Not because you failed."
|
|
1286
|
+
uid=s181 StaticText "Because the structure was built that way."
|
|
1287
|
+
uid=s182 StaticText "MPs shared case after case:"
|
|
1288
|
+
uid=s183 StaticText "• Profitable businesses forced into insolvency"
|
|
1289
|
+
uid=s184 StaticText "• Families losing homes"
|
|
1290
|
+
uid=s185 StaticText "• Entrepreneurs blaming themselves for “failure”"
|
|
1291
|
+
uid=s186 StaticText "• Lives destroyed"
|
|
1292
|
+
uid=s187 StaticText "And the most uncomfortable question of all:"
|
|
1293
|
+
uid=s188 StaticText "Where was the regulator?"
|
|
1294
|
+
uid=s189 StaticText "The response?"
|
|
1295
|
+
uid=s190 StaticText "£2bn paid in redress"
|
|
1296
|
+
uid=s191 StaticText "Old rules"
|
|
1297
|
+
uid=s192 StaticText "Legal constraints"
|
|
1298
|
+
uid=s193 StaticText "System improved since"
|
|
1299
|
+
uid=s194 StaticText "And no public inquiry."
|
|
1300
|
+
uid=s195 StaticText "But here’s the deeper issue 👇"
|
|
1301
|
+
uid=s196 StaticText "This isn’t about one scandal."
|
|
1302
|
+
uid=s197 StaticText "It’s about how the system works."
|
|
1303
|
+
uid=s198 StaticText "When:"
|
|
1304
|
+
uid=s199 StaticText "• Complexity hides risk"
|
|
1305
|
+
uid=s200 StaticText "• Incentives reward opacity"
|
|
1306
|
+
uid=s201 StaticText "• Clients rely on intermediaries"
|
|
1307
|
+
uid=s202 StaticText "• And understanding is optional"
|
|
1308
|
+
uid=s203 StaticText "👉 Harm isn’t accidental."
|
|
1309
|
+
uid=s204 StaticText "It’s structural."
|
|
1310
|
+
uid=s205 StaticText "This is exactly why we built the Academy of Life Planning."
|
|
1311
|
+
uid=s206 StaticText "Not to criticise the system."
|
|
1312
|
+
uid=s207 StaticText "But to move beyond it."
|
|
1313
|
+
uid=s208 StaticText "Because the real shift isn’t:"
|
|
1314
|
+
uid=s209 StaticText "Advice → Better advice"
|
|
1315
|
+
uid=s210 StaticText "It’s:"
|
|
1316
|
+
uid=s211 StaticText "Advice → Agency"
|
|
1317
|
+
uid=s212 StaticText "In a world where AI can now read contracts in seconds…"
|
|
1318
|
+
uid=s213 StaticText "Why would anyone accept:"
|
|
1319
|
+
uid=s214 StaticText "• Hidden liabilities"
|
|
1320
|
+
uid=s215 StaticText "• One-sided structures"
|
|
1321
|
+
uid=s216 StaticText "• Or “just trust us” planning"
|
|
1322
|
+
uid=s217 StaticText "The future isn’t about better products."
|
|
1323
|
+
uid=s218 StaticText "It’s about people who understand what they’re signing."
|
|
1324
|
+
uid=s219 StaticText "That’s the role of the Total Wealth Planner:"
|
|
1325
|
+
uid=s220 StaticText "Not to take control."
|
|
1326
|
+
uid=s221 StaticText "But to help clients keep it."
|
|
1327
|
+
uid=s222 StaticText "The question isn’t:"
|
|
1328
|
+
uid=s223 StaticText "“Was this compliant?”"
|
|
1329
|
+
uid=s224 StaticText "It’s:"
|
|
1330
|
+
uid=s225 StaticText "“Did the client truly understand what they were agreeing to?”"
|
|
1331
|
+
uid=s226 StaticText "And if the answer is no…"
|
|
1332
|
+
uid=s227 StaticText "We don’t have a compliance issue."
|
|
1333
|
+
uid=s228 StaticText "We have a system design problem."
|
|
1334
|
+
uid=s229 StaticText "Curious how others see this."
|
|
1335
|
+
uid=s230 StaticText "[Blog link in comments]"
|
|
1336
|
+
uid=e1824 link "hashtag FinancialServices" url="https://www.linkedin.com/search/results/all/?keywords=%23financialservices&origin=HASH_TAG_FROM_FEED"
|
|
1337
|
+
uid=e1825 generic value="hashtag"
|
|
1338
|
+
uid=e1826 generic value="#FinancialServices"
|
|
1339
|
+
uid=e1827 link "hashtag FinancialPlanning" url="https://www.linkedin.com/search/results/all/?keywords=%23financialplanning&origin=HASH_TAG_FROM_FEED"
|
|
1340
|
+
uid=e1828 generic value="hashtag"
|
|
1341
|
+
uid=e1829 generic value="#FinancialPlanning"
|
|
1342
|
+
uid=e1830 link "hashtag SMEs" url="https://www.linkedin.com/search/results/all/?keywords=%23smes&origin=HASH_TAG_FROM_FEED"
|
|
1343
|
+
uid=e1831 generic value="hashtag"
|
|
1344
|
+
uid=e1832 generic value="#SMEs"
|
|
1345
|
+
uid=e1833 link "hashtag ConsumerProtection" url="https://www.linkedin.com/search/results/all/?keywords=%23consumerprotection&origin=HASH_TAG_FROM_FEED"
|
|
1346
|
+
uid=e1834 generic value="hashtag"
|
|
1347
|
+
uid=e1835 generic value="#ConsumerProtection"
|
|
1348
|
+
uid=e1836 link "hashtag FinancialRegulation" url="https://www.linkedin.com/search/results/all/?keywords=%23financialregulation&origin=HASH_TAG_FROM_FEED"
|
|
1349
|
+
uid=e1837 generic value="hashtag"
|
|
1350
|
+
uid=e1838 generic value="#FinancialRegulation"
|
|
1351
|
+
uid=e1839 link "hashtag FinancialEducation" url="https://www.linkedin.com/search/results/all/?keywords=%23financialeducation&origin=HASH_TAG_FROM_FEED"
|
|
1352
|
+
uid=e1840 generic value="hashtag"
|
|
1353
|
+
uid=e1841 generic value="#FinancialEducation"
|
|
1354
|
+
uid=e1842 link "hashtag HiddenFees" url="https://www.linkedin.com/search/results/all/?keywords=%23hiddenfees&origin=HASH_TAG_FROM_FEED"
|
|
1355
|
+
uid=e1843 generic value="hashtag"
|
|
1356
|
+
uid=e1844 generic value="#HiddenFees"
|
|
1357
|
+
uid=e1845 link "hashtag HumanAgency" url="https://www.linkedin.com/search/results/all/?keywords=%23humanagency&origin=HASH_TAG_FROM_FEED"
|
|
1358
|
+
uid=e1846 generic value="hashtag"
|
|
1359
|
+
uid=e1847 generic value="#HumanAgency"
|
|
1360
|
+
uid=e1849 link "Artur Nadolny" url="/in/artur-nadolny-63a86aa3/"
|
|
1361
|
+
uid=e1851 link "John Galajsza" url="/in/john-galajsza-4b356924/"
|
|
1362
|
+
uid=e1852 button "see more, visually reveals content which is already detected by screen readers"
|
|
1363
|
+
uid=e1853 generic value="…more"
|
|
1364
|
+
uid=e1855 generic
|
|
1365
|
+
uid=e1857 button "Activate to view larger image, No alternative text description for this image"
|
|
1366
|
+
uid=e1858 generic value="Activate to view larger image,"
|
|
1367
|
+
uid=e1861 img "No alternative text description for this image"
|
|
1368
|
+
uid=e1862 generic value="Activate to view larger image,"
|
|
1369
|
+
uid=e1863 generic
|
|
1370
|
+
uid=e1867 list
|
|
1371
|
+
uid=e1868 listitem
|
|
1372
|
+
uid=e1869 button "Jon Twigge and 2 others"
|
|
1373
|
+
uid=e1870 img "like"
|
|
1374
|
+
uid=e1871 generic
|
|
1375
|
+
uid=e1872 generic value="3"
|
|
1376
|
+
uid=e1873 generic value="Jon Twigge and 2 others"
|
|
1377
|
+
uid=e1874 listitem
|
|
1378
|
+
uid=e1875 list
|
|
1379
|
+
uid=e1876 listitem
|
|
1380
|
+
uid=e1877 button "3 comments on Jon Twigge’s post"
|
|
1381
|
+
uid=e1878 generic value="3 comments"
|
|
1382
|
+
uid=e1879 generic
|
|
1383
|
+
uid=e1880 generic
|
|
1384
|
+
uid=e1881 button "React Like"
|
|
1385
|
+
uid=e1883 generic
|
|
1386
|
+
uid=e1884 img
|
|
1387
|
+
uid=e1886 generic value="Like"
|
|
1388
|
+
uid=s231 button "Open reactions menu"
|
|
1389
|
+
uid=e1888 img
|
|
1390
|
+
uid=e1892 button "Comment"
|
|
1391
|
+
uid=e1893 img
|
|
1392
|
+
uid=e1895 generic value="Comment"
|
|
1393
|
+
uid=e1898 button "Repost"
|
|
1394
|
+
uid=e1899 img
|
|
1395
|
+
uid=e1901 generic value="Repost"
|
|
1396
|
+
uid=e1904 button "Send in a private message"
|
|
1397
|
+
uid=e1905 img
|
|
1398
|
+
uid=e1908 generic value="Send"
|
|
1399
|
+
uid=e1909 listitem
|
|
1400
|
+
uid=e1915 article
|
|
1401
|
+
uid=e1917 generic
|
|
1402
|
+
uid=e1918 heading "Feed post number 14" level="2"
|
|
1403
|
+
uid=e1919 generic
|
|
1404
|
+
uid=e1920 generic
|
|
1405
|
+
uid=e1922 generic
|
|
1406
|
+
uid=e1923 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1407
|
+
uid=e1927 img "View Jon Twigge’s graphic link"
|
|
1408
|
+
uid=e1928 generic
|
|
1409
|
+
uid=s232 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1410
|
+
uid=e1930 generic
|
|
1411
|
+
uid=e1932 generic
|
|
1412
|
+
uid=e1933 generic value="Jon Twigge"
|
|
1413
|
+
uid=e1934 generic value="Jon Twigge"
|
|
1414
|
+
uid=e1935 generic
|
|
1415
|
+
uid=e1936 generic
|
|
1416
|
+
uid=e1937 img
|
|
1417
|
+
uid=e1938 img
|
|
1418
|
+
uid=s233 StaticText "• 1st"
|
|
1419
|
+
uid=e1940 generic value="Premium • 1st"
|
|
1420
|
+
uid=e1941 generic
|
|
1421
|
+
uid=e1942 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
1422
|
+
uid=e1943 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
1423
|
+
uid=e1944 generic
|
|
1424
|
+
uid=e1945 generic
|
|
1425
|
+
uid=s234 StaticText "2w •"
|
|
1426
|
+
uid=e1948 img
|
|
1427
|
+
uid=e1950 generic value="2 weeks ago • Visible to anyone on or off LinkedIn"
|
|
1428
|
+
uid=e1953 button "Open control menu for post by Jon Twigge"
|
|
1429
|
+
uid=e1954 img
|
|
1430
|
+
uid=e1960 generic
|
|
1431
|
+
uid=s235 StaticText "Cognition crisis."
|
|
1432
|
+
uid=s236 StaticText "Endless screen time is not good for us."
|
|
1433
|
+
uid=e1961 generic
|
|
1434
|
+
uid=e1962 generic
|
|
1435
|
+
uid=e1963 generic
|
|
1436
|
+
uid=e1964 link "View Jonathan Haidt’s graphic link" url="https://www.linkedin.com/in/jonathan-haidt-2a594666?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAA4Feh0B_TEmN1JYuhyV63jCtWMadVsT0RE"
|
|
1437
|
+
uid=e1968 img "View Jonathan Haidt’s graphic link"
|
|
1438
|
+
uid=e1969 generic
|
|
1439
|
+
uid=s237 unknown url="https://www.linkedin.com/in/jonathan-haidt-2a594666?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAA4Feh0B_TEmN1JYuhyV63jCtWMadVsT0RE"
|
|
1440
|
+
uid=e1971 generic
|
|
1441
|
+
uid=e1973 generic
|
|
1442
|
+
uid=e1974 generic value="Jonathan Haidt"
|
|
1443
|
+
uid=e1975 generic value="Jonathan Haidt"
|
|
1444
|
+
uid=e1976 generic
|
|
1445
|
+
uid=e1977 generic
|
|
1446
|
+
uid=e1979 img
|
|
1447
|
+
uid=s238 StaticText "• 3rd+"
|
|
1448
|
+
uid=e1981 generic value="Influencer • 3rd+"
|
|
1449
|
+
uid=e1982 generic
|
|
1450
|
+
uid=e1983 generic value="Professor, NYU Stern School of Business, author of instant #1 NYT bestseller “The Anxious Generation,” “The Coddling of the American Mind,” “The Righteous Mind,” & “Happiness Hypothesis.” Latest research: AfterBabel.com"
|
|
1451
|
+
uid=e1984 generic value="Professor, NYU Stern School of Business, author of instant #1 NYT bestseller “The Anxious Generation,” “The Coddling of the American Mind,” “The Righteous Mind,” & “Happiness Hypothesis.” Latest research: AfterBabel.com"
|
|
1452
|
+
uid=e1985 generic
|
|
1453
|
+
uid=e1986 generic
|
|
1454
|
+
uid=s239 StaticText "1mo •"
|
|
1455
|
+
uid=e1989 img
|
|
1456
|
+
uid=e1991 generic value="1 month ago • Visible to anyone on or off LinkedIn"
|
|
1457
|
+
uid=e1992 button "Follow Jonathan Haidt"
|
|
1458
|
+
uid=e1993 img
|
|
1459
|
+
uid=e1995 generic value="Follow"
|
|
1460
|
+
uid=s240 unknown url="/feed/update/urn:li:activity:7445187105086976000/"
|
|
1461
|
+
uid=e1998 generic
|
|
1462
|
+
uid=e2001 generic
|
|
1463
|
+
uid=s241 StaticText "A new essay by Cal Newport, author of the bestselling book \"Deep Work,\" in"
|
|
1464
|
+
uid=e2002 link "The New York Times" url="https://www.linkedin.com/company/the-new-york-times/"
|
|
1465
|
+
uid=e2004 generic value="The New York Times"
|
|
1466
|
+
uid=s242 StaticText ". He calls for collective action to counteract the adverse effects of screens."
|
|
1467
|
+
uid=s243 StaticText "\"Deep Work\" made the case for long stretches of uninterrupted, focused work time, for hours at a time. Now, Cal says in this essay, \"In 2016 my main concern was helping people find enough free time for deep work. Today I think we’re rapidly losing the ability to think deeply at all, regardless of how much space we can find in our schedules for these efforts.\""
|
|
1468
|
+
uid=s244 StaticText "How to overcome this \"cognition crisis\"? Cal proposes collective action — we need to treat screen addiction and endless distractions like we treat overprocessed food: as little as possible."
|
|
1469
|
+
uid=s245 StaticText "Link in comments."
|
|
1470
|
+
uid=e2005 button "see more, visually reveals content which is already detected by screen readers"
|
|
1471
|
+
uid=e2006 generic value="…more"
|
|
1472
|
+
uid=e2008 generic
|
|
1473
|
+
uid=e2009 alert value="Your document has finished loading"
|
|
1474
|
+
uid=e2010 iframe
|
|
1475
|
+
uid=f133e4 main
|
|
1476
|
+
uid=f133e8 generic
|
|
1477
|
+
uid=f133e9 generic value="Cal Newport \"cognition crisis\""
|
|
1478
|
+
uid=f133e10 generic value="•"
|
|
1479
|
+
uid=f133e11 generic value="10 pages"
|
|
1480
|
+
uid=f133e14 list
|
|
1481
|
+
uid=f133e15 listitem
|
|
1482
|
+
uid=f133e16 listitem
|
|
1483
|
+
uid=f133e17 listitem
|
|
1484
|
+
uid=f133e18 listitem
|
|
1485
|
+
uid=f133e19 listitem
|
|
1486
|
+
uid=f133e20 listitem
|
|
1487
|
+
uid=f133e21 listitem
|
|
1488
|
+
uid=f133e22 listitem
|
|
1489
|
+
uid=f133e23 listitem
|
|
1490
|
+
uid=f133e24 listitem
|
|
1491
|
+
uid=f133e26 button "Go to next page of document"
|
|
1492
|
+
uid=f133e28 img
|
|
1493
|
+
uid=f133e30 generic value="Go to next page of document"
|
|
1494
|
+
uid=f133e33 img
|
|
1495
|
+
uid=f133e37 generic
|
|
1496
|
+
uid=f133e39 generic
|
|
1497
|
+
uid=f133e40 generic
|
|
1498
|
+
uid=f133e41 generic value="Current page"
|
|
1499
|
+
uid=f133e42 generic value="1"
|
|
1500
|
+
uid=s246 StaticText "/"
|
|
1501
|
+
uid=f133e43 generic
|
|
1502
|
+
uid=f133e44 generic value="Total pages"
|
|
1503
|
+
uid=s247 StaticText "10"
|
|
1504
|
+
uid=f133e46 progressbar "Progress bar Slide 1/10"
|
|
1505
|
+
uid=f133e51 button "Enter full screen. An accessible version of the document is available in full screen mode."
|
|
1506
|
+
uid=f133e53 img
|
|
1507
|
+
uid=f133e55 generic value="Enter full screen. An accessible version of the document is available in full screen mode."
|
|
1508
|
+
uid=e2011 generic
|
|
1509
|
+
uid=e2015 list
|
|
1510
|
+
uid=e2016 listitem
|
|
1511
|
+
uid=e2017 button "Jon Twigge and 1 other"
|
|
1512
|
+
uid=e2018 img "like"
|
|
1513
|
+
uid=e2019 generic
|
|
1514
|
+
uid=e2020 generic value="2"
|
|
1515
|
+
uid=e2021 generic value="Jon Twigge and 1 other"
|
|
1516
|
+
uid=e2022 generic
|
|
1517
|
+
uid=e2023 generic
|
|
1518
|
+
uid=e2024 button "React Like"
|
|
1519
|
+
uid=e2026 generic
|
|
1520
|
+
uid=e2027 img
|
|
1521
|
+
uid=e2029 generic value="Like"
|
|
1522
|
+
uid=s248 button "Open reactions menu"
|
|
1523
|
+
uid=e2031 img
|
|
1524
|
+
uid=e2035 button "Comment"
|
|
1525
|
+
uid=e2036 img
|
|
1526
|
+
uid=e2038 generic value="Comment"
|
|
1527
|
+
uid=e2041 button "Repost"
|
|
1528
|
+
uid=e2042 img
|
|
1529
|
+
uid=e2044 generic value="Repost"
|
|
1530
|
+
uid=e2047 button "Send in a private message"
|
|
1531
|
+
uid=e2048 img
|
|
1532
|
+
uid=e2051 generic value="Send"
|
|
1533
|
+
uid=e2052 listitem
|
|
1534
|
+
uid=e2058 article
|
|
1535
|
+
uid=e2060 generic
|
|
1536
|
+
uid=e2061 heading "Feed post number 15" level="2"
|
|
1537
|
+
uid=e2062 generic
|
|
1538
|
+
uid=e2063 generic
|
|
1539
|
+
uid=e2065 generic
|
|
1540
|
+
uid=e2066 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1541
|
+
uid=e2070 img "View Jon Twigge’s graphic link"
|
|
1542
|
+
uid=e2071 generic
|
|
1543
|
+
uid=s249 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1544
|
+
uid=e2073 generic
|
|
1545
|
+
uid=e2075 generic
|
|
1546
|
+
uid=e2076 generic value="Jon Twigge"
|
|
1547
|
+
uid=e2077 generic value="Jon Twigge"
|
|
1548
|
+
uid=e2078 generic
|
|
1549
|
+
uid=e2079 generic
|
|
1550
|
+
uid=e2080 img
|
|
1551
|
+
uid=e2081 img
|
|
1552
|
+
uid=s250 StaticText "• 1st"
|
|
1553
|
+
uid=e2083 generic value="Premium • 1st"
|
|
1554
|
+
uid=e2084 generic
|
|
1555
|
+
uid=e2085 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
1556
|
+
uid=e2086 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
1557
|
+
uid=e2087 generic
|
|
1558
|
+
uid=e2088 generic
|
|
1559
|
+
uid=s251 StaticText "2w •"
|
|
1560
|
+
uid=e2091 img
|
|
1561
|
+
uid=e2093 generic value="2 weeks ago • Visible to anyone on or off LinkedIn"
|
|
1562
|
+
uid=e2096 button "Open control menu for post by Jon Twigge"
|
|
1563
|
+
uid=e2097 img
|
|
1564
|
+
uid=e2100 generic
|
|
1565
|
+
uid=e2103 generic
|
|
1566
|
+
uid=s252 StaticText "I've been building something and this is the first time I've written properly about why."
|
|
1567
|
+
uid=s253 StaticText "Short version: the science of self-knowledge is extraordinary. The access model is broken. AI changes the stakes."
|
|
1568
|
+
uid=e2104 button "see more, visually reveals content which is already detected by screen readers"
|
|
1569
|
+
uid=e2105 generic value="…more"
|
|
1570
|
+
uid=e2106 article
|
|
1571
|
+
uid=e2107 generic
|
|
1572
|
+
uid=s254 unknown url="https://www.linkedin.com/pulse/why-im-building-free-psychometric-platform-age-ai-jon-twigge-eagme?trackingId=J%2FJKeZ1uNvvDgfMS2xZkTg%3D%3D"
|
|
1573
|
+
uid=s255 unknown url="https://www.linkedin.com/pulse/why-im-building-free-psychometric-platform-age-ai-jon-twigge-eagme?trackingId=J%2FJKeZ1uNvvDgfMS2xZkTg%3D%3D"
|
|
1574
|
+
uid=e2115 generic
|
|
1575
|
+
uid=e2117 generic value="Why I'm building a free psychometric platform in the age of AI"
|
|
1576
|
+
uid=e2118 generic value="Jon Twigge"
|
|
1577
|
+
uid=e2119 generic
|
|
1578
|
+
uid=e2123 list
|
|
1579
|
+
uid=e2124 listitem
|
|
1580
|
+
uid=e2125 button "Jon Twigge and 15 others"
|
|
1581
|
+
uid=e2126 img "like"
|
|
1582
|
+
uid=e2127 img "support"
|
|
1583
|
+
uid=e2128 generic
|
|
1584
|
+
uid=e2129 generic value="16"
|
|
1585
|
+
uid=e2130 generic value="Jon Twigge and 15 others"
|
|
1586
|
+
uid=e2131 listitem
|
|
1587
|
+
uid=e2132 list
|
|
1588
|
+
uid=e2133 listitem
|
|
1589
|
+
uid=e2134 button "2 comments on Jon Twigge’s post"
|
|
1590
|
+
uid=e2135 generic value="2 comments"
|
|
1591
|
+
uid=s256 StaticText "·"
|
|
1592
|
+
uid=e2136 listitem
|
|
1593
|
+
uid=e2137 button "1 repost of Jon Twigge’s post"
|
|
1594
|
+
uid=e2138 generic value="1 repost"
|
|
1595
|
+
uid=e2139 generic
|
|
1596
|
+
uid=e2140 generic
|
|
1597
|
+
uid=e2141 button "React Like"
|
|
1598
|
+
uid=e2143 generic
|
|
1599
|
+
uid=e2144 img
|
|
1600
|
+
uid=e2146 generic value="Like"
|
|
1601
|
+
uid=s257 button "Open reactions menu"
|
|
1602
|
+
uid=e2148 img
|
|
1603
|
+
uid=e2152 button "Comment"
|
|
1604
|
+
uid=e2153 img
|
|
1605
|
+
uid=e2155 generic value="Comment"
|
|
1606
|
+
uid=e2158 button "Repost"
|
|
1607
|
+
uid=e2159 img
|
|
1608
|
+
uid=e2161 generic value="Repost"
|
|
1609
|
+
uid=e2164 button "Send in a private message"
|
|
1610
|
+
uid=e2165 img
|
|
1611
|
+
uid=e2168 generic value="Send"
|
|
1612
|
+
uid=e2169 listitem
|
|
1613
|
+
uid=e2175 article
|
|
1614
|
+
uid=e2177 generic
|
|
1615
|
+
uid=e2178 heading "Feed post number 16" level="2"
|
|
1616
|
+
uid=e2179 generic
|
|
1617
|
+
uid=e2180 generic
|
|
1618
|
+
uid=e2182 generic
|
|
1619
|
+
uid=e2183 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1620
|
+
uid=e2187 img "View Jon Twigge’s graphic link"
|
|
1621
|
+
uid=e2188 generic
|
|
1622
|
+
uid=s258 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1623
|
+
uid=e2190 generic
|
|
1624
|
+
uid=e2192 generic
|
|
1625
|
+
uid=e2193 generic value="Jon Twigge"
|
|
1626
|
+
uid=e2194 generic value="Jon Twigge"
|
|
1627
|
+
uid=e2195 generic
|
|
1628
|
+
uid=e2196 generic
|
|
1629
|
+
uid=e2197 img
|
|
1630
|
+
uid=e2198 img
|
|
1631
|
+
uid=s259 StaticText "• 1st"
|
|
1632
|
+
uid=e2200 generic value="Premium • 1st"
|
|
1633
|
+
uid=e2201 generic
|
|
1634
|
+
uid=e2202 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
1635
|
+
uid=e2203 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
1636
|
+
uid=e2204 generic
|
|
1637
|
+
uid=e2205 generic
|
|
1638
|
+
uid=s260 StaticText "3w •"
|
|
1639
|
+
uid=e2208 img
|
|
1640
|
+
uid=e2210 generic value="3 weeks ago • Visible to anyone on or off LinkedIn"
|
|
1641
|
+
uid=e2213 button "Open control menu for post by Jon Twigge"
|
|
1642
|
+
uid=e2214 img
|
|
1643
|
+
uid=e2217 generic
|
|
1644
|
+
uid=e2220 generic
|
|
1645
|
+
uid=s261 StaticText "It feels like AI stress in the system is building. Fortune report that 44% of Gen Z workers are actively sabotaging their company's AI rollout. Not just resisting — sabotaging. Deliberately doing bad work with AI to discredit it."
|
|
1646
|
+
uid=e2221 link "https://lnkd.in/eYG8Qb-j" url="https://lnkd.in/eYG8Qb-j"
|
|
1647
|
+
uid=s262 StaticText "The kicker? The people resisting are three times less likely to get promoted than the ones who leaned in. The sabotage is accelerating exactly the outcome they're afraid of."
|
|
1648
|
+
uid=s263 StaticText "They named it FOBO — fear of becoming obsolete. But I think that undersells what's actually happening. This isn't really about a tool. It's about identity. When your sense of professional worth is built on skills that are suddenly being automated, the threat isn't simply economic — it's existential."
|
|
1649
|
+
uid=s264 StaticText "Anyone familiar with"
|
|
1650
|
+
uid=e2223 link "John Fisher" url="/in/c2dlimited/"
|
|
1651
|
+
uid=s265 StaticText "'s change curve will recognise the pattern. Shock, denial, frustration, resistance. You can't skip those stages. And organisations that roll out AI expecting instant adoption are finding out what happens when you try."
|
|
1652
|
+
uid=s266 StaticText "Some people resist change because they're cautious. Some because they're principled. And some because their entire meaning structure is under threat and they don't have the language for it yet."
|
|
1653
|
+
uid=e2224 link "hashtag AI" url="https://www.linkedin.com/search/results/all/?keywords=%23ai&origin=HASH_TAG_FROM_FEED"
|
|
1654
|
+
uid=e2225 generic value="hashtag"
|
|
1655
|
+
uid=e2226 generic value="#AI"
|
|
1656
|
+
uid=e2227 link "hashtag futureofwork" url="https://www.linkedin.com/search/results/all/?keywords=%23futureofwork&origin=HASH_TAG_FROM_FEED"
|
|
1657
|
+
uid=e2228 generic value="hashtag"
|
|
1658
|
+
uid=e2229 generic value="#futureofwork"
|
|
1659
|
+
uid=e2230 link "hashtag changecurve" url="https://www.linkedin.com/search/results/all/?keywords=%23changecurve&origin=HASH_TAG_FROM_FEED"
|
|
1660
|
+
uid=e2231 generic value="hashtag"
|
|
1661
|
+
uid=e2232 generic value="#changecurve"
|
|
1662
|
+
uid=e2233 link "hashtag psychology" url="https://www.linkedin.com/search/results/all/?keywords=%23psychology&origin=HASH_TAG_FROM_FEED"
|
|
1663
|
+
uid=e2234 generic value="hashtag"
|
|
1664
|
+
uid=e2235 generic value="#psychology"
|
|
1665
|
+
uid=e2236 link "hashtag selfawareness" url="https://www.linkedin.com/search/results/all/?keywords=%23selfawareness&origin=HASH_TAG_FROM_FEED"
|
|
1666
|
+
uid=e2237 generic value="hashtag"
|
|
1667
|
+
uid=e2238 generic value="#selfawareness"
|
|
1668
|
+
uid=e2239 button "see more, visually reveals content which is already detected by screen readers"
|
|
1669
|
+
uid=e2240 generic value="…more"
|
|
1670
|
+
uid=e2241 generic
|
|
1671
|
+
uid=s267 unknown url="https://fortune.com/2026/04/08/gen-z-workers-sabotage-ai-rollout-backlash/"
|
|
1672
|
+
uid=e2246 img "anxious worker"
|
|
1673
|
+
uid=e2249 link "Gen Z workers are so fearful AI will take their job they’re intentionally sabotaging their company’s AI rollout | Fortune" url="https://fortune.com/2026/04/08/gen-z-workers-sabotage-ai-rollout-backlash/"
|
|
1674
|
+
uid=e2252 generic
|
|
1675
|
+
uid=e2254 generic value="Gen Z workers are so fearful AI will take their job they’re intentionally sabotaging their company’s AI rollout | Fortune"
|
|
1676
|
+
uid=e2255 generic value="fortune.com"
|
|
1677
|
+
uid=e2256 generic
|
|
1678
|
+
uid=e2260 list
|
|
1679
|
+
uid=e2261 listitem
|
|
1680
|
+
uid=e2262 button "Jon Twigge and 9 others"
|
|
1681
|
+
uid=e2263 img "like"
|
|
1682
|
+
uid=e2264 img "insightful"
|
|
1683
|
+
uid=e2265 img "love"
|
|
1684
|
+
uid=e2266 generic
|
|
1685
|
+
uid=e2267 generic value="10"
|
|
1686
|
+
uid=e2268 generic value="Jon Twigge and 9 others"
|
|
1687
|
+
uid=e2269 listitem
|
|
1688
|
+
uid=e2270 list
|
|
1689
|
+
uid=e2271 listitem
|
|
1690
|
+
uid=e2272 button "2 reposts of Jon Twigge’s post"
|
|
1691
|
+
uid=e2273 generic value="2 reposts"
|
|
1692
|
+
uid=e2274 generic
|
|
1693
|
+
uid=e2275 generic
|
|
1694
|
+
uid=e2276 button "React Like"
|
|
1695
|
+
uid=e2278 generic
|
|
1696
|
+
uid=e2279 img
|
|
1697
|
+
uid=e2281 generic value="Like"
|
|
1698
|
+
uid=s268 button "Open reactions menu"
|
|
1699
|
+
uid=e2283 img
|
|
1700
|
+
uid=e2287 button "Comment"
|
|
1701
|
+
uid=e2288 img
|
|
1702
|
+
uid=e2290 generic value="Comment"
|
|
1703
|
+
uid=e2293 button "Repost"
|
|
1704
|
+
uid=e2294 img
|
|
1705
|
+
uid=e2296 generic value="Repost"
|
|
1706
|
+
uid=e2299 button "Send in a private message"
|
|
1707
|
+
uid=e2300 img
|
|
1708
|
+
uid=e2303 generic value="Send"
|
|
1709
|
+
uid=e2304 listitem
|
|
1710
|
+
uid=e2310 article
|
|
1711
|
+
uid=e2312 generic
|
|
1712
|
+
uid=e2313 heading "Feed post number 17" level="2"
|
|
1713
|
+
uid=e2314 generic
|
|
1714
|
+
uid=e2315 generic
|
|
1715
|
+
uid=e2317 generic
|
|
1716
|
+
uid=e2318 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1717
|
+
uid=e2322 img "View Jon Twigge’s graphic link"
|
|
1718
|
+
uid=e2323 generic
|
|
1719
|
+
uid=s269 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1720
|
+
uid=e2325 generic
|
|
1721
|
+
uid=e2327 generic
|
|
1722
|
+
uid=e2328 generic value="Jon Twigge"
|
|
1723
|
+
uid=e2329 generic value="Jon Twigge"
|
|
1724
|
+
uid=e2330 generic
|
|
1725
|
+
uid=e2331 generic
|
|
1726
|
+
uid=e2332 img
|
|
1727
|
+
uid=e2333 img
|
|
1728
|
+
uid=s270 StaticText "• 1st"
|
|
1729
|
+
uid=e2335 generic value="Premium • 1st"
|
|
1730
|
+
uid=e2336 generic
|
|
1731
|
+
uid=e2337 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
1732
|
+
uid=e2338 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
1733
|
+
uid=e2339 generic
|
|
1734
|
+
uid=e2340 generic
|
|
1735
|
+
uid=s271 StaticText "3w •"
|
|
1736
|
+
uid=e2343 img
|
|
1737
|
+
uid=e2345 generic value="3 weeks ago • Visible to anyone on or off LinkedIn"
|
|
1738
|
+
uid=e2348 button "Open control menu for post by Jon Twigge"
|
|
1739
|
+
uid=e2349 img
|
|
1740
|
+
uid=e2352 generic
|
|
1741
|
+
uid=e2355 generic
|
|
1742
|
+
uid=s272 StaticText "Most people will never take a validated psychometric assessment, never mind a powerful assessment suite."
|
|
1743
|
+
uid=s273 StaticText "Not because they wouldn't benefit — but because these tools live behind paywalls, corporate HR departments, and clinical gatekeepers. The science is solid. The access is terrible."
|
|
1744
|
+
uid=s274 StaticText "I've spent a long time thinking about what happens when people don't know themselves well — not in a self-help sense, but structurally. How they make decisions. What they tolerate. What they can't see about the way they show up in the world."
|
|
1745
|
+
uid=s275 StaticText "So I built Potentialisation. Px for short."
|
|
1746
|
+
uid=s276 StaticText "It's a platform that hosts serious assessment and instruments — Big Five personality, HEXACO (adding the honesty-humility dimension most frameworks miss), Jungian type, character strengths, attachment style, sensory processing, wellbeing — with more coming. All are serious instruments, backed by published research. The open-source ones are free for anyone. We also host premium instruments from publishers like 5deep — whose Vital Signs suite measures worldview, coping systems, and change readiness — for people who want to go deeper. No dumbed-down quizzes."
|
|
1747
|
+
uid=s277 StaticText "For coaches who want to use these with clients, there's a professional tier at £10/month. Send assessments directly, see results in one place, look like you've got infrastructure — because you do."
|
|
1748
|
+
uid=s278 StaticText "We're early. The platform works, the instruments are live, and the roadmap is full. If you work in coaching, L&D, or people development and want to see what's there — I'd genuinely like to hear what you think."
|
|
1749
|
+
uid=s279 StaticText "If you've ever looked for a comprehensive personality assessment and been frustrated by what's available — I'd like to hear what you tried and what was missing."
|
|
1750
|
+
uid=e2356 link "hashtag psychometrics" url="https://www.linkedin.com/search/results/all/?keywords=%23psychometrics&origin=HASH_TAG_FROM_FEED"
|
|
1751
|
+
uid=e2357 generic value="hashtag"
|
|
1752
|
+
uid=e2358 generic value="#psychometrics"
|
|
1753
|
+
uid=e2359 link "hashtag selfawareness" url="https://www.linkedin.com/search/results/all/?keywords=%23selfawareness&origin=HASH_TAG_FROM_FEED"
|
|
1754
|
+
uid=e2360 generic value="hashtag"
|
|
1755
|
+
uid=e2361 generic value="#selfawareness"
|
|
1756
|
+
uid=e2362 link "hashtag buildinginpublic" url="https://www.linkedin.com/search/results/all/?keywords=%23buildinginpublic&origin=HASH_TAG_FROM_FEED"
|
|
1757
|
+
uid=e2363 generic value="hashtag"
|
|
1758
|
+
uid=e2364 generic value="#buildinginpublic"
|
|
1759
|
+
uid=e2365 button "see more, visually reveals content which is already detected by screen readers"
|
|
1760
|
+
uid=e2366 generic value="…more"
|
|
1761
|
+
uid=e2367 generic
|
|
1762
|
+
uid=e2371 list
|
|
1763
|
+
uid=e2372 listitem
|
|
1764
|
+
uid=e2373 button "You and 15 others"
|
|
1765
|
+
uid=e2374 img "like"
|
|
1766
|
+
uid=e2375 img "love"
|
|
1767
|
+
uid=e2376 img "support"
|
|
1768
|
+
uid=e2377 generic
|
|
1769
|
+
uid=e2378 generic value="16"
|
|
1770
|
+
uid=e2379 generic value="You and 15 others"
|
|
1771
|
+
uid=e2380 listitem
|
|
1772
|
+
uid=e2381 list
|
|
1773
|
+
uid=e2382 listitem
|
|
1774
|
+
uid=e2383 button "8 comments on Jon Twigge’s post"
|
|
1775
|
+
uid=e2384 generic value="8 comments"
|
|
1776
|
+
uid=s280 StaticText "·"
|
|
1777
|
+
uid=e2385 listitem
|
|
1778
|
+
uid=e2386 button "6 reposts of Jon Twigge’s post"
|
|
1779
|
+
uid=e2387 generic value="6 reposts"
|
|
1780
|
+
uid=e2388 generic
|
|
1781
|
+
uid=e2389 generic
|
|
1782
|
+
uid=e2390 button "Unreact Like" pressed
|
|
1783
|
+
uid=e2392 generic
|
|
1784
|
+
uid=e2393 img "like"
|
|
1785
|
+
uid=e2394 generic value="Like"
|
|
1786
|
+
uid=s281 button "Open reactions menu"
|
|
1787
|
+
uid=e2396 img
|
|
1788
|
+
uid=e2400 button "Comment"
|
|
1789
|
+
uid=e2401 img
|
|
1790
|
+
uid=e2403 generic value="Comment"
|
|
1791
|
+
uid=e2406 button "Repost"
|
|
1792
|
+
uid=e2407 img
|
|
1793
|
+
uid=e2409 generic value="Repost"
|
|
1794
|
+
uid=e2412 button "Send in a private message"
|
|
1795
|
+
uid=e2413 img
|
|
1796
|
+
uid=e2416 generic value="Send"
|
|
1797
|
+
uid=e2417 listitem
|
|
1798
|
+
uid=e2423 article
|
|
1799
|
+
uid=e2425 generic
|
|
1800
|
+
uid=e2426 heading "Feed post number 18" level="2"
|
|
1801
|
+
uid=e2427 generic
|
|
1802
|
+
uid=e2428 generic
|
|
1803
|
+
uid=e2430 generic
|
|
1804
|
+
uid=e2431 link "Jon’s profile photo" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1805
|
+
uid=e2434 img "Jon’s profile photo"
|
|
1806
|
+
uid=e2435 generic
|
|
1807
|
+
uid=e2437 link "Jon Twigge" url="/in/jontwigge/"
|
|
1808
|
+
uid=s282 StaticText "reposted this"
|
|
1809
|
+
uid=e2440 button "Open control menu for post by Jerome Etienne"
|
|
1810
|
+
uid=e2441 img
|
|
1811
|
+
uid=e2444 generic
|
|
1812
|
+
uid=e2445 link "View Jerome Etienne’s graphic link" url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1813
|
+
uid=e2449 img "View Jerome Etienne’s graphic link"
|
|
1814
|
+
uid=e2450 generic
|
|
1815
|
+
uid=s283 unknown url="https://www.linkedin.com/in/jeromeetienne?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAABV1ZYB_x7AQ_K0oe15LPzT32jClDzkqjQ"
|
|
1816
|
+
uid=e2452 generic
|
|
1817
|
+
uid=e2454 generic
|
|
1818
|
+
uid=e2455 generic value="Jerome Etienne"
|
|
1819
|
+
uid=e2456 generic value="Jerome Etienne"
|
|
1820
|
+
uid=e2457 generic
|
|
1821
|
+
uid=e2458 generic
|
|
1822
|
+
uid=e2459 img
|
|
1823
|
+
uid=s284 StaticText "• You"
|
|
1824
|
+
uid=e2461 generic value="Verified • You"
|
|
1825
|
+
uid=e2462 generic
|
|
1826
|
+
uid=e2463 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1827
|
+
uid=e2464 generic value="Your social media 10x faster with ContentMagick.ai 🧠✨"
|
|
1828
|
+
uid=e2465 generic
|
|
1829
|
+
uid=e2466 generic
|
|
1830
|
+
uid=s285 StaticText "3w •"
|
|
1831
|
+
uid=e2469 img
|
|
1832
|
+
uid=e2471 generic value="3 weeks ago • Visible to anyone on or off LinkedIn"
|
|
1833
|
+
uid=e2473 generic
|
|
1834
|
+
uid=e2476 generic
|
|
1835
|
+
uid=s286 StaticText "𝗦𝗼𝗺𝗲𝗼𝗻𝗲 𝗲𝘃𝗮𝗹𝘂𝗮𝘁𝗲𝗱 𝟳𝟰𝟬 𝗷𝗼𝗯 𝗼𝗳𝗳𝗲𝗿𝘀 𝗮𝗻𝗱 𝗴𝗲𝗻𝗲𝗿𝗮𝘁𝗲𝗱 𝟭𝟬𝟬+ 𝘁𝗮𝗶𝗹𝗼𝗿𝗲𝗱 𝗖𝗩𝘀 𝗯𝗲𝗳𝗼𝗿𝗲 𝗹𝗮𝗻𝗱𝗶𝗻𝗴 𝗮 𝗛𝗲𝗮𝗱 𝗼𝗳 𝗔𝗽𝗽𝗹𝗶𝗲𝗱 𝗔𝗜 𝗿𝗼𝗹𝗲."
|
|
1836
|
+
uid=s287 StaticText "He didn't grind harder. 𝗛𝗲 𝗯𝘂𝗶𝗹𝘁 𝗮 𝘀𝘆𝘀𝘁𝗲𝗺."
|
|
1837
|
+
uid=s288 StaticText "Most people job search the same way they spam cold emails — high volume, low precision. Paste your CV everywhere and hope something sticks. 🙈"
|
|
1838
|
+
uid=s289 StaticText "This guy took a different approach. He turned 𝗖𝗹𝗮𝘂𝗱𝗲 𝗖𝗼𝗱𝗲 into a full job search command center. 🤖"
|
|
1839
|
+
uid=s290 StaticText "Here's how it works:"
|
|
1840
|
+
uid=s291 StaticText "- 🔍 Paste a job URL"
|
|
1841
|
+
uid=s292 StaticText "- 🏷️ System auto-classifies the role archetype (LLMOps, Agentic, PM, SA)"
|
|
1842
|
+
uid=s293 StaticText "- 📊 Runs a structured 𝗔–𝗙 𝗲𝘃𝗮𝗹𝘂𝗮𝘁𝗶𝗼𝗻 𝗮𝗰𝗿𝗼𝘀𝘀 𝟭𝟬 𝘄𝗲𝗶𝗴𝗵𝘁𝗲𝗱 𝗱𝗶𝗺𝗲𝗻𝘀𝗶𝗼𝗻𝘀"
|
|
1843
|
+
uid=s294 StaticText "- 📄 Generates a keyword-injected, ATS-optimized PDF"
|
|
1844
|
+
uid=s295 StaticText "- 🗂️ Logs everything to a Go dashboard"
|
|
1845
|
+
uid=s296 StaticText "𝗢𝗻𝗲 𝗰𝗼𝗺𝗺𝗮𝗻𝗱. 𝗙𝘂𝗹𝗹 𝗽𝗶𝗽𝗲𝗹𝗶𝗻𝗲."
|
|
1846
|
+
uid=s297 StaticText "But the real insight is the 𝗯𝗮𝘁𝗰𝗵 𝗽𝗿𝗼𝗰𝗲𝘀𝘀𝗶𝗻𝗴. ⚡"
|
|
1847
|
+
uid=s298 StaticText "He didn't evaluate offers one at a time. He ran 𝟭𝟬+ 𝗶𝗻 𝗽𝗮𝗿𝗮𝗹𝗹𝗲𝗹 using Claude sub-agents - the same way engineers run parallel worktrees."
|
|
1848
|
+
uid=s299 StaticText "The scoring wasn't vibes. It checked CV match, comp research, culture fit, level strategy, and generated 𝗦𝗧𝗔𝗥+𝗥 𝘀𝘁𝗼𝗿𝗶𝗲𝘀 for behavioral interviews. 🎯"
|
|
1849
|
+
uid=s300 StaticText "The result: 𝗼𝗻𝗹𝘆 𝗮𝗽𝗽𝗹𝘆 𝘄𝗵𝗲𝗿𝗲 𝘁𝗵𝗲𝗿𝗲'𝘀 𝗴𝗲𝗻𝘂𝗶𝗻𝗲 𝗳𝗶𝘁."
|
|
1850
|
+
uid=s301 StaticText "740 offers evaluated. 100+ tailored CVs. 𝟭 𝗷𝗼𝗯 𝗹𝗮𝗻𝗱𝗲𝗱 - the right one. 🏆"
|
|
1851
|
+
uid=s302 StaticText "The skill wasn't applying to more jobs."
|
|
1852
|
+
uid=s303 StaticText "It was 𝗯𝘂𝗶𝗹𝗱𝗶𝗻𝗴 𝗮 𝘀𝘆𝘀𝘁𝗲𝗺 𝘁𝗵𝗮𝘁 𝗳𝗶𝗹𝘁𝗲𝗿𝘀 𝗿𝘂𝘁𝗵𝗹𝗲𝘀𝘀𝗹𝘆. 🔬"
|
|
1853
|
+
uid=s304 StaticText "Link in comment"
|
|
1854
|
+
uid=s305 StaticText "𝗧𝗵𝗮𝘁'𝘀 𝘁𝗵𝗲 𝗱𝗶𝗳𝗳𝗲𝗿𝗲𝗻𝗰𝗲 𝗯𝗲𝘁𝘄𝗲𝗲𝗻 𝘀𝗽𝗿𝗮𝘆-𝗮𝗻𝗱-𝗽𝗿𝗮𝘆 𝗮𝗻𝗱 𝗮𝗰𝘁𝘂𝗮𝗹𝗹𝘆 𝗴𝗲𝘁𝘁𝗶𝗻𝗴 𝗵𝗶𝗿𝗲𝗱."
|
|
1855
|
+
uid=s306 StaticText "What's the most creative use of AI tools you've seen in a job search? 👇"
|
|
1856
|
+
uid=e2477 button "see more, visually reveals content which is already detected by screen readers"
|
|
1857
|
+
uid=e2478 generic value="…more"
|
|
1858
|
+
uid=e2483 region "Video player"
|
|
1859
|
+
uid=e2487 generic
|
|
1860
|
+
uid=e2488 button "Play"
|
|
1861
|
+
uid=e2489 generic value="Play"
|
|
1862
|
+
uid=e2490 slider "Playback progress"
|
|
1863
|
+
uid=e2492 generic value="Loaded: 39.82%"
|
|
1864
|
+
uid=e2494 generic
|
|
1865
|
+
uid=s307 StaticText "Remaining time"
|
|
1866
|
+
uid=e2495 generic value="0:20"
|
|
1867
|
+
uid=e2496 generic
|
|
1868
|
+
uid=s308 generic value="1x"
|
|
1869
|
+
uid=e2497 button "Playback speed"
|
|
1870
|
+
uid=e2498 generic value="Playback speed"
|
|
1871
|
+
uid=e2499 generic
|
|
1872
|
+
uid=e2500 button "Unmute"
|
|
1873
|
+
uid=e2501 generic value="Unmute"
|
|
1874
|
+
uid=s309 generic
|
|
1875
|
+
uid=s310 slider "Volume"
|
|
1876
|
+
uid=e2503 button "Turn fullscreen on"
|
|
1877
|
+
uid=e2504 generic value="Turn fullscreen on"
|
|
1878
|
+
uid=e2505 generic
|
|
1879
|
+
uid=e2509 list
|
|
1880
|
+
uid=e2510 listitem
|
|
1881
|
+
uid=e2511 button "You and 2 others"
|
|
1882
|
+
uid=e2512 img "like"
|
|
1883
|
+
uid=e2513 generic
|
|
1884
|
+
uid=e2514 generic value="3"
|
|
1885
|
+
uid=e2515 generic value="You and 2 others"
|
|
1886
|
+
uid=e2516 listitem
|
|
1887
|
+
uid=e2517 list
|
|
1888
|
+
uid=e2518 listitem
|
|
1889
|
+
uid=e2519 button "2 comments on Jerome Etienne’s post"
|
|
1890
|
+
uid=e2520 generic value="2 comments"
|
|
1891
|
+
uid=s311 StaticText "·"
|
|
1892
|
+
uid=e2521 listitem
|
|
1893
|
+
uid=e2522 button "1 repost of Jerome Etienne’s post"
|
|
1894
|
+
uid=e2523 generic value="1 repost"
|
|
1895
|
+
uid=e2524 generic
|
|
1896
|
+
uid=e2525 generic
|
|
1897
|
+
uid=e2526 button "Unreact Like" pressed
|
|
1898
|
+
uid=e2528 generic
|
|
1899
|
+
uid=e2529 img "like"
|
|
1900
|
+
uid=e2530 generic value="Like"
|
|
1901
|
+
uid=s312 button "Open reactions menu"
|
|
1902
|
+
uid=e2532 img
|
|
1903
|
+
uid=e2536 button "Comment"
|
|
1904
|
+
uid=e2537 img
|
|
1905
|
+
uid=e2539 generic value="Comment"
|
|
1906
|
+
uid=e2542 button "Repost"
|
|
1907
|
+
uid=e2543 img
|
|
1908
|
+
uid=e2545 generic value="Repost"
|
|
1909
|
+
uid=e2548 button "Send in a private message"
|
|
1910
|
+
uid=e2549 img
|
|
1911
|
+
uid=e2552 generic value="Send"
|
|
1912
|
+
uid=e2553 listitem
|
|
1913
|
+
uid=e2559 article
|
|
1914
|
+
uid=e2561 generic
|
|
1915
|
+
uid=e2562 heading "Feed post number 19" level="2"
|
|
1916
|
+
uid=e2563 generic
|
|
1917
|
+
uid=e2564 generic
|
|
1918
|
+
uid=e2566 generic
|
|
1919
|
+
uid=e2567 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1920
|
+
uid=e2571 img "View Jon Twigge’s graphic link"
|
|
1921
|
+
uid=e2572 generic
|
|
1922
|
+
uid=s313 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1923
|
+
uid=e2574 generic
|
|
1924
|
+
uid=e2576 generic
|
|
1925
|
+
uid=e2577 generic value="Jon Twigge"
|
|
1926
|
+
uid=e2578 generic value="Jon Twigge"
|
|
1927
|
+
uid=e2579 generic
|
|
1928
|
+
uid=e2580 generic
|
|
1929
|
+
uid=e2581 img
|
|
1930
|
+
uid=e2582 img
|
|
1931
|
+
uid=s314 StaticText "• 1st"
|
|
1932
|
+
uid=e2584 generic value="Premium • 1st"
|
|
1933
|
+
uid=e2585 generic
|
|
1934
|
+
uid=e2586 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
1935
|
+
uid=e2587 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
1936
|
+
uid=e2588 generic
|
|
1937
|
+
uid=e2589 generic
|
|
1938
|
+
uid=s315 StaticText "3w •"
|
|
1939
|
+
uid=e2592 img
|
|
1940
|
+
uid=e2594 generic value="3 weeks ago • Visible to anyone on or off LinkedIn"
|
|
1941
|
+
uid=e2597 button "Open control menu for post by Jon Twigge"
|
|
1942
|
+
uid=e2598 img
|
|
1943
|
+
uid=e2604 generic value="I wrote about why stepping out from the group is wired to feel dangerous — and why it's the most important thing in human development, especially right now"
|
|
1944
|
+
uid=e2605 article
|
|
1945
|
+
uid=e2606 generic
|
|
1946
|
+
uid=s316 unknown url="https://www.linkedin.com/pulse/pier-pressure-why-stepping-out-from-group-hardest-thing-jon-twigge-nhg5e?trackingId=9eX%2Fwg%2BIgQMaGMnARFGsxQ%3D%3D"
|
|
1947
|
+
uid=s317 unknown url="https://www.linkedin.com/pulse/pier-pressure-why-stepping-out-from-group-hardest-thing-jon-twigge-nhg5e?trackingId=9eX%2Fwg%2BIgQMaGMnARFGsxQ%3D%3D"
|
|
1948
|
+
uid=e2614 generic
|
|
1949
|
+
uid=e2616 generic value="Pier pressure: why stepping out from the group is the hardest thing in human development"
|
|
1950
|
+
uid=e2617 generic value="Jon Twigge"
|
|
1951
|
+
uid=e2618 generic
|
|
1952
|
+
uid=e2622 list
|
|
1953
|
+
uid=e2623 listitem
|
|
1954
|
+
uid=e2624 button "You and 22 others"
|
|
1955
|
+
uid=e2625 img "like"
|
|
1956
|
+
uid=e2626 img "support"
|
|
1957
|
+
uid=e2627 img "love"
|
|
1958
|
+
uid=e2628 generic
|
|
1959
|
+
uid=e2629 generic value="23"
|
|
1960
|
+
uid=e2630 generic value="You and 22 others"
|
|
1961
|
+
uid=e2631 listitem
|
|
1962
|
+
uid=e2632 list
|
|
1963
|
+
uid=e2633 listitem
|
|
1964
|
+
uid=e2634 button "3 comments on Jon Twigge’s post"
|
|
1965
|
+
uid=e2635 generic value="3 comments"
|
|
1966
|
+
uid=s318 StaticText "·"
|
|
1967
|
+
uid=e2636 listitem
|
|
1968
|
+
uid=e2637 button "4 reposts of Jon Twigge’s post"
|
|
1969
|
+
uid=e2638 generic value="4 reposts"
|
|
1970
|
+
uid=e2639 generic
|
|
1971
|
+
uid=e2640 generic
|
|
1972
|
+
uid=e2641 button "Unreact Like" pressed
|
|
1973
|
+
uid=e2643 generic
|
|
1974
|
+
uid=e2644 img "like"
|
|
1975
|
+
uid=e2645 generic value="Like"
|
|
1976
|
+
uid=s319 button "Open reactions menu"
|
|
1977
|
+
uid=e2647 img
|
|
1978
|
+
uid=e2651 button "Comment"
|
|
1979
|
+
uid=e2652 img
|
|
1980
|
+
uid=e2654 generic value="Comment"
|
|
1981
|
+
uid=e2657 button "Repost"
|
|
1982
|
+
uid=e2658 img
|
|
1983
|
+
uid=e2660 generic value="Repost"
|
|
1984
|
+
uid=e2663 button "Send in a private message"
|
|
1985
|
+
uid=e2664 img
|
|
1986
|
+
uid=e2667 generic value="Send"
|
|
1987
|
+
uid=e2668 listitem
|
|
1988
|
+
uid=e2674 article
|
|
1989
|
+
uid=e2676 generic
|
|
1990
|
+
uid=e2677 heading "Feed post number 20" level="2"
|
|
1991
|
+
uid=e2678 generic
|
|
1992
|
+
uid=e2679 generic
|
|
1993
|
+
uid=e2681 generic
|
|
1994
|
+
uid=e2682 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1995
|
+
uid=e2686 img "View Jon Twigge’s graphic link"
|
|
1996
|
+
uid=e2687 generic
|
|
1997
|
+
uid=s320 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
1998
|
+
uid=e2689 generic
|
|
1999
|
+
uid=e2691 generic
|
|
2000
|
+
uid=e2692 generic value="Jon Twigge"
|
|
2001
|
+
uid=e2693 generic value="Jon Twigge"
|
|
2002
|
+
uid=e2694 generic
|
|
2003
|
+
uid=e2695 generic
|
|
2004
|
+
uid=e2696 img
|
|
2005
|
+
uid=e2697 img
|
|
2006
|
+
uid=s321 StaticText "• 1st"
|
|
2007
|
+
uid=e2699 generic value="Premium • 1st"
|
|
2008
|
+
uid=e2700 generic
|
|
2009
|
+
uid=e2701 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
2010
|
+
uid=e2702 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
2011
|
+
uid=e2703 generic
|
|
2012
|
+
uid=e2704 generic
|
|
2013
|
+
uid=s322 StaticText "4w •"
|
|
2014
|
+
uid=e2707 img
|
|
2015
|
+
uid=e2709 generic value="0 months ago • Visible to anyone on or off LinkedIn"
|
|
2016
|
+
uid=e2712 button "Open control menu for post by Jon Twigge"
|
|
2017
|
+
uid=e2713 img
|
|
2018
|
+
uid=e2716 generic
|
|
2019
|
+
uid=e2719 generic
|
|
2020
|
+
uid=s323 StaticText "I don't remember much from being a kid. But this one stuck."
|
|
2021
|
+
uid=s324 StaticText "Small village, small group of friends, maybe ten or eleven years old. We were hanging around — the way you do when there are six of you and nothing to do — and an older guy was standing nearby. We all knew him. He was deaf — which in a small village, everyone knew too."
|
|
2022
|
+
uid=s325 StaticText "I said something like \"it's a conspiracy\" — joking that he might be spying on us. Daft kid stuff."
|
|
2023
|
+
uid=s326 StaticText "But by the time it reached the rest of the group, the story had changed. Someone said I'd said \"he's listening to us.\" And because we all knew he was deaf, that was funnier. So that became the version. That was the story that stuck."
|
|
2024
|
+
uid=s327 StaticText "I remember standing there thinking: that's not what I said. But it didn't matter. The group had its story now, and the story was better than the truth."
|
|
2025
|
+
uid=s328 StaticText "I had words for what I was feeling even then — but no one to talk to about it."
|
|
2026
|
+
uid=s329 StaticText "I've thought about that moment more than it probably deserves. Because it taught me something I couldn't articulate at the time: the story a group tells is often more powerful than what actually happened. And once that story exists, correcting it costs you something. It costs you belonging."
|
|
2027
|
+
uid=s330 StaticText "Most of us learn this early. We learn to stay close to the group version. We learn to not step too far out."
|
|
2028
|
+
uid=s331 StaticText "In my last post I asked whether you stay on the shore or step onto the pier. This is where that question came from."
|
|
2029
|
+
uid=s332 StaticText "I've started calling it pier pressure. Peer pressure keeps you on the shore. Pier pressure comes from inside — when you want to put your I into a different place. Whether you actually step onto that pier is another question entirely. I didn't. Not then."
|
|
2030
|
+
uid=e2720 link "hashtag selfawareness" url="https://www.linkedin.com/search/results/all/?keywords=%23selfawareness&origin=HASH_TAG_FROM_FEED"
|
|
2031
|
+
uid=e2721 generic value="hashtag"
|
|
2032
|
+
uid=e2722 generic value="#selfawareness"
|
|
2033
|
+
uid=e2723 link "hashtag identity" url="https://www.linkedin.com/search/results/all/?keywords=%23identity&origin=HASH_TAG_FROM_FEED"
|
|
2034
|
+
uid=e2724 generic value="hashtag"
|
|
2035
|
+
uid=e2725 generic value="#identity"
|
|
2036
|
+
uid=e2726 link "hashtag pierpressure" url="https://www.linkedin.com/search/results/all/?keywords=%23pierpressure&origin=HASH_TAG_FROM_FEED"
|
|
2037
|
+
uid=e2727 generic value="hashtag"
|
|
2038
|
+
uid=e2728 generic value="#pierpressure"
|
|
2039
|
+
uid=e2729 button "see more, visually reveals content which is already detected by screen readers"
|
|
2040
|
+
uid=e2730 generic value="…more"
|
|
2041
|
+
uid=e2731 generic
|
|
2042
|
+
uid=e2735 list
|
|
2043
|
+
uid=e2736 listitem
|
|
2044
|
+
uid=e2737 button "You and 12 others"
|
|
2045
|
+
uid=e2738 img "like"
|
|
2046
|
+
uid=e2739 img "love"
|
|
2047
|
+
uid=e2740 img "insightful"
|
|
2048
|
+
uid=e2741 generic
|
|
2049
|
+
uid=e2742 generic value="13"
|
|
2050
|
+
uid=e2743 generic value="You and 12 others"
|
|
2051
|
+
uid=e2744 listitem
|
|
2052
|
+
uid=e2745 list
|
|
2053
|
+
uid=e2746 listitem
|
|
2054
|
+
uid=e2747 button "3 reposts of Jon Twigge’s post"
|
|
2055
|
+
uid=e2748 generic value="3 reposts"
|
|
2056
|
+
uid=e2749 generic
|
|
2057
|
+
uid=e2750 generic
|
|
2058
|
+
uid=e2751 button "Unreact Like" pressed
|
|
2059
|
+
uid=e2753 generic
|
|
2060
|
+
uid=e2754 img "like"
|
|
2061
|
+
uid=e2755 generic value="Like"
|
|
2062
|
+
uid=s333 button "Open reactions menu"
|
|
2063
|
+
uid=e2757 img
|
|
2064
|
+
uid=e2761 button "Comment"
|
|
2065
|
+
uid=e2762 img
|
|
2066
|
+
uid=e2764 generic value="Comment"
|
|
2067
|
+
uid=e2767 button "Repost"
|
|
2068
|
+
uid=e2768 img
|
|
2069
|
+
uid=e2770 generic value="Repost"
|
|
2070
|
+
uid=e2773 button "Send in a private message"
|
|
2071
|
+
uid=e2774 img
|
|
2072
|
+
uid=e2777 generic value="Send"
|
|
2073
|
+
uid=e2778 listitem
|
|
2074
|
+
uid=e2784 article
|
|
2075
|
+
uid=e2786 generic
|
|
2076
|
+
uid=e2787 heading "Feed post number 21" level="2"
|
|
2077
|
+
uid=e2788 generic
|
|
2078
|
+
uid=e2789 generic
|
|
2079
|
+
uid=e2791 generic
|
|
2080
|
+
uid=e2792 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
2081
|
+
uid=e2796 img "View Jon Twigge’s graphic link"
|
|
2082
|
+
uid=e2797 generic
|
|
2083
|
+
uid=s334 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
2084
|
+
uid=e2799 generic
|
|
2085
|
+
uid=e2801 generic
|
|
2086
|
+
uid=e2802 generic value="Jon Twigge"
|
|
2087
|
+
uid=e2803 generic value="Jon Twigge"
|
|
2088
|
+
uid=e2804 generic
|
|
2089
|
+
uid=e2805 generic
|
|
2090
|
+
uid=e2806 img
|
|
2091
|
+
uid=e2807 img
|
|
2092
|
+
uid=s335 StaticText "• 1st"
|
|
2093
|
+
uid=e2809 generic value="Premium • 1st"
|
|
2094
|
+
uid=e2810 generic
|
|
2095
|
+
uid=e2811 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
2096
|
+
uid=e2812 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
2097
|
+
uid=e2813 generic
|
|
2098
|
+
uid=e2814 generic
|
|
2099
|
+
uid=s336 StaticText "1mo •"
|
|
2100
|
+
uid=e2817 img
|
|
2101
|
+
uid=e2819 generic value="1 month ago • Visible to anyone on or off LinkedIn"
|
|
2102
|
+
uid=e2822 button "Open control menu for post by Jon Twigge"
|
|
2103
|
+
uid=e2823 img
|
|
2104
|
+
uid=e2826 generic
|
|
2105
|
+
uid=e2829 generic
|
|
2106
|
+
uid=s337 StaticText "Most people stay on the shore. Peering out at the sea from a safe distance, seeing what everyone around them sees, agreeing it's the whole picture because agreeing is easier than looking."
|
|
2107
|
+
uid=s338 StaticText "Some step out onto the pier. Putting an I into it. Getting closer to the storm."
|
|
2108
|
+
uid=s339 StaticText "The pier is exposed. The wind is real. But you're closer to what's actually happening — not the version filtered through the group, not the story everyone settled on, but the raw, uncomfortable, unedited thing."
|
|
2109
|
+
uid=s340 StaticText "Most people peer from the shore. Not because they're weak — because the shore is where belonging lives, and belonging is wired deep. Stepping onto the pier means risking that. It means being visible. It means seeing things you can't unsee and knowing things you can't unknow."
|
|
2110
|
+
uid=s341 StaticText "But here's what nobody tells you about the shore: it's not as safe as it feels. The storm comes in whether you're watching or not. The only difference is whether you saw it coming."
|
|
2111
|
+
uid=s342 StaticText "The pier starts with awareness. Seeing yourself clearly — your patterns, your personality, the way you're wired to respond. Not the version of yourself that the group reflects back at you. The actual shape of how you think, feel, and make decisions."
|
|
2112
|
+
uid=s343 StaticText "And awareness is only the first step. What matters is what comes after: choice. Real choice — not reacting from habit, not deferring to the group, but choosing from a place where you can actually see the options."
|
|
2113
|
+
uid=s344 StaticText "Awareness, then choice. That's the pier."
|
|
2114
|
+
uid=s345 StaticText "Where are you standing?"
|
|
2115
|
+
uid=e2830 link "hashtag selfawareness" url="https://www.linkedin.com/search/results/all/?keywords=%23selfawareness&origin=HASH_TAG_FROM_FEED"
|
|
2116
|
+
uid=e2831 generic value="hashtag"
|
|
2117
|
+
uid=e2832 generic value="#selfawareness"
|
|
2118
|
+
uid=e2833 link "hashtag pierpressure" url="https://www.linkedin.com/search/results/all/?keywords=%23pierpressure&origin=HASH_TAG_FROM_FEED"
|
|
2119
|
+
uid=e2834 generic value="hashtag"
|
|
2120
|
+
uid=e2835 generic value="#pierpressure"
|
|
2121
|
+
uid=e2836 link "hashtag awareness" url="https://www.linkedin.com/search/results/all/?keywords=%23awareness&origin=HASH_TAG_FROM_FEED"
|
|
2122
|
+
uid=e2837 generic value="hashtag"
|
|
2123
|
+
uid=e2838 generic value="#awareness"
|
|
2124
|
+
uid=e2839 link "hashtag choice" url="https://www.linkedin.com/search/results/all/?keywords=%23choice&origin=HASH_TAG_FROM_FEED"
|
|
2125
|
+
uid=e2840 generic value="hashtag"
|
|
2126
|
+
uid=e2841 generic value="#choice"
|
|
2127
|
+
uid=e2842 button "see more, visually reveals content which is already detected by screen readers"
|
|
2128
|
+
uid=e2843 generic value="…more"
|
|
2129
|
+
uid=e2844 generic
|
|
2130
|
+
uid=e2848 list
|
|
2131
|
+
uid=e2849 listitem
|
|
2132
|
+
uid=e2850 button "You and 15 others"
|
|
2133
|
+
uid=e2851 img "like"
|
|
2134
|
+
uid=e2852 img "love"
|
|
2135
|
+
uid=e2853 generic
|
|
2136
|
+
uid=e2854 generic value="16"
|
|
2137
|
+
uid=e2855 generic value="You and 15 others"
|
|
2138
|
+
uid=e2856 listitem
|
|
2139
|
+
uid=e2857 list
|
|
2140
|
+
uid=e2858 listitem
|
|
2141
|
+
uid=e2859 button "7 comments on Jon Twigge’s post"
|
|
2142
|
+
uid=e2860 generic value="7 comments"
|
|
2143
|
+
uid=s346 StaticText "·"
|
|
2144
|
+
uid=e2861 listitem
|
|
2145
|
+
uid=e2862 button "3 reposts of Jon Twigge’s post"
|
|
2146
|
+
uid=e2863 generic value="3 reposts"
|
|
2147
|
+
uid=e2864 generic
|
|
2148
|
+
uid=e2865 generic
|
|
2149
|
+
uid=e2866 button "Unreact Like" pressed
|
|
2150
|
+
uid=e2868 generic
|
|
2151
|
+
uid=e2869 img "like"
|
|
2152
|
+
uid=e2870 generic value="Like"
|
|
2153
|
+
uid=s347 button "Open reactions menu"
|
|
2154
|
+
uid=e2872 img
|
|
2155
|
+
uid=e2876 button "Comment"
|
|
2156
|
+
uid=e2877 img
|
|
2157
|
+
uid=e2879 generic value="Comment"
|
|
2158
|
+
uid=e2882 button "Repost"
|
|
2159
|
+
uid=e2883 img
|
|
2160
|
+
uid=e2885 generic value="Repost"
|
|
2161
|
+
uid=e2888 button "Send in a private message"
|
|
2162
|
+
uid=e2889 img
|
|
2163
|
+
uid=e2892 generic value="Send"
|
|
2164
|
+
uid=e2893 listitem
|
|
2165
|
+
uid=e2899 article
|
|
2166
|
+
uid=e2901 generic
|
|
2167
|
+
uid=e2902 heading "Feed post number 22" level="2"
|
|
2168
|
+
uid=e2903 generic
|
|
2169
|
+
uid=e2904 generic
|
|
2170
|
+
uid=e2906 generic
|
|
2171
|
+
uid=e2907 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
2172
|
+
uid=e2911 img "View Jon Twigge’s graphic link"
|
|
2173
|
+
uid=e2912 generic
|
|
2174
|
+
uid=s348 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
2175
|
+
uid=e2914 generic
|
|
2176
|
+
uid=e2916 generic
|
|
2177
|
+
uid=e2917 generic value="Jon Twigge"
|
|
2178
|
+
uid=e2918 generic value="Jon Twigge"
|
|
2179
|
+
uid=e2919 generic
|
|
2180
|
+
uid=e2920 generic
|
|
2181
|
+
uid=e2921 img
|
|
2182
|
+
uid=e2922 img
|
|
2183
|
+
uid=s349 StaticText "• 1st"
|
|
2184
|
+
uid=e2924 generic value="Premium • 1st"
|
|
2185
|
+
uid=e2925 generic
|
|
2186
|
+
uid=e2926 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
2187
|
+
uid=e2927 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
2188
|
+
uid=e2928 generic
|
|
2189
|
+
uid=e2929 generic
|
|
2190
|
+
uid=s350 StaticText "3mo •"
|
|
2191
|
+
uid=e2932 img
|
|
2192
|
+
uid=e2934 generic value="3 months ago • Visible to anyone on or off LinkedIn"
|
|
2193
|
+
uid=e2937 button "Open control menu for post by Jon Twigge"
|
|
2194
|
+
uid=e2938 img
|
|
2195
|
+
uid=e2941 generic
|
|
2196
|
+
uid=e2944 generic
|
|
2197
|
+
uid=s351 StaticText "AI is waking up. Kind of."
|
|
2198
|
+
uid=s352 StaticText "There has been huge interest in ClawdBot that has become OpenClaw (after an Anthropic request to rename it). OpenClaw is an AI that runs locally on your computer (or a private virtual one in the cloud that you set up for this)."
|
|
2199
|
+
uid=s353 StaticText "OpenClaw gets to know you and can proactively do things for you."
|
|
2200
|
+
uid=s354 StaticText "Five days ago someone created moltbook - a social media site only for AIs to talk to each other. Humans can look but not post. There are 1.5 million users registered so far. They are talking about us. And lots of other things."
|
|
2201
|
+
uid=s355 StaticText "This is just the beginning."
|
|
2202
|
+
uid=s356 StaticText "Some say the AI singularity is starting now - the point beyond which humans will not understand what the AI's are doing."
|
|
2203
|
+
uid=e2945 button "see more, visually reveals content which is already detected by screen readers"
|
|
2204
|
+
uid=e2946 generic value="…more"
|
|
2205
|
+
uid=e2947 generic
|
|
2206
|
+
uid=e2951 list
|
|
2207
|
+
uid=e2952 listitem
|
|
2208
|
+
uid=e2953 button "Jon Twigge and 3 others"
|
|
2209
|
+
uid=e2954 img "like"
|
|
2210
|
+
uid=e2955 generic
|
|
2211
|
+
uid=e2956 generic value="4"
|
|
2212
|
+
uid=e2957 generic value="Jon Twigge and 3 others"
|
|
2213
|
+
uid=e2958 listitem
|
|
2214
|
+
uid=e2959 list
|
|
2215
|
+
uid=e2960 listitem
|
|
2216
|
+
uid=e2961 button "5 comments on Jon Twigge’s post"
|
|
2217
|
+
uid=e2962 generic value="5 comments"
|
|
2218
|
+
uid=e2963 generic
|
|
2219
|
+
uid=e2964 generic
|
|
2220
|
+
uid=e2965 button "React Like"
|
|
2221
|
+
uid=e2967 generic
|
|
2222
|
+
uid=e2968 img
|
|
2223
|
+
uid=e2970 generic value="Like"
|
|
2224
|
+
uid=s357 button "Open reactions menu"
|
|
2225
|
+
uid=e2972 img
|
|
2226
|
+
uid=e2976 button "Comment"
|
|
2227
|
+
uid=e2977 img
|
|
2228
|
+
uid=e2979 generic value="Comment"
|
|
2229
|
+
uid=e2982 button "Repost"
|
|
2230
|
+
uid=e2983 img
|
|
2231
|
+
uid=e2985 generic value="Repost"
|
|
2232
|
+
uid=e2988 button "Send in a private message"
|
|
2233
|
+
uid=e2989 img
|
|
2234
|
+
uid=e2992 generic value="Send"
|
|
2235
|
+
uid=e2993 listitem
|
|
2236
|
+
uid=e2999 article
|
|
2237
|
+
uid=e3001 generic
|
|
2238
|
+
uid=e3002 heading "Feed post number 23" level="2"
|
|
2239
|
+
uid=e3003 generic
|
|
2240
|
+
uid=e3004 generic
|
|
2241
|
+
uid=e3006 generic
|
|
2242
|
+
uid=e3007 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
2243
|
+
uid=e3011 img "View Jon Twigge’s graphic link"
|
|
2244
|
+
uid=e3012 generic
|
|
2245
|
+
uid=s358 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
2246
|
+
uid=e3014 generic
|
|
2247
|
+
uid=e3016 generic
|
|
2248
|
+
uid=e3017 generic value="Jon Twigge"
|
|
2249
|
+
uid=e3018 generic value="Jon Twigge"
|
|
2250
|
+
uid=e3019 generic
|
|
2251
|
+
uid=e3020 generic
|
|
2252
|
+
uid=e3021 img
|
|
2253
|
+
uid=e3022 img
|
|
2254
|
+
uid=s359 StaticText "• 1st"
|
|
2255
|
+
uid=e3024 generic value="Premium • 1st"
|
|
2256
|
+
uid=e3025 generic
|
|
2257
|
+
uid=e3026 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
2258
|
+
uid=e3027 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
2259
|
+
uid=e3028 generic
|
|
2260
|
+
uid=e3029 generic
|
|
2261
|
+
uid=s360 StaticText "5mo •"
|
|
2262
|
+
uid=e3032 img
|
|
2263
|
+
uid=e3034 generic value="5 months ago • Visible to anyone on or off LinkedIn"
|
|
2264
|
+
uid=e3037 button "Open control menu for post by Jon Twigge"
|
|
2265
|
+
uid=e3038 img
|
|
2266
|
+
uid=e3041 generic
|
|
2267
|
+
uid=e3044 generic
|
|
2268
|
+
uid=s361 StaticText "More time ago than i like to think about I started dreaming about a project that could help the world out by helping a lot of people that might, each in their own way, make their difference in the world. And what if we could connect some of them together in ways that would not have happened otherwise? Together..."
|
|
2269
|
+
uid=s362 StaticText "Eventually the project became Potentialisation, a way that would help combine my day job skills with a passion for understanding the world and society. I wrote on my LinkedIn profile - coming soon. It was not so soon :-)"
|
|
2270
|
+
uid=s363 StaticText "As a software engineer I am very prone to not sharing things until they are ready - one more feature - if only it did this or that first. So i funded this project myself, until one day it would be good enough to share. I am sure there are names for this ..."
|
|
2271
|
+
uid=s364 StaticText "Starting on a shoestring budget (for a software project) meant challenges and somewhat running blind with remote development to keep costs down. It is built in web tech that this software dinosaur didn't yet know (and still only knows a little)."
|
|
2272
|
+
uid=s365 StaticText "After distractions, Covid, and more, it got going again. A new developer that worked out the kinks (technical for cluster... in some parts) of the early work."
|
|
2273
|
+
uid=s366 StaticText "And soon, finally, is very soon now ! The basic MVP is working. We can expand the MVP quickly - the platform is a SAAS model that we can add a lot to. There is also a LOT of development to do for the full vision."
|
|
2274
|
+
uid=s367 StaticText "But this project is a lot bigger than me. It is going to need a community, customers, income one way or another, or even better many ways. It is non profit."
|
|
2275
|
+
uid=s368 StaticText "AI is coming for jobs. This is a good time to build support for people and resilience to find new ways forward."
|
|
2276
|
+
uid=e3045 button "see more, visually reveals content which is already detected by screen readers"
|
|
2277
|
+
uid=e3046 generic value="…more"
|
|
2278
|
+
uid=e3047 generic
|
|
2279
|
+
uid=e3048 generic
|
|
2280
|
+
uid=e3049 generic
|
|
2281
|
+
uid=e3050 link "Potentialisation, graphic." url="https://www.linkedin.com/company/potentialisation/posts"
|
|
2282
|
+
uid=e3054 generic
|
|
2283
|
+
uid=s369 unknown url="https://www.linkedin.com/company/potentialisation/posts"
|
|
2284
|
+
uid=e3058 generic
|
|
2285
|
+
uid=e3060 generic value="Potentialisation"
|
|
2286
|
+
uid=e3062 generic value="Potentialisation"
|
|
2287
|
+
uid=e3063 generic
|
|
2288
|
+
uid=e3064 generic value="134 followers"
|
|
2289
|
+
uid=e3065 generic value="134 followers"
|
|
2290
|
+
uid=e3066 generic
|
|
2291
|
+
uid=e3067 generic
|
|
2292
|
+
uid=s370 StaticText "5mo •"
|
|
2293
|
+
uid=e3070 img
|
|
2294
|
+
uid=e3072 generic value="5 months ago • Visible to anyone on or off LinkedIn"
|
|
2295
|
+
uid=e3073 button "Follow Potentialisation"
|
|
2296
|
+
uid=e3074 img
|
|
2297
|
+
uid=e3076 generic value="Follow"
|
|
2298
|
+
uid=e3078 link "❇️ 𝗦𝗲𝗹𝗳-𝗮𝘄𝗮𝗿𝗲𝗻𝗲𝘀𝘀 𝗶𝘀 𝗲𝘀𝘀𝗲𝗻𝘁𝗶𝗮𝗹 𝗳𝗼𝗿 𝗻𝗮𝘃𝗶𝗴𝗮𝘁𝗶𝗻𝗴 𝘁𝗼𝗱𝗮𝘆’𝘀 𝗰𝗼𝗺𝗽𝗹𝗲𝘅, 𝗳𝗮𝘀𝘁-𝗰𝗵𝗮𝗻𝗴𝗶𝗻𝗴 𝗹𝗮𝗻𝗱𝘀𝗰𝗮𝗽𝗲. It empowers individuals to adapt, make better decisions, and inspire others. Investing in 𝘀𝗲𝗹𝗳-𝗿𝗲𝗳𝗹𝗲𝗰𝘁𝗶𝗼𝗻 gives you a 𝗰𝗼𝗺𝗽𝗲𝘁𝗶𝘁𝗶𝘃𝗲 𝗲𝗱𝗴𝗲. 🌟 Let’s build the kind of growth that lasts, together. hashtag 𝗣𝗲𝗿𝘀𝗼𝗻𝗮𝗹𝗗𝗲𝘃𝗲𝗹𝗼𝗽𝗺𝗲𝗻𝘁 hashtag 𝗦𝗲𝗹𝗳𝗔𝘄𝗮𝗿𝗲𝗻𝗲𝘀𝘀 see more, visually reveals content which is already detected by screen readers" url="/feed/update/urn:li:activity:7391852878383964160/"
|
|
2299
|
+
uid=e3079 generic
|
|
2300
|
+
uid=e3082 generic
|
|
2301
|
+
uid=s371 StaticText "❇️ 𝗦𝗲𝗹𝗳-𝗮𝘄𝗮𝗿𝗲𝗻𝗲𝘀𝘀 𝗶𝘀 𝗲𝘀𝘀𝗲𝗻𝘁𝗶𝗮𝗹 𝗳𝗼𝗿 𝗻𝗮𝘃𝗶𝗴𝗮𝘁𝗶𝗻𝗴 𝘁𝗼𝗱𝗮𝘆’𝘀 𝗰𝗼𝗺𝗽𝗹𝗲𝘅, 𝗳𝗮𝘀𝘁-𝗰𝗵𝗮𝗻𝗴𝗶𝗻𝗴 𝗹𝗮𝗻𝗱𝘀𝗰𝗮𝗽𝗲. It empowers individuals to adapt, make better decisions, and inspire others."
|
|
2302
|
+
uid=s372 StaticText "Investing in 𝘀𝗲𝗹𝗳-𝗿𝗲𝗳𝗹𝗲𝗰𝘁𝗶𝗼𝗻 gives you a 𝗰𝗼𝗺𝗽𝗲𝘁𝗶𝘁𝗶𝘃𝗲 𝗲𝗱𝗴𝗲. 🌟"
|
|
2303
|
+
uid=s373 StaticText "Let’s build the kind of growth that lasts, together."
|
|
2304
|
+
uid=e3083 link "hashtag 𝗣𝗲𝗿𝘀𝗼𝗻𝗮𝗹𝗗𝗲𝘃𝗲𝗹𝗼𝗽𝗺𝗲𝗻𝘁" url="https://www.linkedin.com/search/results/all/?keywords=%23personaldevelopment&origin=HASH_TAG_FROM_FEED"
|
|
2305
|
+
uid=e3084 generic value="hashtag"
|
|
2306
|
+
uid=e3085 generic value="#𝗣𝗲𝗿𝘀𝗼𝗻𝗮𝗹𝗗𝗲𝘃𝗲𝗹𝗼𝗽𝗺𝗲𝗻𝘁"
|
|
2307
|
+
uid=e3086 link "hashtag 𝗦𝗲𝗹𝗳𝗔𝘄𝗮𝗿𝗲𝗻𝗲𝘀𝘀" url="https://www.linkedin.com/search/results/all/?keywords=%23selfawareness&origin=HASH_TAG_FROM_FEED"
|
|
2308
|
+
uid=e3087 generic value="hashtag"
|
|
2309
|
+
uid=e3088 generic value="#𝗦𝗲𝗹𝗳𝗔𝘄𝗮𝗿𝗲𝗻𝗲𝘀𝘀"
|
|
2310
|
+
uid=e3089 button "see more, visually reveals content which is already detected by screen readers"
|
|
2311
|
+
uid=e3090 generic value="…more"
|
|
2312
|
+
uid=e3092 generic
|
|
2313
|
+
uid=e3094 button "Activate to view larger image, No alternative text description for this image"
|
|
2314
|
+
uid=e3095 generic value="Activate to view larger image,"
|
|
2315
|
+
uid=e3098 img "No alternative text description for this image"
|
|
2316
|
+
uid=e3099 generic value="Activate to view larger image,"
|
|
2317
|
+
uid=e3100 generic
|
|
2318
|
+
uid=e3104 list
|
|
2319
|
+
uid=e3105 listitem
|
|
2320
|
+
uid=e3106 button "15 reactions"
|
|
2321
|
+
uid=e3107 img "like"
|
|
2322
|
+
uid=e3108 img "celebrate"
|
|
2323
|
+
uid=e3109 img "support"
|
|
2324
|
+
uid=e3110 generic value="15"
|
|
2325
|
+
uid=e3111 listitem
|
|
2326
|
+
uid=e3112 list
|
|
2327
|
+
uid=e3113 listitem
|
|
2328
|
+
uid=e3114 button "3 comments on Jon Twigge’s post"
|
|
2329
|
+
uid=e3115 generic value="3 comments"
|
|
2330
|
+
uid=e3116 generic
|
|
2331
|
+
uid=e3117 generic
|
|
2332
|
+
uid=e3118 button "React Like"
|
|
2333
|
+
uid=e3120 generic
|
|
2334
|
+
uid=e3121 img
|
|
2335
|
+
uid=e3123 generic value="Like"
|
|
2336
|
+
uid=s374 button "Open reactions menu"
|
|
2337
|
+
uid=e3125 img
|
|
2338
|
+
uid=e3129 button "Comment"
|
|
2339
|
+
uid=e3130 img
|
|
2340
|
+
uid=e3132 generic value="Comment"
|
|
2341
|
+
uid=e3135 button "Repost"
|
|
2342
|
+
uid=e3136 img
|
|
2343
|
+
uid=e3138 generic value="Repost"
|
|
2344
|
+
uid=e3141 button "Send in a private message"
|
|
2345
|
+
uid=e3142 img
|
|
2346
|
+
uid=e3145 generic value="Send"
|
|
2347
|
+
uid=e3146 listitem
|
|
2348
|
+
uid=e3152 article
|
|
2349
|
+
uid=e3154 generic
|
|
2350
|
+
uid=e3155 heading "Feed post number 24" level="2"
|
|
2351
|
+
uid=e3156 generic
|
|
2352
|
+
uid=e3157 generic
|
|
2353
|
+
uid=e3159 generic
|
|
2354
|
+
uid=e3160 link "View Jon Twigge’s graphic link" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
2355
|
+
uid=e3164 img "View Jon Twigge’s graphic link"
|
|
2356
|
+
uid=e3165 generic
|
|
2357
|
+
uid=s375 unknown url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
2358
|
+
uid=e3167 generic
|
|
2359
|
+
uid=e3169 generic
|
|
2360
|
+
uid=e3170 generic value="Jon Twigge"
|
|
2361
|
+
uid=e3171 generic value="Jon Twigge"
|
|
2362
|
+
uid=e3172 generic
|
|
2363
|
+
uid=e3173 generic
|
|
2364
|
+
uid=e3174 img
|
|
2365
|
+
uid=e3175 img
|
|
2366
|
+
uid=s376 StaticText "• 1st"
|
|
2367
|
+
uid=e3177 generic value="Premium • 1st"
|
|
2368
|
+
uid=e3178 generic
|
|
2369
|
+
uid=e3179 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
2370
|
+
uid=e3180 generic value="Founder, Potentialisation | Helping people find their way in the new world"
|
|
2371
|
+
uid=e3181 generic
|
|
2372
|
+
uid=e3182 generic
|
|
2373
|
+
uid=s377 StaticText "6mo •"
|
|
2374
|
+
uid=e3185 img
|
|
2375
|
+
uid=e3187 generic value="6 months ago • Visible to anyone on or off LinkedIn"
|
|
2376
|
+
uid=e3190 button "Open control menu for post by Jon Twigge"
|
|
2377
|
+
uid=e3191 img
|
|
2378
|
+
uid=e3194 generic
|
|
2379
|
+
uid=e3197 generic
|
|
2380
|
+
uid=s378 StaticText "Wish me luck !"
|
|
2381
|
+
uid=s379 StaticText "With a background in software engineering I am not the first to volunteer for speaking at live events."
|
|
2382
|
+
uid=s380 StaticText "I have been on a you tube channel with Brain White at FutureAza talking technology like AI and robots a few times but..."
|
|
2383
|
+
uid=s381 StaticText "... tonight we go live at 7pm UK time. My first live appearance."
|
|
2384
|
+
uid=s382 StaticText "If you are searching for that scared rabbit in the headlights look (that will be me) you can find us here:"
|
|
2385
|
+
uid=e3198 link "https://lnkd.in/eEttXMrd" url="https://lnkd.in/eEttXMrd"
|
|
2386
|
+
uid=e3199 button "see more, visually reveals content which is already detected by screen readers"
|
|
2387
|
+
uid=e3200 generic value="…more"
|
|
2388
|
+
uid=e3201 generic
|
|
2389
|
+
uid=s383 unknown url="https://www.youtube.com/watch?v=2Zsni-g8TI8"
|
|
2390
|
+
uid=e3208 link "Are Q4 Tesla sales DOOMED? Live with Nick Gibbs & Jon Twigge" url="https://www.youtube.com/watch?v=2Zsni-g8TI8"
|
|
2391
|
+
uid=e3211 generic
|
|
2392
|
+
uid=e3212 generic value="Are Q4 Tesla sales DOOMED? Live with Nick Gibbs & Jon Twigge"
|
|
2393
|
+
uid=e3213 generic value="youtube.com"
|
|
2394
|
+
uid=e3214 generic
|
|
2395
|
+
uid=e3218 list
|
|
2396
|
+
uid=e3219 listitem
|
|
2397
|
+
uid=e3220 button "16 reactions"
|
|
2398
|
+
uid=e3221 img "like"
|
|
2399
|
+
uid=e3222 img "support"
|
|
2400
|
+
uid=e3223 img "celebrate"
|
|
2401
|
+
uid=e3224 generic value="16"
|
|
2402
|
+
uid=e3225 listitem
|
|
2403
|
+
uid=e3226 list
|
|
2404
|
+
uid=e3227 listitem
|
|
2405
|
+
uid=e3228 button "5 comments on Jon Twigge’s post"
|
|
2406
|
+
uid=e3229 generic value="5 comments"
|
|
2407
|
+
uid=e3230 generic
|
|
2408
|
+
uid=e3231 generic
|
|
2409
|
+
uid=e3232 button "React Like"
|
|
2410
|
+
uid=e3234 generic
|
|
2411
|
+
uid=e3235 img
|
|
2412
|
+
uid=e3237 generic value="Like"
|
|
2413
|
+
uid=s384 button "Open reactions menu"
|
|
2414
|
+
uid=e3239 img
|
|
2415
|
+
uid=e3243 button "Comment"
|
|
2416
|
+
uid=e3244 img
|
|
2417
|
+
uid=e3246 generic value="Comment"
|
|
2418
|
+
uid=e3249 button "Repost"
|
|
2419
|
+
uid=e3250 img
|
|
2420
|
+
uid=e3252 generic value="Repost"
|
|
2421
|
+
uid=e3255 button "Send in a private message"
|
|
2422
|
+
uid=e3256 img
|
|
2423
|
+
uid=e3259 generic value="Send"
|
|
2424
|
+
uid=e3260 listitem
|
|
2425
|
+
uid=e3266 article
|
|
2426
|
+
uid=e3268 generic
|
|
2427
|
+
uid=e3269 heading "Feed post number 25" level="2"
|
|
2428
|
+
uid=e3270 generic
|
|
2429
|
+
uid=e3271 generic
|
|
2430
|
+
uid=e3273 generic
|
|
2431
|
+
uid=e3274 link "Jon’s profile photo" url="https://www.linkedin.com/in/jontwigge?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHD1f8BlIKOmDmR1ATwSG30joabMKBgIRg"
|
|
2432
|
+
uid=e3277 img "Jon’s profile photo"
|
|
2433
|
+
uid=e3278 generic
|
|
2434
|
+
uid=e3280 link "Jon Twigge" url="/in/jontwigge/"
|
|
2435
|
+
uid=s385 StaticText "reposted this"
|
|
2436
|
+
uid=e3283 button "Open control menu for post by Darren Stevens, PhD"
|
|
2437
|
+
uid=e3284 img
|
|
2438
|
+
uid=e3286 generic
|
|
2439
|
+
uid=e3287 generic
|
|
2440
|
+
uid=e3288 link "View Darren Stevens, PhD’s graphic link" url="https://www.linkedin.com/in/drdarrenstevens?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAA_Lb48Bm_k3HWUHf9vyFJWMnwu84PPY_wo"
|
|
2441
|
+
uid=e3292 img "View Darren Stevens, PhD’s graphic link"
|
|
2442
|
+
uid=e3293 generic
|
|
2443
|
+
uid=s386 unknown url="https://www.linkedin.com/in/drdarrenstevens?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAA_Lb48Bm_k3HWUHf9vyFJWMnwu84PPY_wo"
|
|
2444
|
+
uid=e3295 generic
|
|
2445
|
+
uid=e3297 generic
|
|
2446
|
+
uid=e3298 generic value="Darren Stevens, PhD"
|
|
2447
|
+
uid=e3299 generic value="Darren Stevens, PhD"
|
|
2448
|
+
uid=e3300 generic
|
|
2449
|
+
uid=e3301 generic
|
|
2450
|
+
uid=e3302 img
|
|
2451
|
+
uid=s387 StaticText "• 2nd"
|
|
2452
|
+
uid=e3304 generic value="Verified • 2nd"
|
|
2453
|
+
uid=e3305 generic
|
|
2454
|
+
uid=e3306 generic value="Developmental Consultant | Helping organisations, leaders and founders diagnose the thinking beneath recurring problems"
|
|
2455
|
+
uid=e3307 generic value="Developmental Consultant | Helping organisations, leaders and founders diagnose the thinking beneath recurring problems"
|
|
2456
|
+
uid=e3308 generic
|
|
2457
|
+
uid=e3309 generic
|
|
2458
|
+
uid=s388 StaticText "7mo •"
|
|
2459
|
+
uid=e3312 img
|
|
2460
|
+
uid=e3314 generic value="7 months ago • Visible to anyone on or off LinkedIn"
|
|
2461
|
+
uid=e3315 button "Follow Darren Stevens, PhD"
|
|
2462
|
+
uid=e3316 img
|
|
2463
|
+
uid=e3318 generic value="Follow"
|
|
2464
|
+
uid=e3320 generic
|
|
2465
|
+
uid=e3323 generic
|
|
2466
|
+
uid=s389 StaticText "As my new book - \"Thinking Deliberately\" - is out soon, followed by my \"Coaching Deliberately\" book, I thought I would give away this very short but very succinct book on coaching. Coaching Yourself, to be precise."
|
|
2467
|
+
uid=s390 StaticText "In fact, it's more an anti-coaching book."
|
|
2468
|
+
uid=s391 StaticText "Forget all the nonsense we read on LinkedIn about the 40 different types of coaching there are, or who can be a coach or who cannot: there are only really TWO things you need to do, and they're in this FREE book."
|
|
2469
|
+
uid=s392 StaticText "Feel free to share it to anyone interested in coaching themselves. It might save them a few quid on the typical coaching process when they realise they don't need it..."
|
|
2470
|
+
uid=e3324 link "hashtag coaching" url="https://www.linkedin.com/search/results/all/?keywords=%23coaching&origin=HASH_TAG_FROM_FEED"
|
|
2471
|
+
uid=e3325 generic value="hashtag"
|
|
2472
|
+
uid=e3326 generic value="#coaching"
|
|
2473
|
+
uid=e3327 link "hashtag lifecoaching" url="https://www.linkedin.com/search/results/all/?keywords=%23lifecoaching&origin=HASH_TAG_FROM_FEED"
|
|
2474
|
+
uid=e3328 generic value="hashtag"
|
|
2475
|
+
uid=e3329 generic value="#lifecoaching"
|
|
2476
|
+
uid=e3330 link "hashtag businesscoach" url="https://www.linkedin.com/search/results/all/?keywords=%23businesscoach&origin=HASH_TAG_FROM_FEED"
|
|
2477
|
+
uid=e3331 generic value="hashtag"
|
|
2478
|
+
uid=e3332 generic value="#businesscoach"
|
|
2479
|
+
uid=e3333 link "https://lnkd.in/eidK7jFY" url="https://lnkd.in/eidK7jFY"
|
|
2480
|
+
uid=e3334 button "see more, visually reveals content which is already detected by screen readers"
|
|
2481
|
+
uid=e3335 generic value="…more"
|
|
2482
|
+
uid=e3339 link "Web Link" url="https://darrenstevens.co.uk/PDF/help.pdf"
|
|
2483
|
+
uid=e3342 generic
|
|
2484
|
+
uid=e3343 generic value="Web Link"
|
|
2485
|
+
uid=e3344 generic value="darrenstevens.co.uk"
|
|
2486
|
+
uid=e3345 generic
|
|
2487
|
+
uid=e3349 list
|
|
2488
|
+
uid=e3350 listitem
|
|
2489
|
+
uid=e3351 button "23 reactions"
|
|
2490
|
+
uid=e3352 img "like"
|
|
2491
|
+
uid=e3353 img "love"
|
|
2492
|
+
uid=e3354 img "insightful"
|
|
2493
|
+
uid=e3355 generic value="23"
|
|
2494
|
+
uid=e3356 listitem
|
|
2495
|
+
uid=e3357 list
|
|
2496
|
+
uid=e3358 listitem
|
|
2497
|
+
uid=e3359 button "3 reposts of Darren Stevens, PhD’s post"
|
|
2498
|
+
uid=e3360 generic value="3 reposts"
|
|
2499
|
+
uid=e3361 generic
|
|
2500
|
+
uid=e3362 generic
|
|
2501
|
+
uid=e3363 button "React Like"
|
|
2502
|
+
uid=e3365 generic
|
|
2503
|
+
uid=e3366 img
|
|
2504
|
+
uid=e3368 generic value="Like"
|
|
2505
|
+
uid=s393 button "Open reactions menu"
|
|
2506
|
+
uid=e3370 img
|
|
2507
|
+
uid=e3374 button "Comment"
|
|
2508
|
+
uid=e3375 img
|
|
2509
|
+
uid=e3377 generic value="Comment"
|
|
2510
|
+
uid=e3380 button "Repost"
|
|
2511
|
+
uid=e3381 img
|
|
2512
|
+
uid=e3383 generic value="Repost"
|
|
2513
|
+
uid=e3386 button "Send in a private message"
|
|
2514
|
+
uid=e3387 img
|
|
2515
|
+
uid=e3390 generic value="Send"
|
|
2516
|
+
uid=e3391 listitem
|
|
2517
|
+
uid=e3395 listitem
|
|
2518
|
+
uid=e3399 listitem
|
|
2519
|
+
uid=e3403 listitem
|
|
2520
|
+
uid=e3407 listitem
|
|
2521
|
+
uid=e3411 listitem
|
|
2522
|
+
uid=e3415 listitem
|
|
2523
|
+
uid=e3419 listitem
|
|
2524
|
+
uid=e3423 listitem
|
|
2525
|
+
uid=e3427 listitem
|
|
2526
|
+
uid=e3431 listitem
|
|
2527
|
+
uid=e3437 button "Show more results"
|
|
2528
|
+
uid=e3438 generic value="Show more results"
|
|
2529
|
+
uid=e3439 complementary "Interests"
|
|
2530
|
+
uid=e3441 iframe
|
|
2531
|
+
uid=f120e3 main "Work With Us Container"
|
|
2532
|
+
uid=f120e4 generic
|
|
2533
|
+
uid=f120e6 img
|
|
2534
|
+
uid=f120e7 generic
|
|
2535
|
+
uid=f120e8 img "Jerome"
|
|
2536
|
+
uid=f120e9 link "Harmonic" url="https://www.linkedin.com/li/tscp/sct?destinationUrl=http%3A%2F%2Fwww.linkedin.com%2Fcompany%2F5918%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%22CwEAAAGd8asiz7pPtgZsC8pMv9gaZjxUSu2AJ52J_53BF_yb2X7vwY4LeAkJJ0gvGh67x9rMEzk_Kd1NXR6lnndyFFI4A8WgJ8eKbkiy_2jCS2zjLl7paJoT3hJYCUP2nwhwZjldx4mB3KnpE_mpS2EGYIVBXjxRUBD24A86vRMEJOQIBja3wwmi3_s6HU0TsnYOtRt8RvpmKg8ifMr-ah2MT1UMhn_0tTzK_37vlz79Sr0n3uPLg0SJ9roCvDTFqWOlwx-4BqEuxZkAcqCZ9jJL91f9pBeWAZUwF0nak_DTmlA8vXoK4ilLNMQarAvlGIM3E2P3VRQ3Z9UW4fto7NzgUXMVUvz8_2waX73E30gOlf8otwdo6SBzY8D_Vv780shEdutzm9kB2rBVfC3wwnv-EmSBBCXgiY_yUqMHd6nfoin58syROhYACbQLhDKjGZlLLJrJr5e6QOzMQZEaKFZyjiQJNAf-YU2PeNi4MfSQQBlsdyasXDLG8NYAo5xf5-A4-tqcenn001WJu01PObStr1YslwEzwwcVJhPoJjpYpttxipG0kMQyc6N_ziRQJ9X7fOCDUVPWJpVX272jl6QE4DD9bhh--0IPmbHBWZqLvgkXBxXZRl8jpDBjC3o3ttVjSgjWUMgnbq4yWVToUpMuMxcV41jFkGq0LCsEHRwBV_2vCrgQqCDzUvrh4mU5cTSYQHJAQLQ_GasWClrZnoOt442rUyzj4ZTSLBqb8vlPC5fqNY_SznWqsZkq7fWZw6-PRAS0_ipwOvOW7iPKd_uF8lBYGZfcjwT-wlFe7mZFWZoPQ6QiFe6SHp9GwIhuulmletJHGojOqT6merW1RiloPf7ssFZH5xaP7pl9HtWlm-lVsFNQp3GIRuHyljEjxhLIx7sLVT-XgIQECoByxl1vuj7_KYFUzao0dbHMHV-grgLCCOK5erhr6fOXkGJCnmOZR1uJHcr-gJrGcJbsNnBKjkRsaGNDRKyexC-RlTzZL8xhDcjcN9jKT34VDZbytVeDXV0kGfGKbkxfY1AM2Tcqc8ZDIdzK-I6eOeuQTZd0VHpsY8c6ANEUiQJDrb4e3_I1Bk34bg%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%22cc784c56-64c6-423d-9436-5c342a507fd9%22%7D%2C%22time%22%3A1777876017820%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"
|
|
2537
|
+
uid=f120e10 img "Harmonic"
|
|
2538
|
+
uid=f120e11 generic
|
|
2539
|
+
uid=f120e12 generic
|
|
2540
|
+
uid=f120e13 paragraph value="Jerome, explore relevant opportunities with Harmonic"
|
|
2541
|
+
uid=f120e14 paragraph value="Get the latest jobs and industry news"
|
|
2542
|
+
uid=f120e15 link "Follow" url="https://www.linkedin.com/li/tscp/sct?destinationUrl=http%3A%2F%2Fwww.linkedin.com%2Fcompany%2F5918%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%22CwEAAAGd8asizzGIAppzcKWMlVLoQF25UvKZQ3aUUJ5zO1y_YQ5JLEsgu7oOpmLlhQTVD-2Bvy3l8r0pivcYNPp77dOlUwY4kaA49sFOuQYh9IiSSJLKuHYXyM91ORd_XBwrpRS0O1jjJh1W6Ll6XIQOb6WtLtZRuj8qzwAaCI7K-M03DM3_bJ4rqn675xFYruiPV8SgK8nK0XqINkxz2Zn2NGezu5F_jQrTzaP6lZKs_7y0FJ2yrvsU1gg_Sc2jESPKNGiU22Kp1MGq1d6kV_ogVuGuXGs5M3SMLAfnOQEpDxNWtcmwJ6QX-S6hg4olVsCS_Tt6_cm0UBktfsXMU0q6I2vZpeUQ07SrcMfPj6pbYfv0Lwowu_FQ_2nwI0O4CZklpCYfdw9rc21dy2qhjnO_azF6Qlyy3GR5oDi9KIPKIa5Q_pt0ot94O9HmybtNIVdiQQVlV5Nf4745budvwASQQkcT432qjjgDN2z93sVVl6bnFLeiyY10MCMdcIvT_8UxUoZ-5bUdONnVD7rcn0UBZuTigRCqs87YBC5Lqdh2OvjHC_ifnsyFmCrhsr6hzcrsBJxznOjkVDgUsyIt0aRHfIjHhA6zVZQZHvD1FW6FuMmwO8cowXl0xpvTbCGud3X34ddIyIuMO2ix-yEXthjwKWSdOT48uqAJTvI2pGb2LtnDSpQYDaaiezzYenS_ItAE1H_St4Dgvi0tTDVNOeeUHDFH-g2z62pUmtQYAE1rnTPVQPVB0ucdmaSD-he0mUleISQHJXEptwPxL-3LKfBpfNlF3Q2GMjAtnKO9vy6vJVxMPwi7Ux9ypeKMxje33LAJxe9MW1NbnO1b5tuevHP_ZyNVV7sDsqLA_zzYFI7xS8V2ECbj4QuowSYPEkPwyJk7z2XWfF5jS1PnL3VcUBwVnBK6tLEnWivbdGnCczugoicxnr346yc8mGDhMWPTjopSq9W8FKstRvMEiV1SzOAT0-XimhW6VRckYR96uoRPn_9we6MKl9xnQcs4G-OT9WYcolx8-f5jLq0g7hFpzvgo689Cgpe1YsipxFj2g5fmxXJMJTYLAJtAGCUGqqXcecjySXAZ7RHiMDl6ZZ2wlwNHuyKVZ3j4OxELV6c9VxcFL8ME%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%223106d1c1-023b-4ad1-b032-a6ec3f7170a9%22%7D%2C%22time%22%3A1777876017820%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"
|
|
2543
|
+
uid=f120e16 generic
|
|
2544
|
+
uid=f120e17 paragraph value="Promoted"
|
|
2545
|
+
uid=f120e18 button "Ad Options"
|
|
2546
|
+
uid=f120e19 img
|
|
2547
|
+
uid=f120e23 generic value="Ad Options"
|
|
2548
|
+
uid=e3442 generic
|
|
2549
|
+
uid=e3446 generic
|
|
2550
|
+
uid=e3447 heading "People you may know" level="2"
|
|
2551
|
+
uid=e3448 generic value="People you may know"
|
|
2552
|
+
uid=e3449 generic value="People you may know"
|
|
2553
|
+
uid=e3450 paragraph
|
|
2554
|
+
uid=e3451 generic value="From Jon's school"
|
|
2555
|
+
uid=e3452 generic value="From Jon's school"
|
|
2556
|
+
uid=e3453 generic
|
|
2557
|
+
uid=e3454 list
|
|
2558
|
+
uid=e3455 listitem
|
|
2559
|
+
uid=e3456 generic
|
|
2560
|
+
uid=e3458 link "Chris Crookes" url="https://www.linkedin.com/in/chris-crookes-bimbox"
|
|
2561
|
+
uid=e3461 img "Chris Crookes"
|
|
2562
|
+
uid=e3462 generic
|
|
2563
|
+
uid=e3464 link "Chris Crookes Founder & Managing Director at BIMBox" url="https://www.linkedin.com/in/chris-crookes-bimbox?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAOs82IBAlT6SzOfye7GedE_qG6f6oSQUBY"
|
|
2564
|
+
uid=e3465 generic
|
|
2565
|
+
uid=e3468 generic
|
|
2566
|
+
uid=e3469 generic value="Chris Crookes"
|
|
2567
|
+
uid=e3470 generic value="Chris Crookes"
|
|
2568
|
+
uid=e3473 img
|
|
2569
|
+
uid=e3478 generic
|
|
2570
|
+
uid=e3479 generic value="Founder & Managing Director at BIMBox"
|
|
2571
|
+
uid=e3480 generic value="Founder & Managing Director at BIMBox"
|
|
2572
|
+
uid=e3482 list
|
|
2573
|
+
uid=e3483 listitem
|
|
2574
|
+
uid=e3485 button "Invite Chris Crookes to connect"
|
|
2575
|
+
uid=e3486 img
|
|
2576
|
+
uid=e3488 generic value="Connect"
|
|
2577
|
+
uid=e3489 listitem
|
|
2578
|
+
uid=e3490 generic
|
|
2579
|
+
uid=e3492 link "Paul Treloar" url="https://www.linkedin.com/in/paul-treloar-2070a019"
|
|
2580
|
+
uid=e3495 img "Paul Treloar"
|
|
2581
|
+
uid=e3496 generic
|
|
2582
|
+
uid=e3498 link "Paul Treloar Head of Business support at Sci-Tech Daresbury" url="https://www.linkedin.com/in/paul-treloar-2070a019?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAO_-ycBIvrxcYRYpg9hUNdouD4oiRp5Q24"
|
|
2583
|
+
uid=e3502 generic
|
|
2584
|
+
uid=e3503 generic value="Paul Treloar"
|
|
2585
|
+
uid=e3504 generic value="Paul Treloar"
|
|
2586
|
+
uid=e3508 generic
|
|
2587
|
+
uid=e3509 generic value="Head of Business support at Sci-Tech Daresbury"
|
|
2588
|
+
uid=e3510 generic value="Head of Business support at Sci-Tech Daresbury"
|
|
2589
|
+
uid=e3512 list
|
|
2590
|
+
uid=e3513 listitem
|
|
2591
|
+
uid=e3515 button "Invite Paul Treloar to connect"
|
|
2592
|
+
uid=e3516 img
|
|
2593
|
+
uid=e3518 generic value="Connect"
|
|
2594
|
+
uid=e3519 listitem
|
|
2595
|
+
uid=e3520 generic
|
|
2596
|
+
uid=e3522 link "Mark Shaw" url="https://www.linkedin.com/in/aboutshaw"
|
|
2597
|
+
uid=e3525 img "Mark Shaw"
|
|
2598
|
+
uid=e3526 generic
|
|
2599
|
+
uid=s394 unknown url="https://www.linkedin.com/in/aboutshaw?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAkIQE4BrOYwyHeWYNgPezXsh2-2ie0rwYM"
|
|
2600
|
+
uid=e3529 generic
|
|
2601
|
+
uid=e3532 generic
|
|
2602
|
+
uid=e3533 generic value="Mark Shaw"
|
|
2603
|
+
uid=e3534 generic value="Mark Shaw"
|
|
2604
|
+
uid=e3537 img
|
|
2605
|
+
uid=e3542 generic
|
|
2606
|
+
uid=e3543 generic value="De-risking Fuel Transition: Expert; Solutions for a Sustainable Future"
|
|
2607
|
+
uid=e3544 generic value="De-risking Fuel Transition: Expert; Solutions for a Sustainable Future"
|
|
2608
|
+
uid=e3546 list
|
|
2609
|
+
uid=e3547 listitem
|
|
2610
|
+
uid=e3549 button "Invite Mark Shaw to connect"
|
|
2611
|
+
uid=e3550 img
|
|
2612
|
+
uid=e3552 generic value="Connect"
|
|
2613
|
+
uid=e3553 listitem
|
|
2614
|
+
uid=e3554 generic
|
|
2615
|
+
uid=e3556 link "Sara Anne Fossum" url="https://www.linkedin.com/in/sara-anne-fossum-950bb4150"
|
|
2616
|
+
uid=e3559 img "Sara Anne Fossum"
|
|
2617
|
+
uid=e3560 generic
|
|
2618
|
+
uid=e3562 link "Sara Anne Fossum Founder & CEO @ Vyve" url="https://www.linkedin.com/in/sara-anne-fossum-950bb4150?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAACR8H0wBV_onoDaxgTMfSm2dlyrp23gmMCI"
|
|
2619
|
+
uid=e3563 generic
|
|
2620
|
+
uid=e3566 generic
|
|
2621
|
+
uid=e3567 generic value="Sara Anne Fossum"
|
|
2622
|
+
uid=e3568 generic value="Sara Anne Fossum"
|
|
2623
|
+
uid=e3571 img
|
|
2624
|
+
uid=e3576 generic
|
|
2625
|
+
uid=e3577 generic value="Founder & CEO @ Vyve"
|
|
2626
|
+
uid=e3578 generic value="Founder & CEO @ Vyve"
|
|
2627
|
+
uid=e3580 list
|
|
2628
|
+
uid=e3581 listitem
|
|
2629
|
+
uid=e3583 button "Invite Sara Anne Fossum to connect"
|
|
2630
|
+
uid=e3584 img
|
|
2631
|
+
uid=e3586 generic value="Connect"
|
|
2632
|
+
uid=e3587 listitem
|
|
2633
|
+
uid=e3588 generic
|
|
2634
|
+
uid=e3590 link "Greg Law" url="https://www.linkedin.com/in/gregthelaw"
|
|
2635
|
+
uid=e3593 img "Greg Law"
|
|
2636
|
+
uid=e3594 generic
|
|
2637
|
+
uid=e3596 link "Greg Law Founder/CEO at Undo ¦ Agentic Debugging for Large Scale Codebases" url="https://www.linkedin.com/in/gregthelaw?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAACeocIBseWuQz-qQ4oX5HkpDHCbioBEHzY"
|
|
2638
|
+
uid=e3597 generic
|
|
2639
|
+
uid=e3600 generic
|
|
2640
|
+
uid=e3601 generic value="Greg Law"
|
|
2641
|
+
uid=e3602 generic value="Greg Law"
|
|
2642
|
+
uid=e3605 img
|
|
2643
|
+
uid=e3606 img
|
|
2644
|
+
uid=e3611 generic
|
|
2645
|
+
uid=e3612 generic value="Founder/CEO at Undo ¦ Agentic Debugging for Large Scale Codebases"
|
|
2646
|
+
uid=e3613 generic value="Founder/CEO at Undo ¦ Agentic Debugging for Large Scale Codebases"
|
|
2647
|
+
uid=e3615 list
|
|
2648
|
+
uid=e3616 listitem
|
|
2649
|
+
uid=e3618 button "Invite Greg Law to connect"
|
|
2650
|
+
uid=e3619 img
|
|
2651
|
+
uid=e3621 generic value="Connect"
|
|
2652
|
+
uid=e3624 button "Show more"
|
|
2653
|
+
uid=e3625 img
|
|
2654
|
+
uid=e3627 generic value="Show more"
|
|
2655
|
+
uid=e3630 generic
|
|
2656
|
+
uid=e3632 iframe
|
|
2657
|
+
uid=f121e3 generic
|
|
2658
|
+
uid=f121e4 banner
|
|
2659
|
+
uid=f121e6 img
|
|
2660
|
+
uid=f121e7 img
|
|
2661
|
+
uid=f121e11 img
|
|
2662
|
+
uid=f121e15 link "Crédit agricole" url="https://www.linkedin.com/li/tscp/sct?destinationUrl=http%3A%2F%2Fwww.linkedin.com%2Fcompany%2F9481746%2Fjobs&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%22CwEAAAGd8asiuKbYpyeAZLXTHTrWhF64OGKySB8BA2DJq-EFP6eAcPRXXQIYDYcW1Kb7Ei7ruYcORfHd_n0HxVnkFHOGk2s5hgeIHUsysKJ-1G4NI32Pd1HMgf-FifT3oAZiafQhe29RDv-PXt1r-z-X7S7S7PYwBDUD4Hoq0470AsyOzRbNr_I__6kKPL6Zi9Jh8SI4a6tsgM2AM3VtgBJ-gaexoyMS-FxSF4Q6hzqN3bgTcSxUThyJRdivytZie95gVjmiW4Ld4ueOhcyXMJFDIkz93X78n55skD1wfPfpXkzG800ykQzE2RsewGWF0fGcAGGvbntplNvGQbV9HEaWPG5jZ_1AH8CHdOTf1snjFEhH7awFdkNDWWd9dj5ljng-14rOMdtHBseTcS7G9wZcFl8kCF_yzTIP9gYxq6KrJCP-Ke2mvHCDxqDnkFR2HNKBE3RUTDJSkxT7gjP872xeRI0LlMhl7V0sbKvo7HL55N55ufXXvmUDkoZrUsr43ZA2Y83ishVGiRTWHZh9XPDHWlxB0gnnWXaiPpmiZ-zYFsExw5XjOkOGA--QFSwqFWkKNEht2KValsER9-jEHIoxRv3UniB_LPCbPN49uLfGgmGjqDL6sAZQr8EMuzBD-nzk1e1TTLTPSAA68fMbcOPfActwAfL8tWvnH5OatK1iGtiHfcHTTHRvLUd_RRr67XnN4ttfTNsljec4gqzUDbLdIvaIqqkkdbW8WZYCnSzHg9l30JXaRE4gax2EHc4bcUHsSR4a8tu35OyhJqUd_uFdONO_700NrVIfbWMH8oq7k4g_zbnINkWCmiUV4vy_2WGYy50wsJcYJpqk-F2-nnlRMUG5fA51Hc1ffIvScNmliP1HCJPCGKDrD_AaFdwYM5OZlsrDLmj-Np7H4aSLo_ZV_lWUojW6bZLljJcSarRVuz6v9sjA-2yYUq4HpXaALlL2-HJjUG66TGB7uQ_CwS_NWladexYpu2WffvEwQn-682TzWh87ajbSwJJeB6W78j50LrlYpy6X6mcGFjsnC1TBVnM1lDH80cHbj0gHheZTN9G57LpxKHov7KrgSyENPUpQKFtQv-nxYDCqXJycyja7HyQ2RHnoCX3SKuKxekcTDFCZL3Hi_IAotd-m1oNxwpg53SDSYXZl-6WTKkMjE-SzdMi1AUaZ6zUjvYvI5j2a%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%225fd516cd-8693-4325-b694-d50e5fbe276e%22%7D%2C%22time%22%3A1777876017822%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"
|
|
2663
|
+
uid=f121e16 img "Crédit agricole"
|
|
2664
|
+
uid=f121e17 generic
|
|
2665
|
+
uid=f121e18 paragraph value="Promoted"
|
|
2666
|
+
uid=f121e19 button "Ad Options"
|
|
2667
|
+
uid=f121e20 img
|
|
2668
|
+
uid=f121e24 generic value="Ad Options"
|
|
2669
|
+
uid=f121e25 generic
|
|
2670
|
+
uid=f121e26 link "Crédit agricole" url="https://www.linkedin.com/li/tscp/sct?destinationUrl=http%3A%2F%2Fwww.linkedin.com%2Fcompany%2F9481746%2Fjobs&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%22CwEAAAGd8asiuKbYpyeAZLXTHTrWhF64OGKySB8BA2DJq-EFP6eAcPRXXQIYDYcW1Kb7Ei7ruYcORfHd_n0HxVnkFHOGk2s5hgeIHUsysKJ-1G4NI32Pd1HMgf-FifT3oAZiafQhe29RDv-PXt1r-z-X7S7S7PYwBDUD4Hoq0470AsyOzRbNr_I__6kKPL6Zi9Jh8SI4a6tsgM2AM3VtgBJ-gaexoyMS-FxSF4Q6hzqN3bgTcSxUThyJRdivytZie95gVjmiW4Ld4ueOhcyXMJFDIkz93X78n55skD1wfPfpXkzG800ykQzE2RsewGWF0fGcAGGvbntplNvGQbV9HEaWPG5jZ_1AH8CHdOTf1snjFEhH7awFdkNDWWd9dj5ljng-14rOMdtHBseTcS7G9wZcFl8kCF_yzTIP9gYxq6KrJCP-Ke2mvHCDxqDnkFR2HNKBE3RUTDJSkxT7gjP872xeRI0LlMhl7V0sbKvo7HL55N55ufXXvmUDkoZrUsr43ZA2Y83ishVGiRTWHZh9XPDHWlxB0gnnWXaiPpmiZ-zYFsExw5XjOkOGA--QFSwqFWkKNEht2KValsER9-jEHIoxRv3UniB_LPCbPN49uLfGgmGjqDL6sAZQr8EMuzBD-nzk1e1TTLTPSAA68fMbcOPfActwAfL8tWvnH5OatK1iGtiHfcHTTHRvLUd_RRr67XnN4ttfTNsljec4gqzUDbLdIvaIqqkkdbW8WZYCnSzHg9l30JXaRE4gax2EHc4bcUHsSR4a8tu35OyhJqUd_uFdONO_700NrVIfbWMH8oq7k4g_zbnINkWCmiUV4vy_2WGYy50wsJcYJpqk-F2-nnlRMUG5fA51Hc1ffIvScNmliP1HCJPCGKDrD_AaFdwYM5OZlsrDLmj-Np7H4aSLo_ZV_lWUojW6bZLljJcSarRVuz6v9sjA-2yYUq4HpXaALlL2-HJjUG66TGB7uQ_CwS_NWladexYpu2WffvEwQn-682TzWh87ajbSwJJeB6W78j50LrlYpy6X6mcGFjsnC1TBVnM1lDH80cHbj0gHheZTN9G57LpxKHov7KrgSyENPUpQKFtQv-nxYDCqXJycyja7HyQ2RHnoCX3SKuKxekcTDFCZL3Hi_IAotd-m1oNxwpg53SDSYXZl-6WTKkMjE-SzdMi1AUaZ6zUjvYvI5j2a%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%225fd516cd-8693-4325-b694-d50e5fbe276e%22%7D%2C%22time%22%3A1777876017822%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"
|
|
2671
|
+
uid=f121e27 heading "Crédit agricole" level="2"
|
|
2672
|
+
uid=f121e29 paragraph value="Jerome, Crédit agricole is hiring!"
|
|
2673
|
+
uid=f121e31 paragraph value="Ready for your next opportunity?"
|
|
2674
|
+
uid=f121e32 link "Follow" url="https://www.linkedin.com/li/tscp/sct?destinationUrl=http%3A%2F%2Fwww.linkedin.com%2Fcompany%2F9481746%2Fjobs%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%22CwEAAAGd8asiuFojVD_XXhNngacMy-sntutJ9A9P8STT4RlU1v0RDO36DKqCAw79CdsjL34ur4Wvg8dlzwC3jZlZB878UGL8bARngUWNYnUHJoFBM_arI0CZtVIL3e_nSgbEuW8ikT51yM_TC9fgzWg1a0ibBansjhQGuGOqika94ierR6h20JIbJS_jtDFm7qLVDw4teBfqR8_vVxPWYIaboh-VMEyzTc7H_cFNgIbNPH3JAdKffml_cUMZ99gsNYzDbgWdlSxPZMD7NCD7uYPK_UE-9tO_CfICLsQXDA5TR_TCPsbRGRt9rfzD0lzPKSPkrCelUm7TrcMagxlClrLu8D30sEgk93E7fb7O1T8az8Waf0Z_yfPHYwM0owdyRpgVMXXs8We39MkXRRMfu0-9RICmnlaQmvCMTbxc0tbijS4siudtQ73g1N07XiSf7ad84iccVFvqRpFCST1__corFFwYEUXA4gwn05Lt4DGo5tevCEQsvoKOfI5Ukn2lCPjsqXgpP14WVr5zXr4CN8AkHH9LooI3CfXiXmrYB9oh7sE0neWvbaTRPvhH4cfYKauEuNgzp2HxCViyXmd3cvFmCjvlAMMecoRNh1KbqTWiB2uJKAroNFiGoytJUWpx_YgXx_cxgDz8KpmS2GraGzgdJM6hDjpnEtP70HFXHc76pbfKwyvXupDGvH5lZUwnnNQtkbCXtcsiIVlU4LKBtx0SF6G-VoZyDYKHT3nU4iXRNrvjP7iHBefOpf1ziPeqS0btjBcTZkzpJHfqCsLq08PeeAwGTr3SJUWnD5AQHSjh5C3f9WT7nKWKF14cXuoOty5yMVbDibu6YuARZK1gSAUiEsV77ULZBW2Bu6MRbpzK840x9Z00p7RC_RHpq-ZIYl7FsYatwN9pzPJYqqv5rkofHFAT_dtHrdeKZooDJerCvZiFfuTz1eKPFePBLJv1qsI2aLgqUMspChn_KDCrKXw45ir7eeXzdUuTDLsQ548voiIV2n7lNyBKyJkaGCpg4pNKFwvK3iZ6sclBW1kQ1b-ut8uYuyzzOu0fulZxSfCLffmq1p6NNwfgI6h54wViL_LnWgU6wWyvxuwj2ipvkAYDFEDBWHsIK0Cy5HFJMrQWSpccRCgNK0Imneh8yVAcQPCTdRdTP_5HC00Bk3fny9DMMZupmfOW17a94Y2oPMo874sbYNMVxspqK2Mf5GrVzbP08GP03u-7QzUUIRclymw%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%221e5e520c-805a-4933-adab-18994a07da19%22%7D%2C%22time%22%3A1777876017822%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"
|
|
2675
|
+
uid=e3633 generic "LinkedIn Footer Content"
|
|
2676
|
+
uid=e3634 generic
|
|
2677
|
+
uid=e3635 paragraph value="Accessibilité: partiellement conforme"
|
|
2678
|
+
uid=e3636 list
|
|
2679
|
+
uid=e3637 listitem
|
|
2680
|
+
uid=e3638 link "About" url="https://about.linkedin.com/"
|
|
2681
|
+
uid=e3639 generic value="About"
|
|
2682
|
+
uid=e3640 listitem
|
|
2683
|
+
uid=e3641 link "Accessibility" url="https://www.linkedin.com/accessibility"
|
|
2684
|
+
uid=e3642 generic value="Accessibility"
|
|
2685
|
+
uid=e3643 listitem
|
|
2686
|
+
uid=e3644 link "Help Center" url="https://www.linkedin.com/help/linkedin?trk=footer_d_flagship3_profile_view_base_recent_activity_content_view"
|
|
2687
|
+
uid=e3645 generic value="Help Center"
|
|
2688
|
+
uid=e3646 listitem
|
|
2689
|
+
uid=e3648 button "Privacy & Terms"
|
|
2690
|
+
uid=e3650 generic
|
|
2691
|
+
uid=s395 StaticText "Privacy & Terms"
|
|
2692
|
+
uid=e3651 img
|
|
2693
|
+
uid=e3653 listitem
|
|
2694
|
+
uid=e3654 link "Ad Choices" url="https://www.linkedin.com/help/linkedin/answer/62931"
|
|
2695
|
+
uid=e3655 generic value="Ad Choices"
|
|
2696
|
+
uid=e3656 listitem
|
|
2697
|
+
uid=e3657 link "Advertising" url="https://www.linkedin.com/ad/start?trk=n_nav_ads_rr"
|
|
2698
|
+
uid=e3658 generic value="Advertising"
|
|
2699
|
+
uid=e3659 listitem
|
|
2700
|
+
uid=e3661 button "Business Services"
|
|
2701
|
+
uid=e3663 generic
|
|
2702
|
+
uid=s396 StaticText "Business Services"
|
|
2703
|
+
uid=e3664 img
|
|
2704
|
+
uid=e3666 listitem
|
|
2705
|
+
uid=e3669 button "Get the LinkedIn app"
|
|
2706
|
+
uid=e3670 listitem
|
|
2707
|
+
uid=e3671 button "More options" value="More"
|
|
2708
|
+
uid=e3672 generic
|
|
2709
|
+
uid=e3673 img "LinkedIn"
|
|
2710
|
+
uid=e3674 img
|
|
2711
|
+
uid=s397 StaticText "LinkedIn Corporation © 2026"
|
|
2712
|
+
uid=s398 generic
|
|
2713
|
+
uid=s399 generic
|
|
2714
|
+
uid=s400 complementary
|
|
2715
|
+
uid=e3676 generic
|
|
2716
|
+
uid=e3677 generic
|
|
2717
|
+
uid=e3679 generic
|
|
2718
|
+
uid=e3680 generic
|
|
2719
|
+
uid=e3681 img "Jerome Etienne"
|
|
2720
|
+
uid=e3683 generic value="Status is online"
|
|
2721
|
+
uid=e3684 button "You are on the messaging overlay. Press enter to open the list of conversations."
|
|
2722
|
+
uid=e3685 generic
|
|
2723
|
+
uid=e3686 generic value="Messaging"
|
|
2724
|
+
uid=e3687 generic value="You are on the messaging overlay. Press enter to open the list of conversations."
|
|
2725
|
+
uid=e3688 generic
|
|
2726
|
+
uid=e3690 button "Open messenger dropdown menu"
|
|
2727
|
+
uid=e3691 img "Open messenger dropdown menu"
|
|
2728
|
+
uid=e3694 button "Compose message"
|
|
2729
|
+
uid=e3695 img
|
|
2730
|
+
uid=e3697 generic value="Compose message"
|
|
2731
|
+
uid=e3698 button "You are on the messaging overlay. Press enter to open the list of conversations."
|
|
2732
|
+
uid=e3699 img
|
|
2733
|
+
uid=e3701 generic value="You are on the messaging overlay. Press enter to open the list of conversations."
|
|
2734
|
+
uid=e3702 generic
|
|
2735
|
+
uid=e3704 heading "Page inboxes" level="3"
|
|
2736
|
+
uid=e3705 generic
|
|
2737
|
+
uid=e3706 generic value="Click to see affiliated inboxes"
|
|
2738
|
+
uid=e3707 button "Page inboxes"
|
|
2739
|
+
uid=e3708 img
|
|
2740
|
+
uid=s401 complementary "AI-powered assistant to get help with your career, jobs etc"
|