Compare commits
61 Commits
1ed973da2e
...
1.20.0
| Author | SHA1 | Date | |
|---|---|---|---|
| b88cebce61 | |||
| f0085852da | |||
|
|
f19da9579b | ||
| 09c0f5b5b0 | |||
|
|
de2bb48fd5 | ||
| 02d223e087 | |||
|
|
cc591fa65a | ||
| c92e22f38f | |||
|
|
608ed7aa56 | ||
| be27ab07c6 | |||
|
|
34635bb757 | ||
| 7799aa971e | |||
|
|
2fd90af200 | ||
| eb8201af6f | |||
|
|
d8345b2949 | ||
| a800e7f32f | |||
|
|
cff9ab3a3f | ||
| a505a0ea0e | |||
| 11ada52ff8 | |||
| fa934f6407 | |||
|
|
f561136f44 | ||
|
|
27ad6989ac | ||
|
|
e9c26ded42 | ||
| 2a1fa7ec3f | |||
|
|
7c3d8cb5a5 | ||
| d171a8916e | |||
|
|
3d63a7d97c | ||
| 827d240c4c | |||
|
|
e75dd65eba | ||
| 7b931d639b | |||
|
|
8fb388b22a | ||
| e33e2c72af | |||
|
|
e6e763e6b7 | ||
| 41d984e603 | |||
|
|
7878893e5b | ||
| 3bb7219589 | |||
| 5c347ab685 | |||
|
|
4dd82b1676 | ||
| 1869be9a19 | |||
|
|
7621ff8fb0 | ||
| 3820922535 | |||
|
|
e37517047f | ||
| ac7e1c6b66 | |||
|
|
f3c8747d30 | ||
| 816708741f | |||
| e3370bded5 | |||
| 18529618ad | |||
| 577fa8b339 | |||
| 35641f8a60 | |||
| 2c1f5c3059 | |||
| a1f88b8bb4 | |||
| 59a23af308 | |||
| fc9d07751f | |||
| 88f3322305 | |||
| 9dcb31ca0b | |||
| 6731b23c2a | |||
| 3f7bfc6a60 | |||
| d347e3d97d | |||
| 7421a07837 | |||
| c5e46cef5c | |||
| bee02ef666 |
@@ -2,36 +2,36 @@ name: Deploy Quartz site to Pages
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
VERSION_FRAGMENT: minor
|
VERSION_FRAGMENT: minor
|
||||||
|
DEPLOYMENT_NAMESPACE: luxuries
|
||||||
|
DEPLOYMENT_LABEL: garden
|
||||||
|
KUBE_HOST: kubernetes.default.svc
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- v4
|
- 'main'
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
id-token: write
|
id-token: write
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: "pages"
|
|
||||||
cancel-in-progress: false
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0 # Fetch all history for git info
|
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 22
|
node-version: 24
|
||||||
- name: Install Dependencies
|
- uses: actions/checkout@v6
|
||||||
run: npm ci
|
id: get garden content
|
||||||
- name: Build Quartz
|
with:
|
||||||
run: npx quartz build
|
fetch-depth: 0 # Fetch all history for git info
|
||||||
- name: Read Current Version
|
path: content
|
||||||
|
- run: git config --global user.name "Build Pipeline"
|
||||||
|
- run: git config --global user.email "noreply@example.com"
|
||||||
|
- name: get current version
|
||||||
run: echo "::set-env name=CURRENT_VERSION::$(cat version.txt)"
|
run: echo "::set-env name=CURRENT_VERSION::$(cat version.txt)"
|
||||||
|
working-directory: content
|
||||||
- name: Increment Semantic Version
|
- name: Increment Semantic Version
|
||||||
uses: christian-draeger/increment-semantic-version@1.2.3
|
uses: christian-draeger/increment-semantic-version@1.2.3
|
||||||
id: bump_version
|
id: bump_version
|
||||||
@@ -39,13 +39,58 @@ jobs:
|
|||||||
current-version: ${{ env.CURRENT_VERSION }}
|
current-version: ${{ env.CURRENT_VERSION }}
|
||||||
version-fragment: ${{ env.VERSION_FRAGMENT }}
|
version-fragment: ${{ env.VERSION_FRAGMENT }}
|
||||||
- run: echo "${{ steps.bump_version.outputs.next-version }}" > version.txt
|
- run: echo "${{ steps.bump_version.outputs.next-version }}" > version.txt
|
||||||
|
working-directory: content
|
||||||
- name: Read Current Version
|
- name: Read Current Version
|
||||||
run: echo "::set-env name=CURRENT_VERSION::$(cat version.txt)"
|
run: echo "::set-env name=CURRENT_VERSION::$(cat version.txt)"
|
||||||
- run: git add version.txt && git commit -m "${{ env.VERSION_FRAGMENT }} version increment [skip actions]" && git tag ${{ env.CURRENT_VERSION }}
|
working-directory: content
|
||||||
- uses: akkuman/gitea-release-action@v1
|
- run: git add version.txt && git commit -m "${{ env.VERSION_FRAGMENT }} version increment [skip actions]"
|
||||||
env:
|
working-directory: content
|
||||||
NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18
|
- uses: actions/checkout@v6
|
||||||
|
id: clone quartz repo
|
||||||
with:
|
with:
|
||||||
|
# Repository name with owner. For example, actions/checkout
|
||||||
|
# Default: ${{ github.repository }}
|
||||||
|
repository: 'jackyzha0/quartz.git'
|
||||||
|
github-server-url: 'https://github.com/'
|
||||||
|
fetch-depth: 1
|
||||||
|
persist-credentials: false
|
||||||
|
token: ${{secrets.GH_PAT}}
|
||||||
|
ref: v4
|
||||||
|
path: quartz
|
||||||
|
- name: Overlay quartz configs
|
||||||
|
run: cp -fR content/.quartz/** quartz
|
||||||
|
- name: Copy the content
|
||||||
|
run: cp -fR content/** quartz/content
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: npm ci
|
||||||
|
working-directory: quartz
|
||||||
|
- name: Cache Modules
|
||||||
|
id: cache-npm
|
||||||
|
uses: actions/cache@v5
|
||||||
|
with:
|
||||||
|
path: node_modules
|
||||||
|
key: ${{ runner.os }}-node_modules_quartz
|
||||||
|
- name: Build Quartz
|
||||||
|
run: npx quartz build
|
||||||
|
working-directory: quartz
|
||||||
|
- run: tar czf www.tar.gz -C quartz public
|
||||||
|
- uses: akkuman/gitea-release-action@v1
|
||||||
|
with:
|
||||||
|
tag_name: ${{env.CURRENT_VERSION}}
|
||||||
|
name: ${{env.CURRENT_VERSION}}
|
||||||
files: |-
|
files: |-
|
||||||
public/**
|
www.tar.gz
|
||||||
token: ${{secrets.CI_ACCESS}}
|
token: ${{secrets.CI_ACCESS}}
|
||||||
|
- run: git push
|
||||||
|
working-directory: content
|
||||||
|
deploy:
|
||||||
|
needs: [ build ]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions-hub/kubectl@master
|
||||||
|
env:
|
||||||
|
KUBE_HOST: ${{ env.KUBE_HOST }}
|
||||||
|
KUBE_CERTIFICATE: ${{ secrets.KUBE_CERTIFICATE }}
|
||||||
|
KUBE_TOKEN: ${{ secrets.GARDEN_TOKEN }}
|
||||||
|
with:
|
||||||
|
args: delete pods -n ${{env.DEPLOYMENT_NAMESPACE}} -l app=${{ env.DEPLOYMENT_LABEL}}
|
||||||
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.obsidian/workspace.json
|
||||||
5
.obsidian/appearance.json
vendored
@@ -1 +1,4 @@
|
|||||||
{}
|
{
|
||||||
|
"theme": "obsidian",
|
||||||
|
"cssTheme": "Tokyo Night"
|
||||||
|
}
|
||||||
3
.obsidian/community-plugins.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"hoarder-sync"
|
||||||
|
]
|
||||||
28
.obsidian/plugins/hoarder-sync/data.json
vendored
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
{
|
||||||
|
"apiKey": "ak2_930f821671cbe46c8d7e_0df2443dba6dd9fe1dc8ebf52d6ac96e",
|
||||||
|
"apiEndpoint": "https://kara.werats.gay/api/v1",
|
||||||
|
"syncFolder": "KaraKeep",
|
||||||
|
"attachmentsFolder": "KaraKeep/attachments",
|
||||||
|
"syncIntervalMinutes": 60,
|
||||||
|
"lastSyncTimestamp": 1775978416433,
|
||||||
|
"updateExistingFiles": false,
|
||||||
|
"excludeArchived": true,
|
||||||
|
"onlyFavorites": false,
|
||||||
|
"syncNotesToHoarder": true,
|
||||||
|
"syncHighlights": true,
|
||||||
|
"onlyBookmarksWithHighlights": false,
|
||||||
|
"excludedTags": [
|
||||||
|
"private"
|
||||||
|
],
|
||||||
|
"includedTags": [],
|
||||||
|
"downloadAssets": true,
|
||||||
|
"syncDeletions": false,
|
||||||
|
"deletionAction": "delete",
|
||||||
|
"deletionTag": "deleted",
|
||||||
|
"archiveFolder": "Hoarder/deleted",
|
||||||
|
"handleArchivedBookmarks": false,
|
||||||
|
"archivedBookmarkAction": "delete",
|
||||||
|
"archivedBookmarkTag": "archived",
|
||||||
|
"archivedBookmarkFolder": "Hoarder/archived",
|
||||||
|
"useObsidianRequest": false
|
||||||
|
}
|
||||||
1507
.obsidian/plugins/hoarder-sync/main.js
vendored
Normal file
9
.obsidian/plugins/hoarder-sync/manifest.json
vendored
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"id": "hoarder-sync",
|
||||||
|
"name": "Hoarder Sync",
|
||||||
|
"version": "1.12.0",
|
||||||
|
"minAppVersion": "1.7.0",
|
||||||
|
"description": "Sync your Hoarder bookmarks",
|
||||||
|
"author": "Jordan Hofker",
|
||||||
|
"isDesktopOnly": false
|
||||||
|
}
|
||||||
74
.obsidian/plugins/hoarder-sync/styles.css
vendored
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
.hoarder-wide-input {
|
||||||
|
width: var(--size-4-100);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hoarder-medium-input {
|
||||||
|
width: var(--size-4-75);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hoarder-small-input {
|
||||||
|
width: var(--size-4-50);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hoarder-suggestion-dropdown {
|
||||||
|
background: var(--background-primary);
|
||||||
|
border: 1px solid var(--background-modifier-border);
|
||||||
|
border-radius: var(--size-4-1);
|
||||||
|
box-shadow: 0 var(--size-2-1) var(--size-4-2) rgba(0, 0, 0, 0.1);
|
||||||
|
max-height: var(--size-4-50);
|
||||||
|
overflow-y: auto;
|
||||||
|
width: var(--size-4-50);
|
||||||
|
position: absolute;
|
||||||
|
z-index: 1000;
|
||||||
|
display: block;
|
||||||
|
opacity: 1;
|
||||||
|
transition: opacity 150ms ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hoarder-suggestion-dropdown-hidden {
|
||||||
|
display: none;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hoarder-suggestion-item {
|
||||||
|
padding: var(--size-4-2) var(--size-4-3);
|
||||||
|
cursor: var(--cursor);
|
||||||
|
transition: background-color 100ms ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hoarder-suggestion-item:hover {
|
||||||
|
background: var(--background-modifier-hover);
|
||||||
|
}
|
||||||
|
|
||||||
|
.setting-item-description {
|
||||||
|
margin-bottom: var(--size-4-4);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Karakeep Highlight Callouts */
|
||||||
|
.callout[data-callout="karakeep-yellow"] {
|
||||||
|
--callout-color: 254, 240, 138;
|
||||||
|
--callout-icon: lucide-highlighter;
|
||||||
|
}
|
||||||
|
|
||||||
|
.callout[data-callout="karakeep-red"] {
|
||||||
|
--callout-color: 254, 202, 202;
|
||||||
|
--callout-icon: lucide-highlighter;
|
||||||
|
}
|
||||||
|
|
||||||
|
.callout[data-callout="karakeep-green"] {
|
||||||
|
--callout-color: 187, 247, 208;
|
||||||
|
--callout-icon: lucide-highlighter;
|
||||||
|
}
|
||||||
|
|
||||||
|
.callout[data-callout="karakeep-blue"] {
|
||||||
|
--callout-color: 191, 219, 254;
|
||||||
|
--callout-icon: lucide-highlighter;
|
||||||
|
}
|
||||||
|
|
||||||
|
.callout[data-callout^="karakeep-"] {
|
||||||
|
margin: var(--size-4-2) 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.callout[data-callout^="karakeep-"] .callout-content {
|
||||||
|
padding: var(--size-4-2) var(--size-4-3);
|
||||||
|
}
|
||||||
6
.obsidian/themes/Tokyo Night/manifest.json
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"name": "Tokyo Night",
|
||||||
|
"version": "1.1.6",
|
||||||
|
"minAppVersion": "0.0.1",
|
||||||
|
"author": "tcmmichaelb139"
|
||||||
|
}
|
||||||
2129
.obsidian/themes/Tokyo Night/theme.css
vendored
Normal file
191
.obsidian/workspace.json
vendored
@@ -1,191 +0,0 @@
|
|||||||
{
|
|
||||||
"main": {
|
|
||||||
"id": "93f95e17534c86af",
|
|
||||||
"type": "split",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"id": "b2f320fa7e71846d",
|
|
||||||
"type": "tabs",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"id": "fb3397b33e4538d8",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "markdown",
|
|
||||||
"state": {
|
|
||||||
"file": "Welcome.md",
|
|
||||||
"mode": "source",
|
|
||||||
"source": false
|
|
||||||
},
|
|
||||||
"icon": "lucide-file",
|
|
||||||
"title": "Welcome"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"direction": "vertical"
|
|
||||||
},
|
|
||||||
"left": {
|
|
||||||
"id": "bd4fe75fc8fae7d8",
|
|
||||||
"type": "split",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"id": "959c949bbf10067c",
|
|
||||||
"type": "tabs",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"id": "ce0058b798b778c7",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "file-explorer",
|
|
||||||
"state": {
|
|
||||||
"sortOrder": "alphabetical",
|
|
||||||
"autoReveal": false
|
|
||||||
},
|
|
||||||
"icon": "lucide-folder-closed",
|
|
||||||
"title": "Files"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "4c40ba92de996318",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "search",
|
|
||||||
"state": {
|
|
||||||
"query": "",
|
|
||||||
"matchingCase": false,
|
|
||||||
"explainSearch": false,
|
|
||||||
"collapseAll": false,
|
|
||||||
"extraContext": false,
|
|
||||||
"sortOrder": "alphabetical"
|
|
||||||
},
|
|
||||||
"icon": "lucide-search",
|
|
||||||
"title": "Search"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "29b1909b7ceaf71c",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "bookmarks",
|
|
||||||
"state": {},
|
|
||||||
"icon": "lucide-bookmark",
|
|
||||||
"title": "Bookmarks"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"direction": "horizontal",
|
|
||||||
"width": 300
|
|
||||||
},
|
|
||||||
"right": {
|
|
||||||
"id": "a7dbadf7443b58e7",
|
|
||||||
"type": "split",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"id": "fd76441b2ea4cc17",
|
|
||||||
"type": "tabs",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"id": "5d1c487f22a589a0",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "backlink",
|
|
||||||
"state": {
|
|
||||||
"file": "Welcome.md",
|
|
||||||
"collapseAll": false,
|
|
||||||
"extraContext": false,
|
|
||||||
"sortOrder": "alphabetical",
|
|
||||||
"showSearch": false,
|
|
||||||
"searchQuery": "",
|
|
||||||
"backlinkCollapsed": false,
|
|
||||||
"unlinkedCollapsed": true
|
|
||||||
},
|
|
||||||
"icon": "links-coming-in",
|
|
||||||
"title": "Backlinks for Welcome"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "be101156a49bde9f",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "outgoing-link",
|
|
||||||
"state": {
|
|
||||||
"file": "Welcome.md",
|
|
||||||
"linksCollapsed": false,
|
|
||||||
"unlinkedCollapsed": true
|
|
||||||
},
|
|
||||||
"icon": "links-going-out",
|
|
||||||
"title": "Outgoing links from Welcome"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "0dc58354f7c07656",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "tag",
|
|
||||||
"state": {
|
|
||||||
"sortOrder": "frequency",
|
|
||||||
"useHierarchy": true,
|
|
||||||
"showSearch": false,
|
|
||||||
"searchQuery": ""
|
|
||||||
},
|
|
||||||
"icon": "lucide-tags",
|
|
||||||
"title": "Tags"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "6cd5a0cae1586f09",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "all-properties",
|
|
||||||
"state": {
|
|
||||||
"sortOrder": "frequency",
|
|
||||||
"showSearch": false,
|
|
||||||
"searchQuery": ""
|
|
||||||
},
|
|
||||||
"icon": "lucide-archive",
|
|
||||||
"title": "All properties"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "a9f7b063e406721a",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "outline",
|
|
||||||
"state": {
|
|
||||||
"file": "Welcome.md",
|
|
||||||
"followCursor": false,
|
|
||||||
"showSearch": false,
|
|
||||||
"searchQuery": ""
|
|
||||||
},
|
|
||||||
"icon": "lucide-list",
|
|
||||||
"title": "Outline of Welcome"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"direction": "horizontal",
|
|
||||||
"width": 300,
|
|
||||||
"collapsed": true
|
|
||||||
},
|
|
||||||
"left-ribbon": {
|
|
||||||
"hiddenItems": {
|
|
||||||
"switcher:Open quick switcher": false,
|
|
||||||
"graph:Open graph view": false,
|
|
||||||
"canvas:Create new canvas": false,
|
|
||||||
"daily-notes:Open today's daily note": false,
|
|
||||||
"templates:Insert template": false,
|
|
||||||
"command-palette:Open command palette": false,
|
|
||||||
"bases:Create new base": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"active": "fb3397b33e4538d8",
|
|
||||||
"lastOpenFiles": [
|
|
||||||
"version.txt",
|
|
||||||
"Welcome.md"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
102
.quartz/quartz.config.ts
Normal file
@@ -0,0 +1,102 @@
|
|||||||
|
import { QuartzConfig } from "./quartz/cfg"
|
||||||
|
import * as Plugin from "./quartz/plugins"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Quartz 4 Configuration
|
||||||
|
*
|
||||||
|
* See https://quartz.jzhao.xyz/configuration for more information.
|
||||||
|
*/
|
||||||
|
const config: QuartzConfig = {
|
||||||
|
configuration: {
|
||||||
|
pageTitle: "Garden De'Femme",
|
||||||
|
pageTitleSuffix: "",
|
||||||
|
enableSPA: true,
|
||||||
|
enablePopovers: true,
|
||||||
|
analytics: {
|
||||||
|
provider: "plausible",
|
||||||
|
},
|
||||||
|
locale: "en-US",
|
||||||
|
baseUrl: "garden.werats.gay",
|
||||||
|
ignorePatterns: ["private", "templates", ".obsidian",".quartz",".gitea","version.txt"],
|
||||||
|
defaultDateType: "modified",
|
||||||
|
theme: {
|
||||||
|
fontOrigin: "googleFonts",
|
||||||
|
cdnCaching: true,
|
||||||
|
typography: {
|
||||||
|
header: "Cardo",
|
||||||
|
body: "Viaoda Libre ",
|
||||||
|
code: "Courier Prime",
|
||||||
|
},
|
||||||
|
colors: {
|
||||||
|
lightMode: {
|
||||||
|
light: "#faf8f8",
|
||||||
|
lightgray: "#e5e5e5",
|
||||||
|
gray: "#b8b8b8",
|
||||||
|
darkgray: "#4e4e4e",
|
||||||
|
dark: "#2b2b2b",
|
||||||
|
secondary: "#284b63",
|
||||||
|
tertiary: "#84a59d",
|
||||||
|
highlight: "rgba(143, 159, 169, 0.15)",
|
||||||
|
textHighlight: "#fff23688",
|
||||||
|
},
|
||||||
|
darkMode: {
|
||||||
|
light: "#161618",
|
||||||
|
lightgray: "#393639",
|
||||||
|
gray: "#646464",
|
||||||
|
darkgray: "#d4d4d4",
|
||||||
|
dark: "#ebebec",
|
||||||
|
secondary: "#7b97aa",
|
||||||
|
tertiary: "#84a59d",
|
||||||
|
highlight: "rgba(143, 159, 169, 0.15)",
|
||||||
|
textHighlight: "#b3aa0288",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
plugins: {
|
||||||
|
transformers: [
|
||||||
|
Plugin.FrontMatter(),
|
||||||
|
Plugin.CreatedModifiedDate({
|
||||||
|
priority: ["frontmatter", "git", "filesystem"],
|
||||||
|
}),
|
||||||
|
Plugin.SyntaxHighlighting({
|
||||||
|
theme: {
|
||||||
|
light: "github-light",
|
||||||
|
dark: "github-dark",
|
||||||
|
},
|
||||||
|
keepBackground: false,
|
||||||
|
}),
|
||||||
|
Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }),
|
||||||
|
Plugin.GitHubFlavoredMarkdown(),
|
||||||
|
Plugin.TableOfContents(),
|
||||||
|
Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }),
|
||||||
|
Plugin.Description(),
|
||||||
|
Plugin.Latex({ renderEngine: "katex" }),
|
||||||
|
],
|
||||||
|
filters: [Plugin.RemoveDrafts()],
|
||||||
|
emitters: [
|
||||||
|
Plugin.AliasRedirects(),
|
||||||
|
Plugin.ComponentResources(),
|
||||||
|
Plugin.ContentPage(),
|
||||||
|
Plugin.FolderPage(),
|
||||||
|
Plugin.TagPage(),
|
||||||
|
Plugin.ContentIndex({
|
||||||
|
enableSiteMap: true,
|
||||||
|
enableRSS: true,
|
||||||
|
}),
|
||||||
|
Plugin.Assets(),
|
||||||
|
Plugin.Static(),
|
||||||
|
Plugin.Favicon(),
|
||||||
|
Plugin.NotFoundPage(),
|
||||||
|
// Comment out CustomOgImages to speed up build time
|
||||||
|
Plugin.CustomOgImages({
|
||||||
|
colorScheme: "lightMode", // what colors to use for generating image, same as theme colors from config, valid values are "darkMode" and "lightMode"
|
||||||
|
width: 1200, // width to generate with (in pixels)
|
||||||
|
height: 630, // height to generate with (in pixels)
|
||||||
|
excludeRoot: false // wether to exclude "/" index path to be excluded from auto generated images (false = use auto, true = use default og image)
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
export default config
|
||||||
1
.quartz/styles/custom.scss
Normal file
@@ -0,0 +1 @@
|
|||||||
|
@use "themes";
|
||||||
4734
.quartz/styles/themes/_index.scss
Normal file
31
KaraKeep/2026-03-31-@i-on-X.md
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "ukujhdtcwozw4wyxh8zpmxol"
|
||||||
|
url: |
|
||||||
|
https://vxtwitter.com/CH4R10T_TV/status/1991751083115581932
|
||||||
|
title: |
|
||||||
|
@i on X
|
||||||
|
date: 2026-03-31T07:27:58.000Z
|
||||||
|
modified: 2026-04-06T02:48:18.000Z
|
||||||
|
tags:
|
||||||
|
- xcom
|
||||||
|
- privacy-extensions
|
||||||
|
- troubleshooting
|
||||||
|
- website-issues
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
screenshot: "[[KaraKeep/attachments/815aa7c2-efa8-4167-b129-5d5c9349f78a-@i-on-X-Screenshot.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# @i on X
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://vxtwitter.com/CH4R10T_TV/status/1991751083115581932)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/ukujhdtcwozw4wyxh8zpmxol)
|
||||||
35
KaraKeep/2026-03-31-Brutalism-The-University-of.md
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "pkpg95z0qkhqcb4aids4mjs4"
|
||||||
|
url: |
|
||||||
|
https://www.reddit.com/r/ArchitecturePorn/comments/sq4tox/brutalism_the_university_of_missouris_school_of/
|
||||||
|
title: |
|
||||||
|
Brutalism: The University of Missouri's School of Music, constructed in 2020
|
||||||
|
date: 2026-03-31T06:16:14.000Z
|
||||||
|
modified: 2026-04-06T02:45:58.000Z
|
||||||
|
tags:
|
||||||
|
- aesthetics
|
||||||
|
- architecture
|
||||||
|
- brutalism
|
||||||
|
- university-buildings
|
||||||
|
- missouri-school-of-music
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/d4ae7d43-46d3-4c73-99d0-9277ad8e4dc4-Brutalism-The-University-of.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/716a074c-458e-4920-a52a-76a968311924-Brutalism-The-University-of.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Brutalism: The University of Missouri's School of Music, constructed in 2020
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://www.reddit.com/r/ArchitecturePorn/comments/sq4tox/brutalism_the_university_of_missouris_school_of/)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/pkpg95z0qkhqcb4aids4mjs4)
|
||||||
33
KaraKeep/2026-03-31-Ingredient-Flavors.md
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "ato3ru1vioz0cuqhc9mhhtwj"
|
||||||
|
url:
|
||||||
|
title: Ingredient Flavors
|
||||||
|
date: 2026-03-31T05:32:49.000Z
|
||||||
|
modified: 2026-04-06T02:40:58.000Z
|
||||||
|
tags:
|
||||||
|
- pokopia
|
||||||
|
- Know-Your-Food
|
||||||
|
- Pokopia-Flavour-Guide
|
||||||
|
- Peppas-Adventures
|
||||||
|
- Food-and-Spice
|
||||||
|
- Colorful-Characters-with-Fruit-and-Vegetable-Bodies
|
||||||
|
- Bright-Colors-for-a-Young-Audience
|
||||||
|
- Spicy-to-Sweet-Sensations
|
||||||
|
- Sugar-Free-Options
|
||||||
|
- Fun-Names-for-Food-and-Drinks
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
image: "[[KaraKeep/attachments/2e3a5c92-e8e3-40e3-9469-09f5abaf2b8c-Ingredient-Flavors.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Ingredient Flavors
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/ato3ru1vioz0cuqhc9mhhtwj)
|
||||||
36
KaraKeep/2026-03-31-Lake-Como,-Italy.md
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "tyj6fz339r6g9bzani3av4rx"
|
||||||
|
url: |
|
||||||
|
https://www.reddit.com/r/ArchitecturalRevival/comments/1krthma/lake_como_italy/
|
||||||
|
title: |
|
||||||
|
Lake Como, Italy
|
||||||
|
date: 2026-03-31T06:14:49.000Z
|
||||||
|
modified: 2026-04-06T02:45:44.000Z
|
||||||
|
tags:
|
||||||
|
- aesthetics
|
||||||
|
- italy
|
||||||
|
- lake-como
|
||||||
|
- architecture
|
||||||
|
- travel
|
||||||
|
- italian-lakes
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/1b12aab0-bae6-46c7-bd58-89e25e60eded-Lake-Como,-Italy-Banner-Image.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/ad9d6ba0-fa5a-4d74-b6b6-416477c85347-Lake-Como,-Italy-Screenshot.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Lake Como, Italy
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://www.reddit.com/r/ArchitecturalRevival/comments/1krthma/lake_como_italy/)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/tyj6fz339r6g9bzani3av4rx)
|
||||||
33
KaraKeep/2026-03-31-Make-This-Lumber-Farm-in-Pokopia.md
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "evwe55xtsqmfla8blk0fnxlt"
|
||||||
|
url: |
|
||||||
|
https://www.youtube.com/watch?v=-53lXfWMoZg
|
||||||
|
title: Make This Lumber Farm in Pokopia
|
||||||
|
date: 2026-03-31T05:24:42.000Z
|
||||||
|
modified: 2026-04-06T02:24:03.000Z
|
||||||
|
tags:
|
||||||
|
- pokopia
|
||||||
|
- daily-mix
|
||||||
|
- lumber-farm
|
||||||
|
- youtube-videos
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/ea5bdc41-7565-4839-9b85-64266555d7cd-Make-This-Lumber-Farm-in.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/3bfdf769-818a-4c83-b602-a6f5ea3d522f-Make-This-Lumber-Farm-in.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Make This Lumber Farm in Pokopia
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://www.youtube.com/watch?v=-53lXfWMoZg)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/evwe55xtsqmfla8blk0fnxlt)
|
||||||
36
KaraKeep/2026-03-31-Pig-Tail-Bridge-№54,-Huddersfield.md
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "xjkmqh2i559xy6qrjg2nrguh"
|
||||||
|
url: |
|
||||||
|
https://www.reddit.com/r/bridgeporn/comments/10a2y4k/pig_tail_bridge_54_huddersfield_narrow_canal/
|
||||||
|
title: |
|
||||||
|
Pig Tail Bridge №54, Huddersfield Narrow Canal, Yorkshire, England [2048x1365]
|
||||||
|
date: 2026-03-31T06:15:37.000Z
|
||||||
|
modified: 2026-04-06T02:45:51.000Z
|
||||||
|
tags:
|
||||||
|
- aesthetics
|
||||||
|
- bridges
|
||||||
|
- canals
|
||||||
|
- yorkshire
|
||||||
|
- england
|
||||||
|
- photography
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/3fb22b0f-b6a2-4123-bec3-1206e3f0691d-Pig-Tail-Bridge-№54,.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/f65116b2-fa97-4d35-b514-fd80108ac35f-Pig-Tail-Bridge-№54,.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Pig Tail Bridge №54, Huddersfield Narrow Canal, Yorkshire, England [2048x1365]
|
||||||
|
|
||||||
|
![Pig Tail Bridge №54, Huddersfield Narrow Canal, Yorkshire, England [2048x1365] - Banner Image](KaraKeep/attachments/3fb22b0f-b6a2-4123-bec3-1206e3f0691d-Pig-Tail-Bridge-№54,.jpg)
|
||||||
|
|
||||||
|
![Pig Tail Bridge №54, Huddersfield Narrow Canal, Yorkshire, England [2048x1365] - Screenshot](KaraKeep/attachments/f65116b2-fa97-4d35-b514-fd80108ac35f-Pig-Tail-Bridge-№54,.jpg)
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://www.reddit.com/r/bridgeporn/comments/10a2y4k/pig_tail_bridge_54_huddersfield_narrow_canal/)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/xjkmqh2i559xy6qrjg2nrguh)
|
||||||
36
KaraKeep/2026-03-31-Poke-Dolls-Guide.md
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "z5q7xqn106n4rpzrc961rzha"
|
||||||
|
url:
|
||||||
|
title: Poke Dolls Guide
|
||||||
|
date: 2026-03-31T05:31:50.000Z
|
||||||
|
modified: 2026-04-06T04:34:44.000Z
|
||||||
|
tags:
|
||||||
|
- pokopia
|
||||||
|
- anime
|
||||||
|
- Yo-Kai-NAMCO
|
||||||
|
- Mobile-RPG
|
||||||
|
- Monster-Collection
|
||||||
|
- Bird-Character
|
||||||
|
- Fishing-Game
|
||||||
|
- Rainy-Day
|
||||||
|
- Pokemon-Go
|
||||||
|
- Mini-Game
|
||||||
|
- Smartphone-Game
|
||||||
|
- Free-to-Play-Game
|
||||||
|
- Japanese-Game
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
image: "[[KaraKeep/attachments/c3afda7a-3966-4fe8-9ac0-d526aefee8fb-Poke-Dolls-Guide.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Poke Dolls Guide
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/z5q7xqn106n4rpzrc961rzha)
|
||||||
39
KaraKeep/2026-03-31-Post-by-@catchymemes-·-1-video.md
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "ikl6bebyly5yvqdpvyt9r5xq"
|
||||||
|
url: |
|
||||||
|
https://www.tumblr.com/catchymemes/706396571603009536/the-image-captures-the-miraculous-moment-when-the
|
||||||
|
title: |
|
||||||
|
Post by @catchymemes · 1 video
|
||||||
|
date: 2026-03-31T06:14:04.000Z
|
||||||
|
modified: 2026-04-06T04:38:44.000Z
|
||||||
|
tags:
|
||||||
|
- aesthetics
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/5d323927-385d-4fee-a7b0-7db63a9587b6-Post-by-@catchymemes-·-1.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/49df76ff-0cd2-4f0a-afcb-5cd2f9143423-Post-by-@catchymemes-·-1.jpg]]"
|
||||||
|
additional:
|
||||||
|
- "[[KaraKeep/attachments/274b6b25-3992-4802-ad38-2a9b9c7d14b3-Post-by-@catchymemes-·-1.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Post by @catchymemes · 1 video
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
💬 69 🔁 18555 ❤️ 24072 · The image captures the miraculous moment when the rays of sun hit a rare cloud called a pile cloud, and the angle and other subtle conditions are reflected in a divine rai…
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://www.tumblr.com/catchymemes/706396571603009536/the-image-captures-the-miraculous-moment-when-the)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/ikl6bebyly5yvqdpvyt9r5xq)
|
||||||
39
KaraKeep/2026-03-31-Reblog-by-@thevisualvamp-·-1-image.md
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "p5jtsv0rokiyze22mizex7b5"
|
||||||
|
url: |
|
||||||
|
https://www.tumblr.com/thevisualvamp/734440155670298624/architecture
|
||||||
|
title: |
|
||||||
|
Reblog by @thevisualvamp · 1 image
|
||||||
|
date: 2026-03-31T06:11:29.000Z
|
||||||
|
modified: 2026-04-06T04:36:44.000Z
|
||||||
|
tags:
|
||||||
|
- aesthetics
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/8cc40447-f750-4bf2-a935-69c7a35a2923-Reblog-by-@thevisualvamp-·-1.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/1e1ad172-26b3-4c81-884c-a51cee7bd6e1-Reblog-by-@thevisualvamp-·-1.jpg]]"
|
||||||
|
additional:
|
||||||
|
- "[[KaraKeep/attachments/534d005f-c408-40d6-839c-d71374da5f74-Reblog-by-@thevisualvamp-·-1.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Reblog by @thevisualvamp · 1 image
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
💬 0 🔁 22 ❤️ 55 · Architecture
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://www.tumblr.com/thevisualvamp/734440155670298624/architecture)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/p5jtsv0rokiyze22mizex7b5)
|
||||||
45
KaraKeep/2026-03-31-Stamp-Values.md
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "swg831dryshnjg5mdccdd805"
|
||||||
|
url:
|
||||||
|
title: Stamp Values
|
||||||
|
date: 2026-03-31T05:32:14.000Z
|
||||||
|
modified: 2026-04-06T02:39:44.000Z
|
||||||
|
tags:
|
||||||
|
- pokopia
|
||||||
|
- Machine-Learning
|
||||||
|
- Artificial-Intelligence
|
||||||
|
- Pokemon
|
||||||
|
- Education
|
||||||
|
- Reading
|
||||||
|
- Research
|
||||||
|
- Bookmarking
|
||||||
|
- Web-Development
|
||||||
|
- Computer-Literacy
|
||||||
|
- Cryptocurrency
|
||||||
|
- Math
|
||||||
|
- Digital-Marketing
|
||||||
|
- Science--Technology
|
||||||
|
- Anime-and-Manga
|
||||||
|
- Information-Technology
|
||||||
|
- Health-and-Fitness
|
||||||
|
- Cybersecurity
|
||||||
|
- Writing
|
||||||
|
- Language-Learning
|
||||||
|
- Marketing-Strategy
|
||||||
|
- Fintech
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
image: "[[KaraKeep/attachments/e3288a47-b14b-479a-8728-648abafacba4-Stamp-Values.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Stamp Values
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/swg831dryshnjg5mdccdd805)
|
||||||
38
KaraKeep/2026-03-31-Unique-Guns-in-Anime-The-Caster-Gun.md
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "aeythd8rqa8bvs2ez996v6tf"
|
||||||
|
url: |
|
||||||
|
https://youtube.com/shorts/42dEPEp_L68?si=l33oAgTFdAa3AlRH
|
||||||
|
title: Unique Guns in Anime - The Caster Gun (Outlaw Star)
|
||||||
|
date: 2026-03-31T07:29:08.000Z
|
||||||
|
modified: 2026-04-06T02:48:57.000Z
|
||||||
|
tags:
|
||||||
|
- 90sanime
|
||||||
|
- retroanime
|
||||||
|
- anime-weapons
|
||||||
|
- outlaw-star
|
||||||
|
- sci-fi-anime
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/6d6e6e3a-387d-4286-8b6b-bb103288c1cc-Unique-Guns-in-Anime-The.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/34ad0016-d238-45ab-96ed-2b5e80dc7063-Unique-Guns-in-Anime-The.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Unique Guns in Anime - The Caster Gun (Outlaw Star)
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
The Caster Gun from Outlaw Star (1998) is one of the most unique weapons in anime history.Instead of firing bullets, it uses Caster Shells - spell cartridges…
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://youtube.com/shorts/42dEPEp_L68?si=l33oAgTFdAa3AlRH)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/aeythd8rqa8bvs2ez996v6tf)
|
||||||
39
KaraKeep/2026-03-31-Unique-Guns-in-Anime-–-GRAVITON.md
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "qxy09to4zvdc97gkenjm3z0u"
|
||||||
|
url: |
|
||||||
|
https://youtube.com/shorts/Uz2zfstUt0o?si=ywuL07xWY_A9t1Em
|
||||||
|
title: |
|
||||||
|
Unique Guns in Anime – GRAVITON (Silent Möbius, 1991 - 1998)
|
||||||
|
date: 2026-03-31T07:28:46.000Z
|
||||||
|
modified: 2026-04-06T02:48:39.000Z
|
||||||
|
tags:
|
||||||
|
- anime-weapons
|
||||||
|
- cyberpunkanime
|
||||||
|
- 90sanime
|
||||||
|
- retroanime
|
||||||
|
- silent-mobius
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/79994532-0e74-4e46-9ab3-9768f611a314-Unique-Guns-in-Anime-–.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/35d79559-fd59-4ee6-baa8-05b5d5773860-Unique-Guns-in-Anime-–.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Unique Guns in Anime – GRAVITON (Silent Möbius, 1991 - 1998)
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
The Graviton is one of the most iconic weapons from the Silent Möbius universe.Powered by advanced science and supernatural energy, this gravity-based firear…
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://youtube.com/shorts/Uz2zfstUt0o?si=ywuL07xWY_A9t1Em)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/qxy09to4zvdc97gkenjm3z0u)
|
||||||
39
KaraKeep/2026-03-31-alaska-on-X-“once-you-realize-that.md
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "uv97p0js6v79x8i73r3i6zbi"
|
||||||
|
url: |
|
||||||
|
https://fxtwitter.com/i/status/1977782816445448439/
|
||||||
|
title: |
|
||||||
|
alaska on X: “once you realize that u are inherently and inescapably evil it becomes a lot easier to be good” / X
|
||||||
|
date: 2026-03-31T07:27:37.000Z
|
||||||
|
modified: 2026-04-06T02:48:11.000Z
|
||||||
|
tags:
|
||||||
|
- social-media
|
||||||
|
- x-twitter
|
||||||
|
- trends
|
||||||
|
- online-conversations
|
||||||
|
- digital-content
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/4d928b50-cc22-447d-94f4-c46742e02691-alaska-on-X-“once-you-realize.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/4ef28cbc-4c2e-4264-ad78-9d74bd0b138b-alaska-on-X-“once-you-realize.jpg]]"
|
||||||
|
additional:
|
||||||
|
- "[[KaraKeep/attachments/35e7303a-292e-4fe6-b58e-66231b5f4c33-alaska-on-X-“once-you-realize.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# alaska on X: “once you realize that u are inherently and inescapably evil it becomes a lot easier to be good” / X
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://fxtwitter.com/i/status/1977782816445448439/)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/uv97p0js6v79x8i73r3i6zbi)
|
||||||
39
KaraKeep/2026-03-31-paint-recipes.md
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "j29ikc9szen3xkt0rtayqk41"
|
||||||
|
url:
|
||||||
|
title: paint recipes
|
||||||
|
date: 2026-03-31T05:27:39.000Z
|
||||||
|
modified: 2026-04-06T04:31:16.000Z
|
||||||
|
tags:
|
||||||
|
- pokopia
|
||||||
|
- Bookmarking
|
||||||
|
- Pokemon
|
||||||
|
- Artificial-Intelligence
|
||||||
|
- Automatic-text-tagging
|
||||||
|
- Read-it-later-app
|
||||||
|
- paint
|
||||||
|
- brushstroke
|
||||||
|
- candypaintedberries
|
||||||
|
- crush
|
||||||
|
- graphicdesign
|
||||||
|
- pacman
|
||||||
|
- icon
|
||||||
|
- video-games
|
||||||
|
- sweet
|
||||||
|
- fruit
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
image: "[[KaraKeep/attachments/67e88391-3daf-4a68-8574-14349790a5c2-paint-recipes.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# paint recipes
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/j29ikc9szen3xkt0rtayqk41)
|
||||||
35
KaraKeep/2026-03-31-pinko🐬👽-on-X-”@145k4-a-lot-of.md
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "fm14kr8n4jxrry191rzhqug9"
|
||||||
|
url: |
|
||||||
|
https://fxtwitter.com/i/status/1977862670436196776/
|
||||||
|
title: |
|
||||||
|
pinko🐬👽 on X: ”@145k4 a lot of people’s ethics literally start with “I am incapable of evil, and everything I do has a justification and is therefore good” and they work backwards from there. A good test of this is whether or not they can admit that eating animals is clearly wrong, vegan or not.” / X
|
||||||
|
date: 2026-03-31T07:26:54.000Z
|
||||||
|
modified: 2026-04-06T02:47:42.000Z
|
||||||
|
tags:
|
||||||
|
- ethics
|
||||||
|
- moral-philosophy
|
||||||
|
- animal-rights
|
||||||
|
- veganism
|
||||||
|
- social-commentary
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/4f0fe47b-484e-4b8d-8634-3ff31573299a-pinko🐬👽-on-X-”@145k4-a-lot.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/79336178-5338-4e3c-b0f6-244fd2fd6a34-pinko🐬👽-on-X-”@145k4-a-lot.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# pinko🐬👽 on X: ”@145k4 a lot of people’s ethics literally start with “I am incapable of evil, and everything I do has a justification and is therefore good” and they work backwards from there. A good test of this is whether or not they can admit that eating animals is clearly wrong, vegan or not.” / X
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://fxtwitter.com/i/status/1977862670436196776/)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/fm14kr8n4jxrry191rzhqug9)
|
||||||
33
KaraKeep/2026-03-31-the-happy-smiler.md
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "unhf2x5smpji8mpwueqso67u"
|
||||||
|
url:
|
||||||
|
title: the happy smiler
|
||||||
|
date: 2026-03-31T06:38:01.000Z
|
||||||
|
modified: 2026-04-06T02:47:27.000Z
|
||||||
|
tags:
|
||||||
|
- Emotional-support
|
||||||
|
- AI
|
||||||
|
- Text
|
||||||
|
- Chatbot
|
||||||
|
- Cream
|
||||||
|
- Smiley
|
||||||
|
- Hello-Kitty
|
||||||
|
- Nighttime
|
||||||
|
- Smilie-Face
|
||||||
|
- Social-Media-App
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
image: "[[KaraKeep/attachments/c78ddd37-e319-48e9-aa44-9d05e7ec5535-the-happy-smiler.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# the happy smiler
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/unhf2x5smpji8mpwueqso67u)
|
||||||
45
KaraKeep/2026-03-31-シア口ア-on-X-”これが速いのか分からないままブランチマイニングして.md
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "s62h8blr4hayz8yqcjggpd6o"
|
||||||
|
url: |
|
||||||
|
https://fxtwitter.com/i/status/2035888580040790369/
|
||||||
|
title: |
|
||||||
|
シア口ア on X: ”これが速いのか分からないままブランチマイニングしてる
|
||||||
|
Aボタン長押ししながら移動して壁越しで9マス分の鉱石がある場所を入れ替えをしている
|
||||||
|
無駄な素材が増えないのは利点 #NintendoSwitch2 #ぽこポケ #ぽこあポケモン https://t.co/tejaa8Gmlc” / X
|
||||||
|
date: 2026-03-31T05:28:36.000Z
|
||||||
|
modified: 2026-04-06T04:33:16.000Z
|
||||||
|
tags:
|
||||||
|
- pokopia
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/137010df-57bf-43b4-a5e3-acfc3ca97c19-シア口ア-on-X-”これが速いのか分からないままブランチマ.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/2afc00ea-3eb0-4b30-9926-9e9be37a0492-シア口ア-on-X-”これが速いのか分からないままブランチマ.jpg]]"
|
||||||
|
additional:
|
||||||
|
- "[[KaraKeep/attachments/413c02a0-da78-4819-b2e0-1663c00b2258-シア口ア-on-X-”これが速いのか分からないままブランチマ.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# シア口ア on X: ”これが速いのか分からないままブランチマイニングしてる
|
||||||
|
Aボタン長押ししながら移動して壁越しで9マス分の鉱石がある場所を入れ替えをしている
|
||||||
|
無駄な素材が増えないのは利点 #NintendoSwitch2 #ぽこポケ #ぽこあポケモン https://t.co/tejaa8Gmlc” / X
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://fxtwitter.com/i/status/2035888580040790369/)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/s62h8blr4hayz8yqcjggpd6o)
|
||||||
34
KaraKeep/2026-04-01-Bookmark-r52rx1vz27hvtt3e2capnr09.md
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "r52rx1vz27hvtt3e2capnr09"
|
||||||
|
url:
|
||||||
|
title: Bookmark-r52rx1vz27hvtt3e2capnr09-2026-04-01
|
||||||
|
date: 2026-04-01T19:21:55.000Z
|
||||||
|
modified: 2026-04-06T02:55:33.000Z
|
||||||
|
tags:
|
||||||
|
- anime
|
||||||
|
- Motivation
|
||||||
|
- Literature
|
||||||
|
- Humor
|
||||||
|
- Comic-illustrations
|
||||||
|
- Technology
|
||||||
|
- Digital-art
|
||||||
|
- Gaming-culture
|
||||||
|
- Pop-culture
|
||||||
|
- Webtoom
|
||||||
|
- Storytelling
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
image: "[[KaraKeep/attachments/a0a9d75a-abb2-4705-a850-ff88eb544645-Bookmark-r52rx1vz27hvtt3e2capn.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Bookmark-r52rx1vz27hvtt3e2capnr09-2026-04-01
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/r52rx1vz27hvtt3e2capnr09)
|
||||||
33
KaraKeep/2026-04-01-Catalytic-Converter-for-Hyundai.md
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "qgfxh11zyu7l693h4zuz8hg6"
|
||||||
|
url: |
|
||||||
|
https://www.ebay.com/itm/365355347481?mkcid=16&mkevt=1&mkrid=711-127632-2357-0&ssspo=ygqdzfrms-g&sssrc=4429486&ssuid=tkcw1yj4tec&stype=1&var=&widget_ver=artemis&media=SMS
|
||||||
|
title: |
|
||||||
|
Catalytic Converter for Hyundai Elantra Gt 2014-2017/Tucson 2014-2018 2.0L | eBay
|
||||||
|
date: 2026-04-01T16:59:13.000Z
|
||||||
|
modified: 2026-04-06T04:42:44.000Z
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/1c40397d-ae7d-4dd9-a50c-d35b8c581399-Catalytic-Converter-for.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/b15135b3-ba0e-4616-802f-86652a3b6494-Catalytic-Converter-for.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Catalytic Converter for Hyundai Elantra Gt 2014-2017/Tucson 2014-2018 2.0L | eBay
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
Hyundai Elantra 2014-2017 2.0L. Hyundai Elantra Gt 2014-2017 2.0L. Hyundai Tucson 2014-2018 2.0L. Hyundai Santa Fe Sport 2013-2016 2.0L. Hyundai Sonata 2011-2013 2.0L. Important Information Our products are carefully colored in the pictures to highlight their details.
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://www.ebay.com/itm/365355347481?mkcid=16&mkevt=1&mkrid=711-127632-2357-0&ssspo=ygqdzfrms-g&sssrc=4429486&ssuid=tkcw1yj4tec&stype=1&var=&widget_ver=artemis&media=SMS)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/qgfxh11zyu7l693h4zuz8hg6)
|
||||||
27
KaraKeep/2026-04-01-Daily-Planner.md
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "dze2dkzwmkuer489rjrhwnb8"
|
||||||
|
url: |
|
||||||
|
https://www.pokemon.com/static-assets/content-assets/cms2/pdf/video-game/pokemon-pokopia/daily-planner/daily-planner-en.pdf
|
||||||
|
title: Daily Planner
|
||||||
|
date: 2026-04-01T20:47:51.000Z
|
||||||
|
modified: 2026-04-06T02:22:04.000Z
|
||||||
|
tags:
|
||||||
|
- pokopia
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
screenshot: "[[KaraKeep/attachments/5dae84ab-e03b-4bb6-bb0f-2c22388015cb-Daily-Planner-Screenshot.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Daily Planner
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://www.pokemon.com/static-assets/content-assets/cms2/pdf/video-game/pokemon-pokopia/daily-planner/daily-planner-en.pdf)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/dze2dkzwmkuer489rjrhwnb8)
|
||||||
37
KaraKeep/2026-04-01-Manifold-Catalytic-Converter-674.md
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "j85iyripv07a4j5ab74v2s1h"
|
||||||
|
url: |
|
||||||
|
https://www.ebay.com/itm/196933283810?mkcid=16&mkevt=1&mkrid=711-127632-2357-0&ssspo=ZApSTwX1QEW&sssrc=4429486&ssuid=tkcw1yj4tec&stype=1&var=&widget_ver=artemis&media=SMS
|
||||||
|
title: |
|
||||||
|
Manifold Catalytic Converter 674-092 For HYUNDAI ELANTRA 2.0L 2017-2020 | eBay
|
||||||
|
date: 2026-04-01T16:59:01.000Z
|
||||||
|
modified: 2026-04-06T04:40:44.000Z
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/ecb5262d-3225-4cd3-a0fc-4cb6354c9a80-Manifold-Catalytic-Converter.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/ea288328-da05-4052-a325-d8c6b415e8df-Manifold-Catalytic-Converter.jpg]]"
|
||||||
|
additional:
|
||||||
|
- "[[KaraKeep/attachments/b567eb28-c60a-4986-9c52-48be624c59bd-Manifold-Catalytic-Converter.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Manifold Catalytic Converter 674-092 For HYUNDAI ELANTRA 2.0L 2017-2020 | eBay
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
For HYUNDAI ELANTRA 2.0L 2017-2020. R est assured, our Manifold Catalytic Converter is engineered for a precise fit, making installation quick and hassle-free. D esigned with superior durability in mind, our Manifold Catalytic Converter is built to last, providing you with dependable and long-lasting performance.
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://www.ebay.com/itm/196933283810?mkcid=16&mkevt=1&mkrid=711-127632-2357-0&ssspo=ZApSTwX1QEW&sssrc=4429486&ssuid=tkcw1yj4tec&stype=1&var=&widget_ver=artemis&media=SMS)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/j85iyripv07a4j5ab74v2s1h)
|
||||||
49
KaraKeep/2026-04-01-Shota-Ashida-on-Instagram.md
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "vtadg80hulyeb021jvv2ub9m"
|
||||||
|
url: |
|
||||||
|
https://www.instagram.com/p/DWbM4-Bk_Co/?img_index=3&igsh=MTJybW04MjlkMzVodA==
|
||||||
|
title: |
|
||||||
|
Shota Ashida on Instagram: ”春夏秋冬をアニメチックに
|
||||||
|
あなたはどの季節がお好きですか? Anime-style through all four seasons.
|
||||||
|
Which season do you like the most? #japan #日本の風景”
|
||||||
|
date: 2026-04-01T06:11:28.000Z
|
||||||
|
modified: 2026-04-06T02:49:07.000Z
|
||||||
|
tags:
|
||||||
|
- social-media
|
||||||
|
- instagram
|
||||||
|
- japan
|
||||||
|
- anime
|
||||||
|
- seasons
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/253497dc-0e09-43fc-ba19-35d6896403fd-Shota-Ashida-on-Instagram.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/59a504e6-be3d-4e20-8c6f-ceca79606e14-Shota-Ashida-on-Instagram.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Shota Ashida on Instagram: ”春夏秋冬をアニメチックに
|
||||||
|
あなたはどの季節がお好きですか? Anime-style through all four seasons.
|
||||||
|
Which season do you like the most? #japan #日本の風景”
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
11K likes, 30 comments - shota.mebakuro on March 28, 2026: ”春夏秋冬をアニメチックに
|
||||||
|
あなたはどの季節がお好きですか? Anime-style through all four seasons.
|
||||||
|
Which season do you like the most? #japan #日本の風景”.
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://www.instagram.com/p/DWbM4-Bk_Co/?img_index=3&igsh=MTJybW04MjlkMzVodA==)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/vtadg80hulyeb021jvv2ub9m)
|
||||||
27
KaraKeep/2026-04-02-image.md
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "stbl4j4dq4zrwhy11c9jyo8g"
|
||||||
|
url:
|
||||||
|
title: image
|
||||||
|
date: 2026-04-02T22:45:45.000Z
|
||||||
|
modified: 2026-04-07T06:53:07.000Z
|
||||||
|
tags:
|
||||||
|
- menagerie
|
||||||
|
- Personal-Growth
|
||||||
|
- Mindfulness
|
||||||
|
- Intention-Setting
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
image: "[[KaraKeep/attachments/a8816528-6fb8-4100-b2be-ba42bedeafab-image.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# image
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/stbl4j4dq4zrwhy11c9jyo8g)
|
||||||
30
KaraKeep/2026-04-03-IPv6-Network-(Auto)-Configuration.md
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "fuipdfi9brh5tbombsllongo"
|
||||||
|
url: |
|
||||||
|
https://egustafson.github.io/post/ipv6-dhcpv6/
|
||||||
|
title: |
|
||||||
|
IPv6 Network (Auto) Configuration | Stuff I've Figured Out
|
||||||
|
date: 2026-04-03T02:33:31.000Z
|
||||||
|
modified: 2026-04-06T04:44:44.000Z
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
screenshot: "[[KaraKeep/attachments/b4b61eef-3ac2-411c-ad91-4d20a30d4fb5-IPv6-Network-(Auto).jpg]]"
|
||||||
|
additional:
|
||||||
|
- "[[KaraKeep/attachments/2e755ad8-ce5f-4fb7-a3fa-d2e1391a54b7-IPv6-Network-(Auto).jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# IPv6 Network (Auto) Configuration | Stuff I've Figured Out
|
||||||
|
|
||||||
|
.jpg>)
|
||||||
|
|
||||||
|
.jpg>)
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://egustafson.github.io/post/ipv6-dhcpv6/)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/fuipdfi9brh5tbombsllongo)
|
||||||
22
KaraKeep/2026-04-04-soup-soup-soup.md
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "rs8osbfs8q41jcukaqezz1u1"
|
||||||
|
url:
|
||||||
|
title: soup soup soup
|
||||||
|
date: 2026-04-04T23:53:33.000Z
|
||||||
|
modified: 2026-04-06T04:46:44.000Z
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
image: "[[KaraKeep/attachments/01c8ffb7-7143-4455-891e-1e88f1291d49-soup-soup-soup.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# soup soup soup
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/rs8osbfs8q41jcukaqezz1u1)
|
||||||
37
KaraKeep/2026-04-06-Moon-music-Here’s-a-Spotify.md
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "e54j387lulsq3n9zmij2illm"
|
||||||
|
url: |
|
||||||
|
https://www.space.com/space-exploration/artemis/moon-music-heres-a-spotify-playlist-of-the-artemis-2-crews-wakeup-songs
|
||||||
|
title: |
|
||||||
|
Moon music: Here’s a Spotify playlist of the Artemis 2 crew’s wakeup songs
|
||||||
|
date: 2026-04-06T22:21:22.000Z
|
||||||
|
modified: 2026-04-06T22:25:06.000Z
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/7134b1d0-bdfd-40fe-a480-55afb8299509-Moon-music-Here’s-a-Spotify.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/3fe45c86-54f9-4ca6-a9de-6b097bbb9929-Moon-music-Here’s-a-Spotify.jpg]]"
|
||||||
|
additional:
|
||||||
|
- "[[KaraKeep/attachments/7c6a2c14-795c-4329-b047-dd39fdd2cdd4-Moon-music-Here’s-a-Spotify.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Moon music: Here’s a Spotify playlist of the Artemis 2 crew’s wakeup songs
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
So far, Mission Control has beamed up Chappell Roan and a cover of Passion Pit, among other songs.
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://www.space.com/space-exploration/artemis/moon-music-heres-a-spotify-playlist-of-the-artemis-2-crews-wakeup-songs)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/e54j387lulsq3n9zmij2illm)
|
||||||
37
KaraKeep/2026-04-06-Sorry-2026,-the-’90s-Did-Spring.md
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "wtyawzdfz8talj12ux50zvz7"
|
||||||
|
url: |
|
||||||
|
https://www.whowhatwear.com/fashion/outfit-ideas/best-celebrity-90s-looks-for-spring-2026
|
||||||
|
title: |
|
||||||
|
Sorry 2026, the ’90s Did Spring Dressing Better—5 Celeb Looks I’m Recreating Now
|
||||||
|
date: 2026-04-06T22:20:55.000Z
|
||||||
|
modified: 2026-04-06T22:23:06.000Z
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/2d58a9f3-0a16-411b-95b1-4adcc8bc92ed-Sorry-2026,-the-’90s-Did.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/7d68f162-32b8-4e15-962a-942c666edca1-Sorry-2026,-the-’90s-Did.jpg]]"
|
||||||
|
additional:
|
||||||
|
- "[[KaraKeep/attachments/3f7f6332-d864-43c4-8321-a87028fd4c0f-Sorry-2026,-the-’90s-Did.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Sorry 2026, the ’90s Did Spring Dressing Better—5 Celeb Looks I’m Recreating Now
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
In need of some inspiration for your new season wardrobe? Look to the 90s for a lesson in timeless spring dressing.
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://www.whowhatwear.com/fashion/outfit-ideas/best-celebrity-90s-looks-for-spring-2026)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/wtyawzdfz8talj12ux50zvz7)
|
||||||
29
KaraKeep/2026-04-06-armv6k-nintendo-3ds-The-rustc-book.md
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "jrhqiredjcmkjpzw44y0e6kd"
|
||||||
|
url: |
|
||||||
|
https://doc.rust-lang.org/rustc/platform-support/armv6k-nintendo-3ds.html
|
||||||
|
title: armv6k-nintendo-3ds - The rustc book
|
||||||
|
date: 2026-04-06T23:10:10.000Z
|
||||||
|
modified: 2026-04-06T23:12:16.000Z
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
screenshot: "[[KaraKeep/attachments/07d88e96-1c67-45a0-b42d-4c40ed8d2742-armv6k-nintendo-3ds-The-rustc.jpg]]"
|
||||||
|
additional:
|
||||||
|
- "[[KaraKeep/attachments/bcbfe09f-691f-4f9d-a343-ee531061a0c3-armv6k-nintendo-3ds-The-rustc.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# armv6k-nintendo-3ds - The rustc book
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://doc.rust-lang.org/rustc/platform-support/armv6k-nintendo-3ds.html)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/jrhqiredjcmkjpzw44y0e6kd)
|
||||||
33
KaraKeep/2026-04-06-image.md
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "jteb7d4l1jduj3tlpw2pe2im"
|
||||||
|
url:
|
||||||
|
title: image
|
||||||
|
date: 2026-04-06T19:41:29.000Z
|
||||||
|
modified: 2026-04-06T19:42:54.000Z
|
||||||
|
tags:
|
||||||
|
- politics
|
||||||
|
- campaigning
|
||||||
|
- presidential-race
|
||||||
|
- elections
|
||||||
|
- poliitics-campaign
|
||||||
|
- moral-values
|
||||||
|
- political-satire
|
||||||
|
- government-officials
|
||||||
|
- candidates
|
||||||
|
- american-politics
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
image: "[[KaraKeep/attachments/35bdf21d-0d00-43b0-a81c-04c4c79bf7c2-image.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# image
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/jteb7d4l1jduj3tlpw2pe2im)
|
||||||
22
KaraKeep/2026-04-06-shower-time.md
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "ohx64es2nfeyul689wwqy1kw"
|
||||||
|
url: |
|
||||||
|
https://images-ext-1.discordapp.net/external/KLXdYVrNHnVxVE2LsFrskRAiI07NOrFg2W6OGTtM39g/https/media.tenor.com/tKpAl23K2rMAAAPo/shower-time.mp4
|
||||||
|
title: shower time
|
||||||
|
date: 2026-04-06T21:46:13.000Z
|
||||||
|
modified: 2026-04-06T21:46:16.000Z
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# shower time
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://images-ext-1.discordapp.net/external/KLXdYVrNHnVxVE2LsFrskRAiI07NOrFg2W6OGTtM39g/https/media.tenor.com/tKpAl23K2rMAAAPo/shower-time.mp4)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/ohx64es2nfeyul689wwqy1kw)
|
||||||
39
KaraKeep/2026-04-07-Anker-Desk-Clamp-USB-Power-Strip.md
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "zfu368art9hpucg4u24rsl07"
|
||||||
|
url: |
|
||||||
|
https://www.anker.com/products/a9196-70w-desk-clamp-usb-power-strip?variant=46320398303382
|
||||||
|
title: |
|
||||||
|
Anker Desk Clamp USB Power Strip (70W) | Clutter-Free Desk - Anker US
|
||||||
|
date: 2026-04-07T07:06:53.000Z
|
||||||
|
modified: 2026-04-07T07:07:41.000Z
|
||||||
|
tags:
|
||||||
|
- power-strips
|
||||||
|
- usb-charging
|
||||||
|
- tech-accessories
|
||||||
|
- anker
|
||||||
|
- desk-organization
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/3a389673-3eb1-41e4-ade1-eef82e6c9b3d-Anker-Desk-Clamp-USB-Power.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/d8481403-ae53-4216-9acc-cbd0f58e5ccf-Anker-Desk-Clamp-USB-Power.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Anker Desk Clamp USB Power Strip (70W) | Clutter-Free Desk - Anker US
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
Dual-Zone 10-Port Layout: Features 6 AC outlets, 2 USB-C, and 2 USB-A ports, split into top and bottom zones to reduce clutter and simplify charging. 70W U
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://www.anker.com/products/a9196-70w-desk-clamp-usb-power-strip?variant=46320398303382)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/zfu368art9hpucg4u24rsl07)
|
||||||
39
KaraKeep/2026-04-07-I-painted-a-Jirachi-Pokemon-card.md
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "y90g64dq8dt4gd17ulyxhu1f"
|
||||||
|
url: |
|
||||||
|
https://www.youtube.com/shorts/FRE7LrkZcig?feature=share
|
||||||
|
title: |
|
||||||
|
I painted a Jirachi Pokemon card inspired by Animal Crossing! #pokemon #pokemoncards #acnh
|
||||||
|
date: 2026-04-07T06:50:47.000Z
|
||||||
|
modified: 2026-04-07T06:51:19.000Z
|
||||||
|
tags:
|
||||||
|
- Pokemon
|
||||||
|
- Digital-art
|
||||||
|
- pokemon-cards
|
||||||
|
- animal-crossing
|
||||||
|
- youtube-shorts
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/dafa3407-18bd-41b4-a93c-5e8a95815438-I-painted-a-Jirachi-Pokemon.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/f378201a-fcdb-4c98-8b1f-049588cb2fe4-I-painted-a-Jirachi-Pokemon.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# I painted a Jirachi Pokemon card inspired by Animal Crossing! #pokemon #pokemoncards #acnh
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://www.youtube.com/shorts/FRE7LrkZcig?feature=share)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/y90g64dq8dt4gd17ulyxhu1f)
|
||||||
31
KaraKeep/2026-04-07-image.md
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "mkvs1ht9zar06iieui2h917m"
|
||||||
|
url:
|
||||||
|
title: image
|
||||||
|
date: 2026-04-07T17:24:34.000Z
|
||||||
|
modified: 2026-04-07T17:25:57.000Z
|
||||||
|
tags:
|
||||||
|
- Humor
|
||||||
|
- Finn--Jake
|
||||||
|
- Candy-Kingdom
|
||||||
|
- Adventure-Time
|
||||||
|
- Cartoon
|
||||||
|
- Comic
|
||||||
|
- Safety-first
|
||||||
|
- Text-bubble
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
image: "[[KaraKeep/attachments/ddca5d7b-0f28-4575-889f-92116e046cd0-image.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# image
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/mkvs1ht9zar06iieui2h917m)
|
||||||
36
KaraKeep/2026-04-09-image.md
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "vj9mh9ebcf2yul4zoc3i3cgy"
|
||||||
|
url:
|
||||||
|
title: image
|
||||||
|
date: 2026-04-09T15:28:12.000Z
|
||||||
|
modified: 2026-04-09T15:29:43.000Z
|
||||||
|
tags:
|
||||||
|
- Technology
|
||||||
|
- politics
|
||||||
|
- Satire
|
||||||
|
- social-media
|
||||||
|
- Twitter
|
||||||
|
- Artificial-Intelligence
|
||||||
|
- Climate-Change
|
||||||
|
- Social-Justice
|
||||||
|
- Family-Issues
|
||||||
|
- Personal-Life
|
||||||
|
- Privacy-Concerns
|
||||||
|
- News
|
||||||
|
- Online-Safety
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
image: "[[KaraKeep/attachments/38377923-8140-4eaf-a452-103a91990f26-image.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# image
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/vj9mh9ebcf2yul4zoc3i3cgy)
|
||||||
47
KaraKeep/2026-04-09-pokopia-meals-spreadsheet.md
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "tvl403fyhp06mr9md3kdvoh4"
|
||||||
|
url:
|
||||||
|
title: pokopia meals spreadsheet
|
||||||
|
date: 2026-04-09T06:20:01.000Z
|
||||||
|
modified: 2026-04-09T07:00:54.000Z
|
||||||
|
tags:
|
||||||
|
- pokopia
|
||||||
|
note: |
|
||||||
|
Vibrant Hamburger Steak will make rock smash stronger than the normal upgraded one
|
||||||
|
I included potato hamburger steak and mushroom hamburger steak as alternatives to crushed berry salad and fluffy bread since they require a partner pokemon, but serebii made no mention of whether those count as the best tier mosslax upgrade or just the standard tier. If someone finds information out about that, it would be welcome.
|
||||||
|
Presumably the meal rank also impacts how happy / full it makes the non-mosslax pokemon but that's an assumption
|
||||||
|
I think the key to making a "best" rank meal is that it includes another meal as an ingredient
|
||||||
|
|
||||||
|
https://game8.co/games/Pokemon-Pokopia/archives/586136
|
||||||
|
https://www.serebii.net/pokemonpokopia/mosslaxboosts.shtml
|
||||||
|
https://www.serebii.net/pokemonpokopia/cooking.shtml
|
||||||
|
original_note: |
|
||||||
|
Vibrant Hamburger Steak will make rock smash stronger than the normal upgraded one
|
||||||
|
I included potato hamburger steak and mushroom hamburger steak as alternatives to crushed berry salad and fluffy bread since they require a partner pokemon, but serebii made no mention of whether those count as the best tier mosslax upgrade or just the standard tier. If someone finds information out about that, it would be welcome.
|
||||||
|
Presumably the meal rank also impacts how happy / full it makes the non-mosslax pokemon but that's an assumption
|
||||||
|
I think the key to making a "best" rank meal is that it includes another meal as an ingredient
|
||||||
|
|
||||||
|
https://game8.co/games/Pokemon-Pokopia/archives/586136
|
||||||
|
https://www.serebii.net/pokemonpokopia/mosslaxboosts.shtml
|
||||||
|
https://www.serebii.net/pokemonpokopia/cooking.shtml
|
||||||
|
summary:
|
||||||
|
image: "[[KaraKeep/attachments/38245179-89e4-4b89-9b01-0f31a0577433-pokopia-meals-spreadsheet.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# pokopia meals spreadsheet
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
Vibrant Hamburger Steak will make rock smash stronger than the normal upgraded one
|
||||||
|
I included potato hamburger steak and mushroom hamburger steak as alternatives to crushed berry salad and fluffy bread since they require a partner pokemon, but serebii made no mention of whether those count as the best tier mosslax upgrade or just the standard tier. If someone finds information out about that, it would be welcome.
|
||||||
|
Presumably the meal rank also impacts how happy / full it makes the non-mosslax pokemon but that's an assumption
|
||||||
|
I think the key to making a "best" rank meal is that it includes another meal as an ingredient
|
||||||
|
|
||||||
|
https://game8.co/games/Pokemon-Pokopia/archives/586136
|
||||||
|
https://www.serebii.net/pokemonpokopia/mosslaxboosts.shtml
|
||||||
|
https://www.serebii.net/pokemonpokopia/cooking.shtml
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/tvl403fyhp06mr9md3kdvoh4)
|
||||||
39
KaraKeep/2026-04-11-(1)-【5×5クリエイト】生息地つき!街づくりで役に立つレイアウト12.md
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "rcnl204q44seja2jqj6ffy4b"
|
||||||
|
url: |
|
||||||
|
https://www.youtube.com/watch?v=s-r9gSPGstc
|
||||||
|
title: |
|
||||||
|
(1) 【5×5クリエイト】生息地つき!街づくりで役に立つレイアウト12選 | ぽこあポケモン🌱 Pokopia 5×5 Build - YouTube
|
||||||
|
date: 2026-04-11T01:31:43.000Z
|
||||||
|
modified: 2026-04-11T01:33:57.000Z
|
||||||
|
tags:
|
||||||
|
- pokopia
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/5b39eaa9-68e6-45e0-86b6-85992eeefd0a-(1)-【5×5クリエイト】生息地つき!街づくりで役に立つレ.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/f084371d-f859-44b1-a0aa-e29f08919b2a-(1)-【5×5クリエイト】生息地つき!街づくりで役に立つレ.jpg]]"
|
||||||
|
additional:
|
||||||
|
- "[[KaraKeep/attachments/adc875e0-f5a9-4ad8-ae9e-787ed98fe852-(1)-【5×5クリエイト】生息地つき!街づくりで役に立つレ.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# (1) 【5×5クリエイト】生息地つき!街づくりで役に立つレイアウト12選 | ぽこあポケモン🌱 Pokopia 5×5 Build - YouTube
|
||||||
|
|
||||||
|
-【5×5クリエイト】生息地つき!街づくりで役に立つレ.jpg>)
|
||||||
|
|
||||||
|
-【5×5クリエイト】生息地つき!街づくりで役に立つレ.jpg>)
|
||||||
|
|
||||||
|
-【5×5クリエイト】生息地つき!街づくりで役に立つレ.jpg>)
|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
5×5のスペースで収まる小さなレイアウトを12個考えましたすべて生息地つきでデザインしています!街づくりをしているとエリアの間にちょっとした隙間が空いて困ることってありますよねそんな悩みを解決したい!という気持ちから生まれた動画ですみなさんの快適なぽこポケライフのヒントになればうれしいです🍃‥TimeStamp…
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://www.youtube.com/watch?v=s-r9gSPGstc)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/rcnl204q44seja2jqj6ffy4b)
|
||||||
34
KaraKeep/2026-04-11-Docker-Support-Libation.md
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "f4r38014bgntyjnb6c70a0fh"
|
||||||
|
url: |
|
||||||
|
https://getlibation.com/docs/installation/docker#configuration
|
||||||
|
title: |
|
||||||
|
Docker Support | Libation
|
||||||
|
date: 2026-04-11T04:26:34.000Z
|
||||||
|
modified: 2026-04-11T04:30:28.000Z
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
screenshot: "[[KaraKeep/attachments/72b0e584-0e3c-4cfc-a87a-baf08c234bfc-Docker-Support-Libation.jpg]]"
|
||||||
|
additional:
|
||||||
|
- "[[KaraKeep/attachments/40c1a048-1ee3-4e6b-a634-21dfefa2e23b-Docker-Support-Libation.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Docker Support | Libation
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
Libation: Liberate your Library - A free application for downloading your Audible audiobooks
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://getlibation.com/docs/installation/docker#configuration)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/f4r38014bgntyjnb6c70a0fh)
|
||||||
52
KaraKeep/2026-04-11-MISAMARU-on-X-”アメスリ着物が新登場!.md
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "cfhgnem2glamjmr3ryjahx4g"
|
||||||
|
url: |
|
||||||
|
https://fxtwitter.com/i/status/2041841184675655975/
|
||||||
|
title: |
|
||||||
|
MISAMARU on X: ”アメスリ着物が新登場!
|
||||||
|
ジレにもなる袖なしスタイルが涼しい✨
|
||||||
|
4月10日(金)21時より予約販売開始! ブラック
|
||||||
|
https://t.co/BlZlWs7V0Q ホワイト
|
||||||
|
https://t.co/S3FmeBHciE https://t.co/yZxt70OAll” / X
|
||||||
|
date: 2026-04-11T02:52:10.000Z
|
||||||
|
modified: 2026-04-11T04:20:01.000Z
|
||||||
|
tags:
|
||||||
|
- aesthetics
|
||||||
|
- Japanese-culture
|
||||||
|
- fashion
|
||||||
|
- celebrity-endorsements
|
||||||
|
- kimono
|
||||||
|
- misamaru_kimono
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/354ff041-f416-4257-bcb8-381ba3b329d2-MISAMARU-on-X-”アメスリ着物が新登場!.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/5d3201eb-6a52-4c4f-9a88-c59f54128e9e-MISAMARU-on-X-”アメスリ着物が新登場!.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# MISAMARU on X: ”アメスリ着物が新登場!
|
||||||
|
ジレにもなる袖なしスタイルが涼しい✨
|
||||||
|
4月10日(金)21時より予約販売開始! ブラック
|
||||||
|
https://t.co/BlZlWs7V0Q ホワイト
|
||||||
|
https://t.co/S3FmeBHciE https://t.co/yZxt70OAll” / X
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://fxtwitter.com/i/status/2041841184675655975/)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/cfhgnem2glamjmr3ryjahx4g)
|
||||||
47
KaraKeep/2026-04-11-MISAMARU-on-X-”博物館行く日の和洋折衷コーデ。.md
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "v446j5bjtso0k16hybkzqldz"
|
||||||
|
url: |
|
||||||
|
https://fxtwitter.com/i/status/2041489065024139600/
|
||||||
|
title: |
|
||||||
|
MISAMARU on X: ”博物館行く日の和洋折衷コーデ。
|
||||||
|
深緑のショート丈羽織と袴スカートのセットアップ×編み上げブーツの組み合わせが大好き✨ https://t.co/87MgZcrwaB” / X
|
||||||
|
date: 2026-04-11T02:52:02.000Z
|
||||||
|
modified: 2026-04-11T04:19:53.000Z
|
||||||
|
tags:
|
||||||
|
- aesthetics
|
||||||
|
- trends
|
||||||
|
- social-media
|
||||||
|
- japan
|
||||||
|
- x
|
||||||
|
- fashion
|
||||||
|
- kimono
|
||||||
|
- outfit
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/25d4bf4a-920f-4dee-8c8f-99db98f7acb3-MISAMARU-on-X-”博物館行く日の和洋折衷コーデ。.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/26c6d686-3ea2-41e7-a6d4-0f5eb46f4a05-MISAMARU-on-X-”博物館行く日の和洋折衷コーデ。.jpg]]"
|
||||||
|
additional:
|
||||||
|
- "[[KaraKeep/attachments/0af8176f-9e8b-4622-bd0c-2cd32acc0ea2-MISAMARU-on-X-”博物館行く日の和洋折衷コーデ。.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# MISAMARU on X: ”博物館行く日の和洋折衷コーデ。
|
||||||
|
深緑のショート丈羽織と袴スカートのセットアップ×編み上げブーツの組み合わせが大好き✨ https://t.co/87MgZcrwaB” / X
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://fxtwitter.com/i/status/2041489065024139600/)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/v446j5bjtso0k16hybkzqldz)
|
||||||
41
KaraKeep/2026-04-11-NO.S-PROJECT-on-X-”【pick-up】おでかけパニエ.md
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "dsu1bp81hlwd85lt6avahler"
|
||||||
|
url: |
|
||||||
|
https://fxtwitter.com/i/status/2042558227284660595/
|
||||||
|
title: |
|
||||||
|
NO.S PROJECT on X: ”【pick up】おでかけパニエ ブラック フリルのボリュームだけでふわっふわの、ミニ丈仕様のパニエ。お手元のミニワンピースを、お気軽にシルエットチェンジ!フリルをチラッとのぞかせても可愛いアイテムです。 https://t.co/K3THUfI9tx” / X
|
||||||
|
date: 2026-04-11T02:51:47.000Z
|
||||||
|
modified: 2026-04-11T04:19:35.000Z
|
||||||
|
tags:
|
||||||
|
- fashion
|
||||||
|
- aesthetics
|
||||||
|
- social-media
|
||||||
|
- x-platform
|
||||||
|
- fashion-trends
|
||||||
|
- online-shopping
|
||||||
|
- product-promotion
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/bcfcfd90-a1b3-417c-9f1f-534017c06505-NO.S-PROJECT-on-X-”【pick.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/22fbb69c-5a4d-4dc8-bfa8-00e477fa865a-NO.S-PROJECT-on-X-”【pick.jpg]]"
|
||||||
|
additional:
|
||||||
|
- "[[KaraKeep/attachments/ac0e47fd-e093-4338-9ed7-c30a5e36eb51-NO.S-PROJECT-on-X-”【pick.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# NO.S PROJECT on X: ”【pick up】おでかけパニエ ブラック フリルのボリュームだけでふわっふわの、ミニ丈仕様のパニエ。お手元のミニワンピースを、お気軽にシルエットチェンジ!フリルをチラッとのぞかせても可愛いアイテムです。 https://t.co/K3THUfI9tx” / X
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://fxtwitter.com/i/status/2042558227284660595/)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/dsu1bp81hlwd85lt6avahler)
|
||||||
37
KaraKeep/2026-04-11-NO.S-PROJECT-on-X-”【pick.md
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "o0ryd65fgdii0ai3bna5v5ie"
|
||||||
|
url: |
|
||||||
|
https://fxtwitter.com/i/status/2042588409466609742/
|
||||||
|
title: |
|
||||||
|
NO.S PROJECT on X: ”【pick up】淑女が纏うはんなりジャケット カーキ 和と洋がひとつになったようなショートジャケット。特徴的な着物スリーブが動くたびに波のように揺れ、肩から腕へと描く優雅なライン。 https://t.co/iUbZzxpHxp https://t.co/DMxQulY5Un” / X
|
||||||
|
date: 2026-04-11T02:51:55.000Z
|
||||||
|
modified: 2026-04-11T04:19:44.000Z
|
||||||
|
tags:
|
||||||
|
- fashion
|
||||||
|
- aesthetics
|
||||||
|
- x-twitter
|
||||||
|
- japanese-fashion
|
||||||
|
- vintage-clothing
|
||||||
|
- influencer-marketing
|
||||||
|
- celebrity-endorsements
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/8c2d8550-eb5b-4445-8fbd-e2a3cec8afed-NO.S-PROJECT-on-X-”【pick.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/fd9e5ed2-90f1-4c34-91a0-26164abe8b4b-NO.S-PROJECT-on-X-”【pick.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# NO.S PROJECT on X: ”【pick up】淑女が纏うはんなりジャケット カーキ 和と洋がひとつになったようなショートジャケット。特徴的な着物スリーブが動くたびに波のように揺れ、肩から腕へと描く優雅なライン。 https://t.co/iUbZzxpHxp https://t.co/DMxQulY5Un” / X
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://fxtwitter.com/i/status/2042588409466609742/)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/o0ryd65fgdii0ai3bna5v5ie)
|
||||||
37
KaraKeep/2026-04-11-Tnewties-トゥエンティーズ-on-X.md
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "mk99h8bonx5i91iidel3jkwe"
|
||||||
|
url: |
|
||||||
|
https://x.com/20s_tnewties/status/2042528261004292562?s=12
|
||||||
|
title: |
|
||||||
|
Tnewties トゥエンティーズ on X: ”🍨🪞🥣🌿💶🐋🛋️ #TNEWTIES #トゥエンティーズ https://t.co/2GtqH8J4dl” / X
|
||||||
|
date: 2026-04-11T02:51:31.000Z
|
||||||
|
modified: 2026-04-11T04:19:26.000Z
|
||||||
|
tags:
|
||||||
|
- fashion
|
||||||
|
- aesthetics
|
||||||
|
- celebrity-news
|
||||||
|
- japanese-pop
|
||||||
|
- social-media
|
||||||
|
- entertainment
|
||||||
|
- trending-topics
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/24e279da-7bff-4101-b7c9-d3f26521fff9-Tnewties-トゥエンティーズ-on-X.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/6130328a-70a3-4888-8f93-67032d1d0ed8-Tnewties-トゥエンティーズ-on-X.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Tnewties トゥエンティーズ on X: ”🍨🪞🥣🌿💶🐋🛋️ #TNEWTIES #トゥエンティーズ https://t.co/2GtqH8J4dl” / X
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://x.com/20s_tnewties/status/2042528261004292562?s=12)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/mk99h8bonx5i91iidel3jkwe)
|
||||||
36
KaraKeep/2026-04-11-V1ck3s-octo-fiesta-at-selfh.st.md
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "imziz5n6ynwkjlzh2qk7fwwa"
|
||||||
|
url: |
|
||||||
|
https://github.com/V1ck3s/octo-fiesta?ref=selfh.st
|
||||||
|
title: V1ck3s/octo-fiesta at selfh.st
|
||||||
|
date: 2026-04-11T04:26:52.000Z
|
||||||
|
modified: 2026-04-11T04:32:29.000Z
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/a17cb29b-b676-46af-a98a-0ccb748479a5-V1ck3s-octo-fiesta-at.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/2d86c844-80f4-429a-97b8-2c26314b8173-V1ck3s-octo-fiesta-at.jpg]]"
|
||||||
|
additional:
|
||||||
|
- "[[KaraKeep/attachments/a1bbbe44-8e87-4e0d-a350-8a664828bb76-V1ck3s-octo-fiesta-at.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# V1ck3s/octo-fiesta at selfh.st
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
A Subsonic API proxy server that transparently integrates multiple music streaming providers as sources. - V1ck3s/octo-fiesta
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://github.com/V1ck3s/octo-fiesta?ref=selfh.st)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/imziz5n6ynwkjlzh2qk7fwwa)
|
||||||
37
KaraKeep/2026-04-11-hjdhjd-prismcast-Chrome-based.md
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
---
|
||||||
|
bookmark_id: "fpkf9300meq7gskqb7iibqyh"
|
||||||
|
url: |
|
||||||
|
https://github.com/hjdhjd/prismcast
|
||||||
|
title: |
|
||||||
|
hjdhjd/prismcast: Chrome-based streaming server for Channels DVR and Plex.
|
||||||
|
date: 2026-04-11T04:26:20.000Z
|
||||||
|
modified: 2026-04-11T04:28:28.000Z
|
||||||
|
note:
|
||||||
|
original_note:
|
||||||
|
summary:
|
||||||
|
banner: "[[KaraKeep/attachments/3bc47f18-90a6-464c-b555-5f76fea3e9e0-hjdhjd-prismcast-Chrome-based.jpg]]"
|
||||||
|
screenshot: "[[KaraKeep/attachments/061660d5-dd80-47f4-a542-99fa550f7f9a-hjdhjd-prismcast-Chrome-based.jpg]]"
|
||||||
|
additional:
|
||||||
|
- "[[KaraKeep/attachments/1c94c9f7-3851-4a1d-ba42-da21622bbd0e-hjdhjd-prismcast-Chrome-based.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# hjdhjd/prismcast: Chrome-based streaming server for Channels DVR and Plex.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
Chrome-based streaming server for Channels DVR and Plex. - hjdhjd/prismcast
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Visit Link](https://github.com/hjdhjd/prismcast)
|
||||||
|
|
||||||
|
[View in Hoarder](https://kara.werats.gay/dashboard/preview/fpkf9300meq7gskqb7iibqyh)
|
||||||
|
After Width: | Height: | Size: 572 KiB |
|
After Width: | Height: | Size: 113 KiB |
|
After Width: | Height: | Size: 144 KiB |
@@ -0,0 +1,2 @@
|
|||||||
|
<div id="readability-page-1" class="page"><div id="react-root"><div id="layers"><div data-testid="BottomBar"><div><p><span>Don’t miss what’s happening</span></p><p><span>People on X are the first to know.</span></p></div><div><div><a href="https://x.com/login" role="link" data-testid="login"><div dir="ltr"><p><span><span>Log in</span></span></p></div></a></div><div><a href="https://x.com/i/flow/signup" role="link" data-testid="signup"><div dir="ltr"><p><span><span>Sign up</span></span></p></div></a></div></div></div></div><div dir="ltr" aria-hidden="false"><header role="banner"><div><h2 role="heading"><a href="https://x.com/" aria-label="X" role="link"></a></h2></div></header><main role="main"><div><div aria-label="Home timeline" tabindex="0" data-testid="primaryColumn"><div><div><div><p></p><h2 dir="ltr" aria-level="2" role="heading"><span>Post</span></h2><p></p></div></div></div><section aria-labelledby="accessible-list-1" role="region"><h2 dir="auto" aria-level="1" role="heading" id="accessible-list-1">Conversation</h2><div aria-label="Timeline: Conversation"><div data-testid="cellInnerDiv"><article aria-labelledby="id__zm2i7hl5b3o id__myvl8f1wnd id__4oiejswvkrt id__omde3os84d id__sfe3qtl2rs id__l1wyrw1w01 id__qsiolztnp1 id__reufd4ioatk id__fi0oziskdzl id__dqqxu5g9l9r id__8u8ds14gb3j id__k4oj82vmzd id__edo4f6j9et8 id__k5qthcxp4b id__796twtchl02 id__j61eov99h6e id__f4usdwinedj id__m57z6sa30vc id__nnbft6yctul id__d3fkctirv5" role="article" tabindex="-1" data-testid="tweet"><div><div><div><div id="id__sfe3qtl2rs" data-testid="User-Name"><div><a href="https://x.com/misamaru_kimono" role="link"><div><p><span><span>MISAMARU</span></span></p></div></a></div><div><a href="https://x.com/misamaru_kimono" role="link" tabindex="-1"><p><span>@misamaru_kimono</span></p></a></div></div></div></div><div><div><p><span>博物館行く日の和洋折衷コーデ。
|
||||||
|
深緑のショート丈羽織と袴スカートのセットアップ×編み上げブーツの組み合わせが大好き</span><img alt="✨" draggable="false" src="https://abs-0.twimg.com/emoji/v2/svg/2728.svg"></p></div><div aria-labelledby="id__wlpn51yacd id__cg00afg4o4m" id="id__edo4f6j9et8"><div><a href="https://x.com/misamaru_kimono/status/2041489065024139600/photo/1" role="link"><div aria-label="Image" data-testid="tweetPhoto"><p><img alt="Image" draggable="true" src="https://pbs.twimg.com/media/HFTTe5oacAATASJ?format=jpg&name=360x360"></p></div></a></div><div><a href="https://x.com/misamaru_kimono/status/2041489065024139600/photo/2" role="link"><div aria-label="Image" data-testid="tweetPhoto"><p><img alt="Image" draggable="true" src="https://pbs.twimg.com/media/HFTTe5xbMAAw8c2?format=jpg&name=360x360"></p></div></a></div></div><div><div dir="ltr"><p><a href="https://x.com/misamaru_kimono/status/2041489065024139600" aria-describedby="id__u8ivepgbiys" aria-label="12:11 PM · Apr 7, 2026" role="link"><time datetime="2026-04-07T12:11:36.000Z">12:11 PM · Apr 7, 2026</time></a></p></div><a href="https://x.com/misamaru_kimono/status/2041489065024139600/analytics" dir="ltr" role="link"><p><span data-testid="app-text-transition-container"><span><span>47.5K</span></span></span></p> <span><span>Views</span></span></a></div></div></div></article></div></div></section></div><div aria-label="Trending" tabindex="0" data-testid="sidebarColumn"><section aria-label="Sign up" role="region"><div><h2 aria-level="2" role="heading"><p><span>New to X?</span></p></h2></div><p><span>Sign up now to get your own personalized timeline!</span></p><div><a href="https://x.com/i/flow/signup" role="link"><div dir="ltr"><p><span><span>Create account</span></span></p></div></a></div><div dir="ltr"><p>By signing up, you agree to the <a href="https://x.com/tos" rel="noopener noreferrer nofollow" role="link"><span>Terms of Service</span></a> and <a href="https://x.com/privacy" rel="noopener noreferrer nofollow" role="link"><span>Privacy Policy</span></a>, including <a href="https://help.x.com/rules-and-policies/twitter-cookies" rel="noopener noreferrer nofollow" role="link"><span>Cookie Use.</span></a></p></div></section><section aria-labelledby="accessible-list-0" role="region"><h2 dir="auto" aria-level="1" role="heading" id="accessible-list-0">Trending now</h2><div aria-label="Timeline: Trending now"><div><h2 aria-level="2" role="heading"><p><span>What’s happening</span></p></h2></div><div id="id__5r1xm1lyz4y" aria-labelledby="id__5r1xm1lyz4y" tabindex="0" data-testid="trend" role="link"><div><p><span>Music · Trending</span></p></div><p><span>中島裕翔</span></p></div><div id="id__vj7y3cqrxns" aria-labelledby="id__vj7y3cqrxns" tabindex="0" data-testid="trend" role="link"><div><p><span>Trending worldwide</span></p></div><p><span>裕翔結婚</span></p></div><div id="id__yzdm3txdlvi" aria-labelledby="id__yzdm3txdlvi" tabindex="0" data-testid="trend" role="link"><div><p><span>Trending worldwide</span></p></div><p><span>結婚発表</span></p></div><div id="id__n3r1xx3dwjo" aria-labelledby="id__n3r1xx3dwjo" tabindex="0" data-testid="trend" role="link"><div><p><span>Sports · Trending</span></p></div><p><span>マンシー</span></p></div><div><a href="https://x.com/explore/tabs/for-you" role="link"><p><span>Show more</span></p></a></div></div></section><div><nav aria-label="Footer" role="navigation"><div><p><a href="https://x.com/tos" dir="ltr" rel="noopener noreferrer nofollow" role="link"><span>Terms of Service</span></a></p><p><span> </span><span>|</span></p></div><div><p><a href="https://x.com/privacy" dir="ltr" rel="noopener noreferrer nofollow" role="link"><span>Privacy Policy</span></a></p><p><span> </span><span>|</span></p></div><div><p><a href="https://support.x.com/articles/20170514" dir="ltr" rel="noopener noreferrer nofollow" role="link"><span>Cookie Policy</span></a></p><p><span> </span><span>|</span></p></div><div><p><a href="https://help.x.com/resources/accessibility" dir="ltr" rel="noopener noreferrer nofollow" role="link"><span>Accessibility</span></a></p><p><span> </span><span>|</span></p></div><div><p><a href="https://business.x.com/en/help/troubleshooting/how-twitter-ads-work.html?ref=web-twc-ao-gbl-adsinfo&utm_source=twc&utm_medium=web&utm_campaign=ao&utm_content=adsinfo" dir="ltr" rel="noopener noreferrer nofollow" role="link"><span>Ads info</span></a></p><p><span> </span><span>|</span></p></div><p><span>© 2026 X Corp.</span></p></nav></div></div></div></main></div></div></div>
|
||||||
|
After Width: | Height: | Size: 827 KiB |
|
After Width: | Height: | Size: 321 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 158 KiB |
|
After Width: | Height: | Size: 98 KiB |
|
After Width: | Height: | Size: 827 KiB |
|
After Width: | Height: | Size: 79 KiB |
|
After Width: | Height: | Size: 827 KiB |
|
After Width: | Height: | Size: 106 KiB |
|
After Width: | Height: | Size: 112 KiB |
|
After Width: | Height: | Size: 2.4 MiB |
|
After Width: | Height: | Size: 120 KiB |
|
After Width: | Height: | Size: 3.1 MiB |
@@ -0,0 +1,247 @@
|
|||||||
|
<div id="readability-page-1" class="page"><div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>In my previous article, <a href="https://egustafson.github.io/post/ipv6-tunneling/">IPv6 Tunneling over IPv4 Networks</a>, I
|
||||||
|
discussed how to connect a LAN to the IPv6 public Internet. This article
|
||||||
|
continues the theme, discussing the issues surrounding the LAN’s configuration
|
||||||
|
for IPv6.</p>
|
||||||
|
|
||||||
|
<p>Looking at how LAN’s are configured for IPv4 proves to be instructive. Many of
|
||||||
|
the techniques, and all of the patterns turn out to have parallels in IPv6.
|
||||||
|
During the design of IPv6 engineers took the opportunity for refactoring using
|
||||||
|
lessons learned from IPv4. Initial host configuration was an area that received
|
||||||
|
some attention, and so, we will explore the new methods provided by IPv6 as well
|
||||||
|
as the traditional techniques carried forward from IPv4.</p>
|
||||||
|
|
||||||
|
<h2 id="network-autoconfiguration">Network Autoconfiguration</h2>
|
||||||
|
|
||||||
|
<p>The goal here is to identify how hosts joining an IPv6 network can come to
|
||||||
|
discover and then interoperate on that network. The network <em>may</em> also have
|
||||||
|
IPv4, but it should not be required. Specifically, the goal is to show how
|
||||||
|
hosts can, with emphasis towards automation, configure themselves on an <strong><em>IPv6
|
||||||
|
only</em></strong> network. The same (pre)configuration should also work if the network
|
||||||
|
happens to support IPv4, and the hosts should then configure and join the IPv4
|
||||||
|
network as well.</p>
|
||||||
|
|
||||||
|
<p>There are two use cases that are used to vet the proposed methods. The first is
|
||||||
|
the “small lab” use case. Think of a small, less than 100 hosts, lab
|
||||||
|
environment, or SOHO office. In this sort of environment some of the hosts are
|
||||||
|
very dynamic, and some are more static with specific functions assigned to them;
|
||||||
|
for instance, a mail, or IRC server. The second use case is the prototype
|
||||||
|
environment for a distributed application. Often such environments are created
|
||||||
|
with VM’s using tools such as <a href="https://www.vagrantup.com/">Vagrant</a> inside a
|
||||||
|
developer’s laptop. Such environments can be paused and restarted, relocated,
|
||||||
|
and the hosts are often destroyed and recreated for a “fresh install”. In both
|
||||||
|
cases, formal rigor in configuring and maintaining the network are not as
|
||||||
|
important as a degree of automation combined with flexibility to manually adjust
|
||||||
|
things as needed for the task at hand.</p>
|
||||||
|
|
||||||
|
<p>In an IPv4 world, <a href="https://en.wikipedia.org/wiki/Dynamic_Host_Configuration_Protocol">DHCP</a> combined with <a href="https://en.wikipedia.org/wiki/Domain_Name_System">DNS</a> are the go-to tools for such
|
||||||
|
configuration. As luck has it, both are available in the IPv6 world as
|
||||||
|
well. DNS remains unchanged, except for the addition of the <a href="https://en.wikipedia.org/wiki/IPv6_address#IPv6_addresses_in_the_Domain_Name_System">AAAA</a> record that
|
||||||
|
holds IPv6 addresses; AAAA records are retrievable via IPv4 as well. DHCP
|
||||||
|
functions the same, but the specifics are adapted for IPv6 and to disambiguate,
|
||||||
|
it is known as <a href="https://en.wikipedia.org/wiki/DHCPv6">DHCPv6</a>; there is a separate RFC: <a href="https://tools.ietf.org/html/rfc3315">RFC-3315</a>.</p>
|
||||||
|
|
||||||
|
<h2 id="ipv6-autoconfiguration">IPv6 Autoconfiguration</h2>
|
||||||
|
|
||||||
|
<p>During the design of IPv6, then codenamed ‘IPng’, the design of
|
||||||
|
“autoconfiguration” for IP was refactored to support a more automated method by
|
||||||
|
which hosts could join an IPv6 network. In the base IPv4 protocol there is no
|
||||||
|
explicit support for autoconfiguration. In IPv6 autoconfiguration support was
|
||||||
|
initially integrated into <a href="https://en.wikipedia.org/wiki/ICMPv6">ICMPv6</a>. This comes in the form of <a href="https://en.wikipedia.org/wiki/Neighbor_Discovery_Protocol">Neighbor
|
||||||
|
Discovery Protocol</a> (NDP) and includes the ability for a host to automatically
|
||||||
|
discover:</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>Neighbor Discovery and Advertisement, replacing IPv4’s <a href="https://en.wikipedia.org/wiki/Address_Resolution_Protocol">ARP</a>.</li>
|
||||||
|
<li>Network address prefix value.
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>Note: network address <em>prefix length</em> is fixed in IPv6 to /64.</li>
|
||||||
|
</ul></li>
|
||||||
|
<li>Link (L2) parameter discovery, such as MTU.</li>
|
||||||
|
<li>Next-hop routing determination through Router Solicitation and Advertisement
|
||||||
|
(RA).</li>
|
||||||
|
<li>Duplicate address detection, thus allowing hosts to generate a host address
|
||||||
|
and determine if it is a duplicate. (If so, they will pick another).</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p>The above tools that made up the original NDP allow a host to perform what is
|
||||||
|
formally called <a href="https://en.wikipedia.org/wiki/IPv6#Stateless_address_autoconfiguration_.28SLAAC.29">Stateless address autoconfiguration</a> (SLAAC). Additionally,
|
||||||
|
NDP, through Router Solicitation and Router Advertisement (RA), allows a host to
|
||||||
|
define itself a unique host address, determine its network address, and
|
||||||
|
router(s). These are all the necessary details a host needs to start sending
|
||||||
|
and receiving IP packets. The IPng designers believed they had successfully
|
||||||
|
refactored the base IP protocol, including ICMP, to handle autoconfiguration.</p>
|
||||||
|
|
||||||
|
<p>In hindsight, the refactoring was not agile enough. While hosts can configure
|
||||||
|
the IP layer with SLAAC, it turns out that DHCPv4 is used provide added
|
||||||
|
functionality beyond simply configuring the IP layer of a host. The almost
|
||||||
|
universally used feature of DHCP, beyond the IP layer, is communicating the DNS
|
||||||
|
server’s IP address. SLAAC did not initially have support for this and thus
|
||||||
|
DHCPv6 was born. The ICMPv6 Router Advertisement was extended in <a href="https://tools.ietf.org/html/rfc6106">RFC-6106</a> to
|
||||||
|
allow the inclusion of DNS configuration information in the RA message.</p>
|
||||||
|
|
||||||
|
<p>RFC-6106, which allows DNS details in router advertisements, is not the end of
|
||||||
|
the story. Firstly, its adoption has been slow, and secondly, there remain
|
||||||
|
additional configuration details not covered by the RFC that are desired when
|
||||||
|
autoconfiguring hosts on an IP network. In fact, <a href="https://en.wikipedia.org/wiki/Internet_Assigned_Numbers_Authority">IANA</a> cites well over 150
|
||||||
|
option parameters registered for DHCP [<sup id="fnref:1"><a rel="footnote" href="#fn:1">1</a></sup>].</p>
|
||||||
|
|
||||||
|
<h2 id="stateful-and-stateless-dhcpv6">Stateful and Stateless DHCPv6</h2>
|
||||||
|
|
||||||
|
<p>The ability for a host to autoconfigure, through SLAAC, it’s IPv6 details gives
|
||||||
|
rise to a new mode of use for DHCP - “Stateless DHCPv6”. In this mode, the host
|
||||||
|
first uses SLAAC to configure its IPv6 details and then uses DHCPv6 to request
|
||||||
|
additional details like DNS, NTP, etc. In this mode the host indicates it is
|
||||||
|
operating “stateless” and the server does not perform address assignment.</p>
|
||||||
|
|
||||||
|
<p>In addition to the stateless mode, DHCPv6 can also be used in a “stateful” mode
|
||||||
|
where an IPv6 address is assigned from the server’s pool of addresses. IPv6
|
||||||
|
allows and most often requires hosts to have multiple IPv6 addresses assigned to
|
||||||
|
a single interface; the link-local address is an excellent example of this.
|
||||||
|
Because hosts must support multiple addresses per interface it is possible to
|
||||||
|
use both SLAAC and stateful DHCPv6 to configure a host. If both methods are
|
||||||
|
used then there will be multiple IPv6 addresses assigned to the interface. The
|
||||||
|
link-local address is also required, so using both methods will ensure the
|
||||||
|
interface has at least three addresses.</p>
|
||||||
|
|
||||||
|
<p>The late arrival of DNS configuration as part of SLAAC caused some vendors,
|
||||||
|
Microsoft Windows most notably, to pursue client IPv6 autoconfiguration which
|
||||||
|
required DHCPv6. This makes the use of DHCPv6 a near requirement in any network
|
||||||
|
that has liberal requirements for operating system support.</p>
|
||||||
|
|
||||||
|
<h2 id="host-registration-in-dns">Host Registration in DNS</h2>
|
||||||
|
|
||||||
|
<p>Providing DNS configuration to an autoconfiguring host does not imply
|
||||||
|
registering that host in the local DNS tables. In fact, neither DHCPv4, nor
|
||||||
|
DHCPv6 address the issue of DNS registration for newly configured hosts. In
|
||||||
|
many environments, including lab and prototype use case environments,
|
||||||
|
registering configured hosts ranges from very helpful to required. Some clients
|
||||||
|
will perform this task, but this behavior is not common enough to rely on it.</p>
|
||||||
|
|
||||||
|
<p>There are a number of different tools to support registering hosts in DNS as
|
||||||
|
they join a network, but one project is more appealing than the others for our
|
||||||
|
given use cases: <a href="http://www.thekelleys.org.uk/dnsmasq/doc.html">Dnsmasq</a>. The Dnsmasq project combines DHCP and DNS in a
|
||||||
|
single daemon and supports both IPv4 and IPv6. Dnsmasq also supports portions
|
||||||
|
of IPv6 autoconfiguration, including router advertisement (RA). The feature
|
||||||
|
that places Dnsmasq in the most appealing position is that its DHCP and DNS
|
||||||
|
integration includes automatically registering DHCP leases in the DNS tables
|
||||||
|
when a hostname is provided in the DHCP request; solving exactly the problem not
|
||||||
|
explicitly addressed in DHCP or DNS specifications.</p>
|
||||||
|
|
||||||
|
<p>Through experimentation it was determined that Windows and Mac OSX based systems
|
||||||
|
consistently provide the hostname as part of their DHCP request. Unfortunately,
|
||||||
|
the most popular, and widely used, DHCP client, from <a href="https://www.isc.org/">ISC</a>, either does not, or is
|
||||||
|
rarely configured to send the hostname. Fortunately, an alternative DHCP client
|
||||||
|
does: the <a href="https://roy.marples.name/projects/dhcpcd">dhcpcd</a> client. Investigating the dhcpcd client also revealed that
|
||||||
|
it is trivial to swap the ISC client for dhcpcd on most Linux hosts.</p>
|
||||||
|
|
||||||
|
<h2 id="router-and-client-configuration">Router and Client Configuration</h2>
|
||||||
|
|
||||||
|
<p>The following is the Dnsmasq_ configuration applied on the router that allows
|
||||||
|
for the most effective autoconfiguration of IPv6:</p>
|
||||||
|
|
||||||
|
<pre><code># dnsmasq configuration for router "appliance"
|
||||||
|
no-resolv
|
||||||
|
server=10.3.7.1
|
||||||
|
|
||||||
|
local=/cloud1/
|
||||||
|
|
||||||
|
domain=cloud1
|
||||||
|
dhcp-fqdn
|
||||||
|
|
||||||
|
enable-ra
|
||||||
|
dhcp-option=option6:dns-server,[2001:db8:4b:222::1]
|
||||||
|
dhcp-option=option6:dns-name,cloud1
|
||||||
|
|
||||||
|
dhcp-range=::100,::1ff,constructor:em1
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p>The configuration is broken down as follows:</p>
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt><code>no-resolve</code></dt>
|
||||||
|
<dd>Disable using /etc/resolv.conf as a basis for configuring the dnsmasq server.
|
||||||
|
This was done to make this example clearly explicit.</dd>
|
||||||
|
<dt><code>server=10.3.7.1</code></dt>
|
||||||
|
<dd>Configure the server that dnsmasq forwards all DNS requests it can not handle
|
||||||
|
locally to. Note that the forwarder does <em>not</em> need to be a IPv6 address,
|
||||||
|
although it could be. Multiple forwarders are configurable if desired.</dd>
|
||||||
|
<dt><code>local=/cloud1/</code></dt>
|
||||||
|
<dd>Declare the domain “cloud1” as the domain being served locally.</dd>
|
||||||
|
<dt><code>domain=cloud1</code></dt>
|
||||||
|
<dd>Declare the domain “cloud1” as the domain for all DHCP requests</dd>
|
||||||
|
<dt><code>dhcp-fqdn</code></dt>
|
||||||
|
<dd>Force all DHCP clients to be placed in the “cloud1” domain, regardless of what
|
||||||
|
domain they specify in the DHCP request.</dd>
|
||||||
|
<dt><code>enable-ra</code></dt>
|
||||||
|
<dd>Perform IPv6 Router Advertisement as part of Dnsmasq’s operation. Other
|
||||||
|
router advertisement daemons should not be run. If the host Dnsmasq is
|
||||||
|
running on is not the router then disable this.</dd>
|
||||||
|
<dt><code>dhcp-option...dns-server</code></dt>
|
||||||
|
<dd>Explicitly configure and ensure the <code>dns-server</code> option is sent in the DHCP
|
||||||
|
reply. The address listed is an address assigned to the ‘em1’ interface on
|
||||||
|
this host.</dd>
|
||||||
|
<dt><code>dhcp-option...dns-name</code></dt>
|
||||||
|
<dd>Send ‘cloud1’ as the assigned domain to all clients performing DHCP requests.</dd>
|
||||||
|
<dt><code>dhcp-range...</code></dt>
|
||||||
|
<dd>Issue IPv6 addresses between ::100 and ::1ff in response to DHCP requests.
|
||||||
|
The clause, “<code>constructor:em1</code>” directs the configuration to use the network
|
||||||
|
prefix of the ‘em1’ interface as the network prefix for the leased addresses.
|
||||||
|
The actual address returned will be [em1 prefix]::[100-1ff].</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
<p>Enabling the <code>log-dhcp</code> or <code>log-queries</code> parameters in Dnsmasq will enable
|
||||||
|
verbose reporting of either DHCP or DNS is debugging is required.</p>
|
||||||
|
|
||||||
|
<h2 id="client-dhcp-configuration">Client DHCP Configuration</h2>
|
||||||
|
|
||||||
|
<p>No explicit configuration is required on the client side except replacing the
|
||||||
|
ISC DHCP client with the dhcpcd client. For Debian derived Linux
|
||||||
|
installations:</p>
|
||||||
|
|
||||||
|
<pre><code>> sudo apt-get remove isc-dhcp-client isc-dhcp-common
|
||||||
|
> sudo apt-get install dhcpcd5
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p>No configuration files need to be modified.</p>
|
||||||
|
|
||||||
|
<h2 id="conclusion">Conclusion</h2>
|
||||||
|
|
||||||
|
<p>By utilizing the Dnsmasq_ and dhcpcd_ projects a very simple configuration can
|
||||||
|
be constructed that supports autoconfiguration of an IPv6 network. This pattern
|
||||||
|
can be utilized in both a heterogeneous lab and prototype environments,
|
||||||
|
including Vagrant based setups on developer laptops.</p>
|
||||||
|
|
||||||
|
<h2 id="references">References</h2>
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>DHCPv6</dt>
|
||||||
|
<dd><a href="https://en.wikipedia.org/wiki/DHCPv6">https://en.wikipedia.org/wiki/DHCPv6</a></dd>
|
||||||
|
<dd><a href="https://tools.ietf.org/html/rfc3315">https://tools.ietf.org/html/rfc3315</a></dd>
|
||||||
|
<dt>ICMPv6</dt>
|
||||||
|
<dd><a href="https://en.wikipedia.org/wiki/ICMPv6">https://en.wikipedia.org/wiki/ICMPv6</a></dd>
|
||||||
|
<dd><a href="https://tools.ietf.org/html/rfc4443">https://tools.ietf.org/html/rfc4443</a></dd>
|
||||||
|
<dd><a href="https://tools.ietf.org/html/rfc6106">https://tools.ietf.org/html/rfc6106</a></dd>
|
||||||
|
<dt>NDP - Neighbor Discovery Protocol:</dt>
|
||||||
|
<dd><a href="https://en.wikipedia.org/wiki/Neighbor_Discovery_Protocol">https://en.wikipedia.org/wiki/Neighbor_Discovery_Protocol</a></dd>
|
||||||
|
<dt>Dnsmasq - DHCP + DNS daemon</dt>
|
||||||
|
<dd><a href="http://www.thekelleys.org.uk/dnsmasq/doc.html">http://www.thekelleys.org.uk/dnsmasq/doc.html</a></dd>
|
||||||
|
<dt>dhcpcd - alternative DHCP client</dt>
|
||||||
|
<dd><a href="http://roy.marples.name/projects/dhcpcd/index">http://roy.marples.name/projects/dhcpcd/index</a></dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<ol>
|
||||||
|
<li id="fn:1">DHCP and BOOTP Parameters: <a href="https://www.iana.org/assignments/bootp-dhcp-parameters/bootp-dhcp-parameters.xhtml">https://www.iana.org/assignments/bootp-dhcp-parameters/bootp-dhcp-parameters.xhtml</a>
|
||||||
|
<a href="#fnref:1">↩</a></li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div></div>
|
||||||
|
After Width: | Height: | Size: 80 KiB |
|
After Width: | Height: | Size: 827 KiB |
|
After Width: | Height: | Size: 521 KiB |
|
After Width: | Height: | Size: 80 KiB |
|
After Width: | Height: | Size: 336 KiB |
|
After Width: | Height: | Size: 46 KiB |
|
After Width: | Height: | Size: 7.9 MiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 106 KiB |
@@ -0,0 +1,364 @@
|
|||||||
|
<div id="readability-page-1" class="page"><div id="article-body">
|
||||||
|
|
||||||
|
<p id="elk-eb2496e5-9d7a-427b-9c5a-3b3c462b3bb3">There's something particularly satisfying about watching '<a data-analytics-id="inline-link" href="https://www.whowhatwear.com/tag/90s-fashion" data-auto-tag-linker="true" data-url="https://www.whowhatwear.com/tag/90s-fashion" data-hl-processed="none" data-mrf-recirculation="inline-link" data-before-rewrite-localise="https://www.whowhatwear.com/tag/90s-fashion" data-hawk-tracked="hawklinks" data-mrf-link="https://www.whowhatwear.com/tag/90s-fashion">90s fashion</a> dominate today's trends, especially as someone who lived through them the first time around. If anything, this ongoing revival has cemented my understanding of what made 90s fashion so great in the first place.</p><p>There was an effortless ease to getting dressed. Personally, that came in the form of dungarees, primary coloured t-shirts and pedal pushers (as they were so garishly named back then), but I remember the fashion icons of that era dressing in a way that felt stylish but attainable, so much so that certain outfits have stood the test of time. There's <a data-analytics-id="inline-link" href="https://www.whowhatwear.com/tag/princess-diana" data-auto-tag-linker="true" data-url="https://www.whowhatwear.com/tag/princess-diana" data-hl-processed="none" data-mrf-recirculation="inline-link" data-before-rewrite-localise="https://www.whowhatwear.com/tag/princess-diana" data-hawk-tracked="hawklinks" data-mrf-link="https://www.whowhatwear.com/tag/princess-diana">Princess Diana</a>'s revenge dress, <a data-analytics-id="inline-link" href="https://www.whowhatwear.com/tag/kate-moss" data-auto-tag-linker="true" data-url="https://www.whowhatwear.com/tag/kate-moss" data-hl-processed="none" data-mrf-recirculation="inline-link" data-before-rewrite-localise="https://www.whowhatwear.com/tag/kate-moss" data-hawk-tracked="hawklinks" data-mrf-link="https://www.whowhatwear.com/tag/kate-moss">Kate Moss</a>'s sheer slip, and practically everything <a data-analytics-id="inline-link" href="https://www.whowhatwear.com/tag/jennifer-aniston" data-auto-tag-linker="true" data-url="https://www.whowhatwear.com/tag/jennifer-aniston" data-hl-processed="none" data-mrf-recirculation="inline-link" data-before-rewrite-localise="https://www.whowhatwear.com/tag/jennifer-aniston" data-hawk-tracked="hawklinks" data-mrf-link="https://www.whowhatwear.com/tag/jennifer-aniston">Jennifer Aniston</a>, Courteney Cox and Lisa Kudrow wore both on and off the set of Friends.</p><p id="elk-eb2496e5-9d7a-427b-9c5a-3b3c462b3bb3-2">As a new season rolls around, it's easy to get caught up in microtrends and social media hauls when you need inspiration, but I'm here to remind you that the '90s hold all the inspiration you'll need to upgrade your wardrobe for spring.</p><p>So I've dug through the archives to see how some of our beloved 90s celebrities dressed for spring and, given how many of today's trends are rooted in that very era, their outfits feel more relevant than ever. From paired back tailoring to effortless off-duty looks, these are the outfits I'll be taking notes from this season. Read on to find out who did spring best, and shop their looks.</p><h3 id="section-5-90s-celebrity-looks-to-recreate-for-spring"><span>5 '90s CELEBRITY LOOKS TO RECREATE FOR SPRING:</span></h3><h3 id="section-1-gwyneth-paltrow-leather-trousers-sleeveless-rollneck"><span>1. GWYNETH PALTROW: LEATHER TROUSERS + SLEEVELESS ROLLNECK</span></h3><figure data-bordeaux-image-check="" id="elk-131c29ba-62f4-4d9b-a49d-2854d562cd53"><div><p> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo-1859-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo.jpg" alt="Gwyneth Paltrow wearing leather trousers and a sleeveless rollneck" srcset="https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo-1859-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/R8VMDrt2tCUUaqkV9nYyJo.jpg">
|
||||||
|
</picture></p></div><p>(Image credit: Getty Images)</p></figure><p id="elk-ecb0b7ca-fa01-48e5-8c31-fe3be5fb2644"><strong>Style Notes: </strong>Spring is a transitional month, and as the weather is proving right now, it's not always sunshine and blue skies, so <a data-analytics-id="inline-link" href="https://www.whowhatwear.com/tag/knitwear" data-auto-tag-linker="true" data-url="https://www.whowhatwear.com/tag/knitwear" data-hl-processed="none" data-mrf-recirculation="inline-link" data-before-rewrite-localise="https://www.whowhatwear.com/tag/knitwear" data-hawk-tracked="hawklinks" data-mrf-link="https://www.whowhatwear.com/tag/knitwear">knitwear</a> should still be a key player in your spring wardrobe. The trick to transitional knitwear is to take a note out of <a data-analytics-id="inline-link" href="https://www.whowhatwear.com/tag/gwyneth-paltrow" data-auto-tag-linker="true" data-url="https://www.whowhatwear.com/tag/gwyneth-paltrow" data-hl-processed="none" data-mrf-recirculation="inline-link" data-before-rewrite-localise="https://www.whowhatwear.com/tag/gwyneth-paltrow" data-hawk-tracked="hawklinks" data-mrf-link="https://www.whowhatwear.com/tag/gwyneth-paltrow">Gwyneth Paltrow</a>'s book and play around with lighter silhouettes, whether that's a short-sleeve t-shirt style or a sleeveless rollneck. Styles like this allow you to layer in adaptable ways, but also look incredibly chic on their own.</p><h2 id="shop-the-look-11">Shop the Look: </h2><div><div data-id="1da903c6-2335-4efd-9b1f-3acee734ad8c" id="elk-1da903c6-2335-4efd-9b1f-3acee734ad8c">
|
||||||
|
<a href="https://www.prf.hn/click/camref:1101l44paN/pubref:whowhatwear-us-9041267778268996171/destination:https%3A%2F%2Fwww.stories.com%2Fen-gb%2Fproduct%2Fsleeveless-turtleneck-top-cream-1310621002%2F%3F" data-model-name="& Other Stories Sleeveless Turtleneck Top" data-model-brand="& Other Stories" data-url="https://www.stories.com/en-gb/product/sleeveless-turtleneck-top-cream-1310621002/?" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://www.prf.hn/click/camref:1101l44paN/pubref:hawk-custom-tracking/destination:https%3A%2F%2Fwww.stories.com%2Fen-gb%2Fproduct%2Fsleeveless-turtleneck-top-cream-1310621002%2F%3F" data-merchant-name="& Other Stories UK" data-merchant-id="504705" data-merchant-network="PHG" data-merchant-url="stories.com/en-gb" data-custom-tracking-id="9041267778268996171" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF.jpg" alt="Sleeveless Turtleneck Top" srcset="https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/ChRBFEX2kvEwEXnU6G8RcF.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>& Other Stories</p>
|
||||||
|
<p>Sleeveless Turtleneck Top</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>A great spring basic. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="883257aa-b420-43f9-9cb4-f04f470e9706" id="elk-883257aa-b420-43f9-9cb4-f04f470e9706">
|
||||||
|
<a href="https://go.redirectingat.com/?id=92X1711942&xcust=whowhatwear_us_3034064441069837217&xs=1&url=https%3A%2F%2Ftbco.com%2Fproducts%2Fmerino-wool-skinny-scarf-in-black-harlequin%3F&sref=https%3A%2F%2Fwww.whowhatwear.com" data-model-name="TBCo Merino Wool Skinny Scarf" data-model-brand="TBCo" data-url="https://tbco.com/products/merino-wool-skinny-scarf-in-black-harlequin?" rel="sponsored noopener" data-hl-processed="skimlinks" data-google-interstitial="false" data-placeholder-url="https://go.redirectingat.com?id=92X1711942&xcust=hawk-custom-tracking&xs=1&url=https%3A%2F%2Ftbco.com%2Fproducts%2Fmerino-wool-skinny-scarf-in-black-harlequin%3F&sref=https%3A%2F%2Fwww.whowhatwear.com" data-custom-tracking-id="3034064441069837217" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6.jpg" alt="Merino Wool Skinny Scarf in Black Harlequin" srcset="https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/XNwthSaDBpuXca9tChzPf6.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>TBCo</p>
|
||||||
|
<p>Merino Wool Skinny Scarf</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>100% merino wool. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="24cea4be-6a5b-4ccf-bf26-ff36b55e023d" id="elk-24cea4be-6a5b-4ccf-bf26-ff36b55e023d">
|
||||||
|
<a href="https://www.awin1.com/awclick.php?awinmid=32887&awinaffid=250777&clickref=whowhatwear-us-9806619507286272466&p=https%3A%2F%2Fwww.zara.com%2Fuk%2Fen%2Fzw-collection-tailored-wide-leg-leather-effect-trousers-p03581243.html" data-model-name="ZARA Tailored Wide-Leg Leather-Effect Trousers" data-model-brand="ZARA" data-url="https://www.zara.com/uk/en/zw-collection-tailored-wide-leg-leather-effect-trousers-p03581243.html?" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://www.awin1.com/awclick.php?awinmid=32887&awinaffid=250777&clickref=hawk-custom-tracking&p=https%3A%2F%2Fwww.zara.com%2Fuk%2Fen%2Fzw-collection-tailored-wide-leg-leather-effect-trousers-p03581243.html" data-merchant-name="Zara UK" data-merchant-id="475128" data-merchant-network="AWwwwUK" data-merchant-url="zara.com/uk" data-custom-tracking-id="9806619507286272466" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk.jpg" alt="Zw Collection Tailored Wide-Leg Leather-Effect Trousers" srcset="https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/RfBrtrjqsfbxd64CfEWGWk.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>ZARA</p>
|
||||||
|
<p>Tailored Wide-Leg Leather-Effect Trousers</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>A 90s wardrobe essential. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="f0a23569-bc55-4def-97ad-708785ee83ba" id="elk-f0a23569-bc55-4def-97ad-708785ee83ba">
|
||||||
|
<a href="https://click.linksynergy.com/deeplink?id=25ZRSXYPVYg&mid=43148&u1=whowhatwear-us-1050167989428495771&murl=https%3A%2F%2Fwww2.hm.com%2Fen_gb%2Fproductpage.1270652002.html" data-model-name="H&M Sandals" data-model-brand="H&M" data-url="https://www2.hm.com/en_gb/productpage.1270652002.html" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://click.linksynergy.com/deeplink?id=25ZRSXYPVYg&mid=43148&u1=hawk-custom-tracking&murl=https%3A%2F%2Fwww2.hm.com%2Fen_gb%2Fproductpage.1270652002.html" data-merchant-name="H&M (US)" data-merchant-id="311567" data-merchant-network="LSwww" data-merchant-url="www2.hm.com" data-custom-tracking-id="1050167989428495771" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj.jpg" alt="Sandals" srcset="https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/EdfJ7AF6aZ5ve9BJy6Sehj.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>H&M</p>
|
||||||
|
<p>Sandals</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>An iconic style. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div></div><h3 id="section-2-julia-roberts-suit-tie-brogues"><span>2. JULIA ROBERTS: SUIT + TIE + BROGUES</span></h3><figure data-bordeaux-image-check="" id="elk-de0880e0-bf28-4c93-b0e1-8333d4b4c35a"><div><p> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL.jpg" alt="Julia Roberts wearing a men&#039;s Armani suit, tie and derbys." srcset="https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/qgKCqn2VU3nhpMugU7NkXL.jpg">
|
||||||
|
</picture></p></div><p>(Image credit: Getty Images)</p></figure><p id="elk-ff26f122-ce30-4bf7-9987-0df3f9a870fe"><strong>Style Notes: </strong>The suit that <a data-analytics-id="inline-link" href="https://www.whowhatwear.com/tag/julia-roberts" data-auto-tag-linker="true" data-url="https://www.whowhatwear.com/tag/julia-roberts" data-hl-processed="none" data-mrf-recirculation="inline-link" data-before-rewrite-localise="https://www.whowhatwear.com/tag/julia-roberts" data-hawk-tracked="hawklinks" data-mrf-link="https://www.whowhatwear.com/tag/julia-roberts">Julia Roberts</a> wore to the 1990 <a data-analytics-id="inline-link" href="https://www.whowhatwear.com/tag/golden-globes" data-auto-tag-linker="true" data-url="https://www.whowhatwear.com/tag/golden-globes" data-hl-processed="none" data-mrf-recirculation="inline-link" data-before-rewrite-localise="https://www.whowhatwear.com/tag/golden-globes" data-hawk-tracked="hawklinks" data-mrf-link="https://www.whowhatwear.com/tag/golden-globes">Golden Globes</a> was a men's Armani suit, and there's something to be said for browsing menswear for your spring tailoring. Oversized silhouettes are huge for this season, and I highly recommend trying on some men's shirts and blazers for the perfect oversized fit. Menswear sections also stock a great selection of ties, another trend which continues to grow, so you can find the perfect one to go with your suit.</p><h2 id="shop-the-look-12">Shop the Look: </h2><div><div data-id="952a2ecd-9c26-4cb4-899b-fc109c8601e3" id="elk-952a2ecd-9c26-4cb4-899b-fc109c8601e3">
|
||||||
|
<a href="https://www.anrdoezrs.net/click-101131066-15159301?sid=whowhatwear-us-1050821405117422982&url=https://www.mytheresa.com/gb/en/women/frankie-shop-gelso-oversized-blazer-grey-p00661906" data-model-name="The Frankie Shop Gelso Oversized Blazer" data-model-brand="The Frankie Shop" data-url="https://www.mytheresa.com/gb/en/women/frankie-shop-gelso-oversized-blazer-grey-p00661906" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://www.anrdoezrs.net/click-101131066-15159301?sid=hawk-custom-tracking&url=https://www.mytheresa.com/gb/en/women/frankie-shop-gelso-oversized-blazer-grey-p00661906" data-merchant-name="Mytheresa" data-merchant-id="214127" data-merchant-network="CJ" data-merchant-url="mytheresa.com" data-custom-tracking-id="1050821405117422982" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC.jpg" alt="Gelso Oversized Blazer in Grey - the Frankie Shop" srcset="https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/dguYGj23DMMQWK59dFzDVC.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>The Frankie Shop</p>
|
||||||
|
<p>Gelso Oversized Blazer</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>Loved by fashion editors. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="44443ee7-a4c7-4bbe-9be0-1bb7829fdc72" id="elk-44443ee7-a4c7-4bbe-9be0-1bb7829fdc72">
|
||||||
|
<a href="https://click.linksynergy.com/deeplink?id=kXQk6%2AivFEQ&mid=50307&u1=whowhatwear-us-8588091474214981123&murl=https%3A%2F%2Fwww.withnothingunderneath.com%2Fproducts%2Fthe-boyfriend-fine-poplin-white" data-model-name="With Nothing Underneath The Boyfriend" data-model-brand="With Nothing Underneath" data-url="https://www.withnothingunderneath.com/products/the-boyfriend-fine-poplin-white" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://click.linksynergy.com/deeplink?id=kXQk6%2AivFEQ&mid=50307&u1=hawk-custom-tracking&murl=https%3A%2F%2Fwww.withnothingunderneath.com%2Fproducts%2Fthe-boyfriend-fine-poplin-white" data-merchant-name="With Nothing Underneath" data-merchant-id="273636" data-merchant-network="LS" data-merchant-url="withnothingunderneath.com" data-custom-tracking-id="8588091474214981123" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb.jpg" alt="The Boyfriend: Fine Poplin, White" srcset="https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/82jUY7fHGEvFPHjiYwF5Wb.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>With Nothing Underneath</p>
|
||||||
|
<p>The Boyfriend</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>Size up for an oversized fit. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="74ba536a-bda7-492b-b246-da5c0aa9e3a0" id="elk-74ba536a-bda7-492b-b246-da5c0aa9e3a0">
|
||||||
|
<a href="https://click.linksynergy.com/deeplink?id=kXQk6%2AivFEQ&mid=50343&u1=whowhatwear-us-1284367468298789490&murl=https%3A%2F%2Fshop.mango.com%2Fgb%2Fen%2Fp%2Fmen%2Fties--bow-ties-and-handkerchiefs%2Fties%2F100-silk-paisley-print-tie_27036003%3F" data-model-name="MANGO 100% Silk Paisley Print Tie" data-model-brand="MANGO" data-url="https://shop.mango.com/gb/en/p/men/ties--bow-ties-and-handkerchiefs/ties/100-silk-paisley-print-tie_27036003?" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://click.linksynergy.com/deeplink?id=kXQk6%2AivFEQ&mid=50343&u1=hawk-custom-tracking&murl=https%3A%2F%2Fshop.mango.com%2Fgb%2Fen%2Fp%2Fmen%2Fties--bow-ties-and-handkerchiefs%2Fties%2F100-silk-paisley-print-tie_27036003%3F" data-merchant-name="Mango (US/MX)" data-merchant-id="283078" data-merchant-network="LS" data-merchant-url="shop.mango.com" data-custom-tracking-id="1284367468298789490" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A.jpg" alt="100% Silk Paisley Print Tie - Men | Mango United Kingdom" srcset="https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/3KE5dpwpZGhvEyMjjxvn8A.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>MANGO</p>
|
||||||
|
<p>100% Silk Paisley Print Tie </p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>Shop men's for the best selection of ties. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="86920037-9166-40eb-b62f-9431ababb1be" id="elk-86920037-9166-40eb-b62f-9431ababb1be">
|
||||||
|
<a href="https://www.anrdoezrs.net/click-101131066-15159301?sid=whowhatwear-us-9232788623436218009&url=https://www.mytheresa.com/gb/en/women/frankie-shop-gelso-high-rise-wide-leg-pants-grey-p00661914" data-model-name="The Frankie Shop Gelso High-Rise Wide-Leg Pants" data-model-brand="The Frankie Shop" data-url="https://www.mytheresa.com/gb/en/women/frankie-shop-gelso-high-rise-wide-leg-pants-grey-p00661914" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://www.anrdoezrs.net/click-101131066-15159301?sid=hawk-custom-tracking&url=https://www.mytheresa.com/gb/en/women/frankie-shop-gelso-high-rise-wide-leg-pants-grey-p00661914" data-merchant-name="Mytheresa" data-merchant-id="214127" data-merchant-network="CJ" data-merchant-url="mytheresa.com" data-custom-tracking-id="9232788623436218009" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS.jpg" alt="Gelso High-Rise Wide-Leg Pants in Grey - the Frankie Shop" srcset="https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/oVyDXwY4GNzNNxZp5hWzAS.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>The Frankie Shop</p>
|
||||||
|
<p>Gelso High-Rise Wide-Leg Pants</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>Perfect for the office. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="658b745b-95d7-4670-bd04-2850a9a6e8e5" id="elk-658b745b-95d7-4670-bd04-2850a9a6e8e5">
|
||||||
|
<a href="https://www.prf.hn/click/camref:1011l4QzG/pubref:whowhatwear-us-4635286302970380827/destination:https%3A%2F%2Fwww.theoutnet.com%2Fen-gb%2Fshop%2Fproduct%2Ftod-s%2Fflat-shoes%2Flace-ups%2Fburnished-glossed-leather-brogues%2F46376663162983216%3F" data-model-name="TOD'S Burnished Glossed-Leather Brogues" data-model-brand="TOD'S" data-url="https://www.theoutnet.com/en-gb/shop/product/tod-s/flat-shoes/lace-ups/burnished-glossed-leather-brogues/46376663162983216?" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://www.prf.hn/click/camref:1011l4QzG/pubref:hawk-custom-tracking/destination:https%3A%2F%2Fwww.theoutnet.com%2Fen-gb%2Fshop%2Fproduct%2Ftod-s%2Fflat-shoes%2Flace-ups%2Fburnished-glossed-leather-brogues%2F46376663162983216%3F" data-merchant-name="The Outnet US & CA" data-merchant-id="440701" data-merchant-network="PHGwww" data-merchant-url="theoutnet.com" data-custom-tracking-id="4635286302970380827" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf.jpg" alt="Burnished Glossed-Leather Brogues" srcset="https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/GD6kpvBfYRrV2KLG9vtBzf.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>TOD'S</p>
|
||||||
|
<p>Burnished Glossed-Leather Brogues</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>It's all about the back-to-school shoes this season. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div></div><h3 id="section-3-carolyn-bessette-kennedy-sleeveless-knit-cropped-jeans"><span>3. CAROLYN BESSETTE KENNEDY: SLEEVELESS KNIT + CROPPED JEANS</span></h3><figure data-bordeaux-image-check="" id="elk-bb456c70-13ee-416b-bd4c-d919f1e8f46f"><div><p> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX.jpg" alt="Carolyn Bessette Kennedy wearing a sleeveless knit and cropped jeans." srcset="https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/QLFN4zoVUiwsHgxFyAcvCX.jpg">
|
||||||
|
</picture></p></div><p>(Image credit: Getty Images)</p></figure><p id="elk-5e8d8478-2b25-45c8-9eb0-28a80b4cabfc"><strong>Style Notes: </strong>If you haven't watched or heard of <em>Love Story,</em> I don't know where you've been, but it's the reason everyone's talking about Carolyn Bessette Kennedy and her iconic style. This particular look sums up her outfits perfectly. They were minimal and effortless, and a solid argument for having good quality basics in your wardrobe. A sleeveless knit, cropped jeans and strappy <a data-analytics-id="inline-link" href="https://www.whowhatwear.com/tag/sandals" data-auto-tag-linker="true" data-url="https://www.whowhatwear.com/tag/sandals" data-hl-processed="none" data-mrf-recirculation="inline-link" data-before-rewrite-localise="https://www.whowhatwear.com/tag/sandals" data-hawk-tracked="hawklinks" data-mrf-link="https://www.whowhatwear.com/tag/sandals">sandals</a> couldn't be easier to put together, but will be a combination you'll come back to multiple times this season.</p><template data-slice-id="slice-newsletterForm-articleInbodyContent-gZwuzEPdFsZdptDwENS7w" data-slice-class="newsletter-inbodyContent-slice"></template><h2 id="shop-the-look-13">Shop the Look: </h2><div><div data-id="609be6bb-fc63-41f6-bf92-966d16524804" id="elk-609be6bb-fc63-41f6-bf92-966d16524804">
|
||||||
|
<a href="https://boden-uk.sjv.io/c/221109/1617870/18790?subId1=whowhatwear-us-1175938793977218875&sharedId=whowhatwear-us&u=https%3A%2F%2Fwww.boden.com%2Fproducts%2Fwomen-emilia-cotton-crew-neck-tank-black-k1036blk%3F" data-model-name="Boden Emilia Cotton Crew Neck Tank" data-model-brand="Boden" data-url="https://www.boden.com/products/women-emilia-cotton-crew-neck-tank-black-k1036blk?" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://boden-uk.sjv.io/c/221109/1617870/18790?subId1=hawk-custom-tracking&sharedId=hawk-prefix&u=https%3A%2F%2Fwww.boden.com%2Fproducts%2Fwomen-emilia-cotton-crew-neck-tank-black-k1036blk%3F" data-merchant-name="Boden UK" data-merchant-id="475416" data-merchant-network="ImpactRad" data-merchant-url="boden.com" data-custom-tracking-id="1175938793977218875" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39.jpg" alt="Emilia Cotton Crew Neck Tank-Black" srcset="https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/j7UkVaBZDRMAWFYiBPVA39.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>Boden</p>
|
||||||
|
<p>Emilia Cotton Crew Neck Tank</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>A great transitional piece. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="e49f0020-9fa6-448c-af96-5a047e601b5e" id="elk-e49f0020-9fa6-448c-af96-5a047e601b5e">
|
||||||
|
<a href="https://www.anrdoezrs.net/click-101131066-15073808?sid=whowhatwear-us-1367368975673056107&url=https://int.toteme.com/products/kick-flare-denim-true-vintage" data-model-name="Toteme Kick Flare Denim True Vintage" data-model-brand="Toteme" data-url="https://int.toteme.com/products/kick-flare-denim-true-vintage" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://www.anrdoezrs.net/click-101131066-15073808?sid=hawk-custom-tracking&url=https://int.toteme.com/products/kick-flare-denim-true-vintage" data-merchant-name="Toteme" data-merchant-id="538377" data-merchant-network="CJ" data-merchant-url="toteme.com" data-custom-tracking-id="1367368975673056107" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS.jpg" alt="Kick Flare Denim True Vintage - 23/28" srcset="https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/CQf9peJWaWbUpMqRVPi7DS.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>Toteme</p>
|
||||||
|
<p>Kick Flare Denim True Vintage</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>A vintage wash is perfect for spring. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="f1ccfc6d-2c90-476a-b68d-4fae938e5ab8" id="elk-f1ccfc6d-2c90-476a-b68d-4fae938e5ab8">
|
||||||
|
<a href="https://click.linksynergy.com/deeplink?id=25ZRSXYPVYg&mid=40090&u1=whowhatwear-us-4233357837723536599&murl=https%3A%2F%2Fwww.thereformation.com%2Fproducts%2Fserenity-bare-sandal%2F1313767ALR.html%3F" data-model-name="Reformation Serenity Bare Sandal" data-model-brand="Reformation" data-url="https://www.thereformation.com/products/serenity-bare-sandal/1313767ALR.html?" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://click.linksynergy.com/deeplink?id=25ZRSXYPVYg&mid=40090&u1=hawk-custom-tracking&murl=https%3A%2F%2Fwww.thereformation.com%2Fproducts%2Fserenity-bare-sandal%2F1313767ALR.html%3F" data-merchant-name="Reformation" data-merchant-id="310325" data-merchant-network="LSwww" data-merchant-url="thereformation.com" data-custom-tracking-id="4233357837723536599" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG.jpg" alt="Serenity Bare Sandal" srcset="https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/kh3prj74SWfb6yzfucsQoG.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>Reformation</p>
|
||||||
|
<p>Serenity Bare Sandal</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>Got any weddings coming up? There are the perfect wedding guest pair. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="021d28d6-4c6f-4258-a857-39ded946019b" id="elk-021d28d6-4c6f-4258-a857-39ded946019b">
|
||||||
|
<a href="https://click.linksynergy.com/deeplink?id=2P555SNI1Kc&mid=44959&u1=whowhatwear-us-9993833552989834250&murl=https%3A%2F%2Fotiumberg.com%2Fcollections%2Fearrings-1%2Fproducts%2Fsmall-roscida-gold-hoops" data-model-name="Otiumberg Small Roscida Drop Hoops" data-model-brand="Otiumberg" data-url="https://otiumberg.com/collections/earrings-1/products/small-roscida-gold-hoops" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://click.linksynergy.com/deeplink?id=2P555SNI1Kc&mid=44959&u1=hawk-custom-tracking&murl=https%3A%2F%2Fotiumberg.com%2Fcollections%2Fearrings-1%2Fproducts%2Fsmall-roscida-gold-hoops" data-merchant-name="Otiumberg Limited" data-merchant-id="310860" data-merchant-network="LSwww" data-merchant-url="otiumberg.com" data-custom-tracking-id="9993833552989834250" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk.jpg" alt="Small Roscida Drop Hoops" srcset="https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/se5zjTDTSi8vkEqgigmkxk.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>Otiumberg</p>
|
||||||
|
<p>Small Roscida Drop Hoops</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>A twist on the classic huggie. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div></div><h3 id="section-4-naomi-campbell-trench-coat-capri-trousers"><span>4. NAOMI CAMPBELL: TRENCH COAT + CAPRI TROUSERS</span></h3><figure data-bordeaux-image-check="" id="elk-dd6d5a67-69ae-42b5-8770-9b21aa648921"><div><p> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5-840-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5-840-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5-840-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5-840-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5.jpg" alt="Naomi Campbell wearing a trench coat and capri trousers." srcset="https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5-840-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5-840-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5-840-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5-840-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/r4a3ERthWzGJpagCFRjac5.jpg">
|
||||||
|
</picture></p></div><p>(Image credit: Getty Images)</p></figure><p id="elk-4736eda3-e9b8-48fc-8fa7-b3d9c7fe43ae"><strong>Style Notes: </strong>Here, <a data-analytics-id="inline-link" href="https://www.whowhatwear.com/tag/naomi-campbell" data-auto-tag-linker="true" data-url="https://www.whowhatwear.com/tag/naomi-campbell" data-hl-processed="none" data-mrf-recirculation="inline-link" data-before-rewrite-localise="https://www.whowhatwear.com/tag/naomi-campbell" data-hawk-tracked="hawklinks" data-mrf-link="https://www.whowhatwear.com/tag/naomi-campbell">Naomi Campbell</a> makes the case for the white trench. We all love a trench coat and understand how hard working it can be, and yet very rarely consider having more than one colour in our wardrobes. A lighter shade of cream or white adds a brightness you just can't achieve with a camel trench, and creates a crisp, clean look when worn with other white pieces.</p><h2 id="shop-the-look-14">Shop the Look:</h2><div><div data-id="cd0eb2bc-722b-490d-b5f9-c690b18fdac4" id="elk-cd0eb2bc-722b-490d-b5f9-c690b18fdac4">
|
||||||
|
<a href="https://www.awin1.com/awclick.php?awinmid=1402&awinaffid=231761&clickref=whowhatwear-us-1172759676451085907&p=https%3A%2F%2Fwww.marksandspencer.com%2Fpure-silk-collared-shirt%2Fp%2Fclp60719610" data-model-name="Marks & Spencer Pure Silk Collared Shirt" data-model-brand="Marks & Spencer" data-url="https://www.marksandspencer.com/pure-silk-collared-shirt/p/clp60719610?" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://www.awin1.com/awclick.php?awinmid=1402&awinaffid=231761&clickref=hawk-custom-tracking&p=https%3A%2F%2Fwww.marksandspencer.com%2Fpure-silk-collared-shirt%2Fp%2Fclp60719610" data-merchant-name="Marks and Spencer UK" data-merchant-id="446591" data-merchant-network="AWwwwUS" data-merchant-url="marksandspencer.com" data-custom-tracking-id="1172759676451085907" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC.jpg" alt="Pure Silk Collared Shirt" srcset="https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/KpeTT33zKFpyz9RgU5oxoC.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>Marks & Spencer</p>
|
||||||
|
<p>Pure Silk Collared Shirt</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>An elegant addition to your spring wardrobe. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="69b83f77-c891-4303-8602-9bc7a423d81a" id="elk-69b83f77-c891-4303-8602-9bc7a423d81a">
|
||||||
|
<a href="https://www.prf.hn/click/camref:1101l5tV5G/pubref:whowhatwear-us-8157558237260460997/destination:https%3A%2F%2Fuk.burberry.com%2Fmid-length-lightweight-cotton-belgravia-trench-coat-p81206731%3F" data-model-name="Burberry Mid-Length Lightweight Cotton Belgravia Trench Coat" data-model-brand="Burberry" data-url="https://uk.burberry.com/mid-length-lightweight-cotton-belgravia-trench-coat-p81206731?" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://www.prf.hn/click/camref:1101l5tV5G/pubref:hawk-custom-tracking/destination:https%3A%2F%2Fuk.burberry.com%2Fmid-length-lightweight-cotton-belgravia-trench-coat-p81206731%3F" data-merchant-name="Burberry Global" data-merchant-id="617710" data-merchant-network="PHG" data-merchant-url="burberry.com" data-custom-tracking-id="8157558237260460997" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5.jpg" alt="Mid-Length Lightweight Cotton Belgravia Trench Coat&amp;#8203; in Seashell White - Women, Cotton Gabardine | Burberry&amp;reg; Official" srcset="https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/AbT2k8Z3EMTcnbKdwPm5K5.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>Burberry</p>
|
||||||
|
<p>Mid-Length Lightweight Cotton Belgravia Trench Coat</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>A worthy investment. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="ec7fc751-bee4-45d9-b8c6-ca92a55b33ea" id="elk-ec7fc751-bee4-45d9-b8c6-ca92a55b33ea">
|
||||||
|
<a href="https://click.linksynergy.com/deeplink?id=HlvbvYZP82I&mid=41970&u1=whowhatwear-us-3149457119019887828&murl=https%3A%2F%2Fwww.asos.com%2Fasos-design%2Fasos-design-denim-capri-trousers-in-mid-blue%2Fprd%2F208922812%3F" data-model-name="ASOS DESIGN Denim Capri Trousers" data-model-brand="ASOS DESIGN" data-url="https://www.asos.com/asos-design/asos-design-denim-capri-trousers-in-mid-blue/prd/208922812?" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://click.linksynergy.com/deeplink?id=HlvbvYZP82I&mid=41970&u1=hawk-custom-tracking&murl=https%3A%2F%2Fwww.asos.com%2Fasos-design%2Fasos-design-denim-capri-trousers-in-mid-blue%2Fprd%2F208922812%3F" data-merchant-name="ASOS (Asia)" data-merchant-id="219363" data-merchant-network="LSAu" data-merchant-url="asos.com" data-custom-tracking-id="3149457119019887828" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8.jpg" alt="Asos Design Denim Capri Trousers in Mid Blue" srcset="https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/QqaYfKyMbcYnuuJQYHgvx8.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>ASOS DESIGN</p>
|
||||||
|
<p>Denim Capri Trousers </p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>These will work with everything from flip flops to kitten heels. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="fd4f1c13-54da-4670-8fad-adbf40eb0bf6" id="elk-fd4f1c13-54da-4670-8fad-adbf40eb0bf6">
|
||||||
|
<a href="https://www.prf.hn/click/camref:1101l44paN/pubref:whowhatwear-us-1332012358217623484/destination:https%3A%2F%2Fwww.stories.com%2Fen-gb%2Fproduct%2Fnappa-leather-slingback-sandals-off-white-1325330003%2F%3F" data-model-name="& Other Stories Nappa Leather Slingback Sandals" data-model-brand="& Other Stories" data-url="https://www.stories.com/en-gb/product/nappa-leather-slingback-sandals-off-white-1325330003/?" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://www.prf.hn/click/camref:1101l44paN/pubref:hawk-custom-tracking/destination:https%3A%2F%2Fwww.stories.com%2Fen-gb%2Fproduct%2Fnappa-leather-slingback-sandals-off-white-1325330003%2F%3F" data-merchant-name="& Other Stories UK" data-merchant-id="504705" data-merchant-network="PHG" data-merchant-url="stories.com/en-gb" data-custom-tracking-id="1332012358217623484" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL.jpg" alt="Nappa Leather Slingback Sandals" srcset="https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/UU9oKwXH4Trb2ocVrWcTcL.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>& Other Stories</p>
|
||||||
|
<p>Nappa Leather Slingback Sandals</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>Move over classic heels. It's all about the peep toe this season. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="26f3e10c-f493-40c1-8bc5-7fcce5c5d7fb" id="elk-26f3e10c-f493-40c1-8bc5-7fcce5c5d7fb">
|
||||||
|
<a href="https://lindafarrow.com/products/laura-sunglasses-in-honey" data-model-name="Linda Farrow Laura Sunglasses in Honey" data-model-brand="Linda Farrow" data-url="https://lindafarrow.com/products/laura-sunglasses-in-honey" data-hl-processed="none" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa.jpg" alt="Laura Sunglasses in Honey" srcset="https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/Hq5m7qGSkYHzA2cZD6xtGa.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>Linda Farrow</p>
|
||||||
|
<p>Laura Sunglasses in Honey</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>A classic 90s frame. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div></div><h3 id="section-5-jennifer-aniston-vest-top-cargo-trousers-flip-flops"><span>5. JENNIFER ANISTON: VEST TOP + CARGO TROUSERS + FLIP FLOPS</span></h3><figure data-bordeaux-image-check="" id="elk-2a8ec80b-3a7e-48de-b409-214140dd0958"><div><p> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP-1544-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP-1544-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP.jpg" alt="Jennifer Aniston wearing a vest top, cargo trousers and flip flop." srcset="https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP-1544-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP-1544-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/nQ82PJqM3iYEHn5VfeF8QP.jpg">
|
||||||
|
</picture></p></div><p>(Image credit: Getty Images)</p></figure><p id="elk-e2729366-3aa6-40b9-a89b-11fe967d82ab"><strong>Style Notes: </strong>There isn't a single part of this outfit that isn't currently a major must-have. From the platform flip flops and narrow framed sunnies to the slouchy cargo trousers and vest top, they're all items you either already have, or should seriously consider adding to your wardrobe for spring. What makes it such an iconic look is the red, which is more than just a pop, but is grounded by pairing with black items only, creating a monochrome effect.</p><h2 id="shop-the-look-15">Shop the Look: </h2><div><div data-id="0931b5cc-5213-47fa-8fb2-29b2dbc6c63d" id="elk-0931b5cc-5213-47fa-8fb2-29b2dbc6c63d">
|
||||||
|
<a href="https://www.prf.hn/click/camref:1101l3v4hW/pubref:whowhatwear-us-9572757620604129935/destination:https%3A%2F%2Fwww.meandem.com%2Fultimate-crew-neck-vest-black" data-model-name="ME+EM Perfect Basic Vest" data-model-brand="ME+EM" data-url="https://www.meandem.com/ultimate-crew-neck-vest-black" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://www.prf.hn/click/camref:1101l3v4hW/pubref:hawk-custom-tracking/destination:https%3A%2F%2Fwww.meandem.com%2Fultimate-crew-neck-vest-black" data-merchant-name="ME+EM UK" data-merchant-id="305303" data-merchant-network="PHG" data-merchant-url="meandem.com" data-custom-tracking-id="9572757620604129935" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa.jpg" alt="Perfect Basic Vest" srcset="https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/shgMpkwc9JxEf3Ww5HwCZa.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>ME+EM</p>
|
||||||
|
<p>Perfect Basic Vest</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>Available in 8 other colours. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="c7b01827-3953-40ce-8b0a-a4cd17e6d836" id="elk-c7b01827-3953-40ce-8b0a-a4cd17e6d836">
|
||||||
|
<a href="https://click.linksynergy.com/deeplink?id=25ZRSXYPVYg&mid=43177&u1=whowhatwear-us-7120228205402012227&murl=https%3A%2F%2Fwww.freepeople.com%2Fuk%2Fshop%2Fwe-the-free-park-ave-pants%2F%3F" data-model-name="Free People We the Free Park Ave Pull-On Cargo Pants" data-model-brand="Free People" data-url="https://www.freepeople.com/uk/shop/we-the-free-park-ave-pants/?" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://click.linksynergy.com/deeplink?id=25ZRSXYPVYg&mid=43177&u1=hawk-custom-tracking&murl=https%3A%2F%2Fwww.freepeople.com%2Fuk%2Fshop%2Fwe-the-free-park-ave-pants%2F%3F" data-merchant-name="Free People" data-merchant-id="311522" data-merchant-network="LSwww" data-merchant-url="freepeople.com" data-custom-tracking-id="7120228205402012227" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi-1920-80.webp 1920w, https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi-1600-80.webp 1600w, https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi-1280-80.webp 1280w, https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi-1024-80.webp 1024w, https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi-768-80.webp 768w, https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi-415-80.webp 415w, https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi-360-80.webp 360w, https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi-320-80.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi.webp" alt="We the Free Park Ave Pull-On Cargo Pants" srcset="https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi-1920-80.webp 1920w, https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi-1600-80.webp 1600w, https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi-1280-80.webp 1280w, https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi-1024-80.webp 1024w, https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi-768-80.webp 768w, https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi-415-80.webp 415w, https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi-360-80.webp 360w, https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi-320-80.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi.webp" data-pin-media="https://cdn.mos.cms.futurecdn.net/qMeiu2aPvUgcVRoUxqaSEi.webp">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>Free People</p>
|
||||||
|
<p>We the Free Park Ave Pull-On Cargo Pants</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>Size up if you want an even slouchier look. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="3528ce67-16e6-4cdd-8fe0-6abd4cd56a0c" id="elk-3528ce67-16e6-4cdd-8fe0-6abd4cd56a0c">
|
||||||
|
<a href="https://click.linksynergy.com/deeplink?id=HlvbvYZP82I&mid=41970&u1=whowhatwear-us-2596940215561454631&murl=https%3A%2F%2Fwww.asos.com%2Ftony-bianco%2Ftony-bianco-jetta-toe-thong-flatform-sandals-in-chocolate-brown%2Fprd%2F209985499%3Faffid%3D30316%26_Cj0KCQjw4a3OBhCHARIsAChaqJN0kgjVZldEdYnxcRUlFBw4w3aHl1NcWnbUUGILsf-OWIadWARKtq8aAn24EALw_wcB%26channelref%3Dproduct%2Bsearch%26ppcadref%3D23436695907%257C%257C%26utm_source%3Dgoogle%26utm_medium%3Dcpc%26utm_campaign%3D23436695907%26utm_content%3D%26utm_term%3D%26gclsrc%3Daw.ds%26gad_source%3D1%26gad_campaignid%3D23446221346%26gbraid%3D0AAAAADqFjOAmJt7GPq3eXltOVJ3YCWsoa%26gclid%3DCj0KCQjw4a3OBhCHARIsAChaqJN0kgjVZldEdYnxcRUlFBw4w3aHl1NcWnbUUGILsf-OWIadWARKtq8aAn24EALw_wcB" data-model-name="Tony Bianco Jetta Toe Thong Flatform Sandals" data-model-brand="Tony Bianco" data-url="https://www.asos.com/tony-bianco/tony-bianco-jetta-toe-thong-flatform-sandals-in-chocolate-brown/prd/209985499?affid=30316&_Cj0KCQjw4a3OBhCHARIsAChaqJN0kgjVZldEdYnxcRUlFBw4w3aHl1NcWnbUUGILsf-OWIadWARKtq8aAn24EALw_wcB&channelref=product+search&ppcadref=23436695907%7C%7C&utm_source=google&utm_medium=cpc&utm_campaign=23436695907&utm_content=&utm_term=&gclsrc=aw.ds&gad_source=1&gad_campaignid=23446221346&gbraid=0AAAAADqFjOAmJt7GPq3eXltOVJ3YCWsoa&gclid=Cj0KCQjw4a3OBhCHARIsAChaqJN0kgjVZldEdYnxcRUlFBw4w3aHl1NcWnbUUGILsf-OWIadWARKtq8aAn24EALw_wcB" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://click.linksynergy.com/deeplink?id=HlvbvYZP82I&mid=41970&u1=hawk-custom-tracking&murl=https%3A%2F%2Fwww.asos.com%2Ftony-bianco%2Ftony-bianco-jetta-toe-thong-flatform-sandals-in-chocolate-brown%2Fprd%2F209985499%3Faffid%3D30316%26_Cj0KCQjw4a3OBhCHARIsAChaqJN0kgjVZldEdYnxcRUlFBw4w3aHl1NcWnbUUGILsf-OWIadWARKtq8aAn24EALw_wcB%26channelref%3Dproduct%2Bsearch%26ppcadref%3D23436695907%257C%257C%26utm_source%3Dgoogle%26utm_medium%3Dcpc%26utm_campaign%3D23436695907%26utm_content%3D%26utm_term%3D%26gclsrc%3Daw.ds%26gad_source%3D1%26gad_campaignid%3D23446221346%26gbraid%3D0AAAAADqFjOAmJt7GPq3eXltOVJ3YCWsoa%26gclid%3DCj0KCQjw4a3OBhCHARIsAChaqJN0kgjVZldEdYnxcRUlFBw4w3aHl1NcWnbUUGILsf-OWIadWARKtq8aAn24EALw_wcB" data-merchant-name="ASOS (Asia)" data-merchant-id="219363" data-merchant-network="LSAu" data-merchant-url="asos.com" data-custom-tracking-id="2596940215561454631" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR.jpg" alt="Tony Bianco Jetta Toe Thong Flatform Sandals in Chocolate Brown" srcset="https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/wZy9dmMxoFEMKicYmGddkR.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>Tony Bianco</p>
|
||||||
|
<p>Jetta Toe Thong Flatform Sandals</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>Cool and oh so comfortable. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="b71e14f6-4c83-4f2b-b133-663426ffc7b0" id="elk-b71e14f6-4c83-4f2b-b133-663426ffc7b0">
|
||||||
|
<a href="https://click.linksynergy.com/deeplink?id=kXQk6%2AivFEQ&mid=37933&u1=whowhatwear-us-9446764470207578473&murl=https%3A%2F%2Fwww.gucci.com%2Fuk%2Fen_gb%2Fpr%2Fwomen%2Faccessories-for-women%2Feyewear-for-women%2Fsunglasses-for-women%2Fround-oval-sunglasses-for-women%2Fgeometrical-frame-sunglasses-p-819559I33308012" data-model-name="Gucci Geometrical Frame Sunglasses" data-model-brand="Gucci" data-url="https://www.gucci.com/uk/en_gb/pr/women/accessories-for-women/eyewear-for-women/sunglasses-for-women/round-oval-sunglasses-for-women/geometrical-frame-sunglasses-p-819559I33308012" rel="sponsored noopener" data-hl-processed="hawklinks" data-google-interstitial="false" data-placeholder-url="https://click.linksynergy.com/deeplink?id=kXQk6%2AivFEQ&mid=37933&u1=hawk-custom-tracking&murl=https%3A%2F%2Fwww.gucci.com%2Fuk%2Fen_gb%2Fpr%2Fwomen%2Faccessories-for-women%2Feyewear-for-women%2Fsunglasses-for-women%2Fround-oval-sunglasses-for-women%2Fgeometrical-frame-sunglasses-p-819559I33308012" data-merchant-name="Gucci UK" data-merchant-id="227622" data-merchant-network="LS" data-merchant-url="gucci.com/uk/en_gb" data-custom-tracking-id="9446764470207578473" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc-1920-80.jpg.webp 1920w, https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc-1600-80.jpg.webp 1600w, https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc-1280-80.jpg.webp 1280w, https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc-768-80.jpg.webp 768w, https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc-415-80.jpg.webp 415w, https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc-360-80.jpg.webp 360w, https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc-320-80.jpg.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc.jpg" alt="Geometrical Frame Sunglasses" srcset="https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc-1920-80.jpg 1920w, https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc-1600-80.jpg 1600w, https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc-1280-80.jpg 1280w, https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc-1024-80.jpg 1024w, https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc-768-80.jpg 768w, https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc-415-80.jpg 415w, https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc-360-80.jpg 360w, https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc-320-80.jpg 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc.jpg" data-pin-media="https://cdn.mos.cms.futurecdn.net/qKDWDFyhBFqnwwFkTfPMbc.jpg">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>Gucci</p>
|
||||||
|
<p>Geometrical Frame Sunglasses</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>These will never go out of style. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><div data-id="72ca1961-9b54-413a-91a2-f55b473f11fe" id="elk-72ca1961-9b54-413a-91a2-f55b473f11fe">
|
||||||
|
<a href="https://www.hermes.com/uk/en/product/elan-pocket-24-belt-H010612UKAAL/" data-model-name="Hèrmes Elan Pocket 24 belt" data-model-brand="Hèrmes" data-url="https://www.hermes.com/uk/en/product/elan-pocket-24-belt-H010612UKAAL/" data-hl-processed="none" data-hawk-tracked="hawklinks"><p data-bordeaux-image-check=""> <picture data-new-v2-image="true">
|
||||||
|
<source type="image/webp" srcset="https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW-1920-80.webp 1920w, https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW-1600-80.webp 1600w, https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW-1280-80.webp 1280w, https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW-1024-80.webp 1024w, https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW-768-80.webp 768w, https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW-415-80.webp 415w, https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW-360-80.webp 360w, https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW-320-80.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)">
|
||||||
|
<img src="https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW.webp" alt="A H&amp;egrave;rmes brown belt bag." srcset="https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW-1920-80.webp 1920w, https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW-1600-80.webp 1600w, https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW-1280-80.webp 1280w, https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW-1024-80.webp 1024w, https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW-768-80.webp 768w, https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW-415-80.webp 415w, https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW-360-80.webp 360w, https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW-320-80.webp 320w" sizes="(min-width: 710px) 670px, calc(100vw - 30px)" loading="lazy" data-new-v2-image="true" data-original-mos="https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW.webp" data-pin-media="https://cdn.mos.cms.futurecdn.net/DLkHncawVmTJzqyqskWWPW.webp">
|
||||||
|
</picture></p></a>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p>Hèrmes</p>
|
||||||
|
<p>Elan Pocket 24 belt</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<p>Hand's free and very chic. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div></div>
|
||||||
|
</div></div>
|
||||||
|
After Width: | Height: | Size: 593 KiB |
|
After Width: | Height: | Size: 133 KiB |
@@ -0,0 +1,18 @@
|
|||||||
|
<div id="readability-page-1" class="page"><div data-v-e6f2a212=""><main data-v-e6f2a212=""><div data-v-e6f2a212=""><div><p>Breaking Changes</p><ul><li>The docker image now runs as user 1001 and group 1001. Make sure that the permissions on your volumes allow user 1001 to read and write to them or see the User section below for other options, or if you're not sure.</li><li><code>SLEEP_TIME</code> is now set to <code>-1</code> by default. This means the image will run once and exit. If you were relying on the previous default, you'll need to explicitly set the <code>SLEEP_TIME</code> environment variable to <code>30m</code> to replicate the previous behavior.</li><li>The docker image now ignores the values in <code>Settings.json</code> for <code>Books</code> and <code>InProgress</code>. You can now change the folder that books are saved to by using the <code>LIBATION_BOOKS_DIR</code> environment variable.</li></ul></div><h2 id="disclaimer" tabindex="-1">Disclaimer <a href="#disclaimer" aria-label="Permalink to "Disclaimer""></a></h2><p>The docker image is provided as-is. We hope it can be useful to you but it is not officially supported.</p><h2 id="configuration" tabindex="-1">Configuration <a href="#configuration" aria-label="Permalink to "Configuration""></a></h2><p>Configuration in Libation is handled by two files, <code>AccountsSettings.json</code> and <code>Settings.json</code>. These files can usually be found in the Libation folder in your user's home directory. The easiest way to configure these is to run the desktop version of Libation and then copy them into a folder, such as <code>/opt/libation/config</code>, that you'll volume mount into the image. <code>Settings.json</code> is technically optional, and, if not provided, Libation will run using the default settings. Additionally, the <code>Books</code> and <code>InProgress</code> settings in <code>Settings.json</code> will be ignored and the image will instead substitute it's own values.</p><h2 id="running" tabindex="-1">Running <a href="#running" aria-label="Permalink to "Running""></a></h2><p>Once the configuration files are copied, the docker image can be run with the following command.</p><div><p><span>bash</span></p><pre tabindex="0"><code><span><span>sudo</span><span> docker</span><span> run</span><span> -d</span><span> \</span></span>
|
||||||
|
<span><span> -v</span><span> /opt/libation/config:/config</span><span> \</span></span>
|
||||||
|
<span><span> -v</span><span> /opt/libation/books:/data</span><span> \</span></span>
|
||||||
|
<span><span> --name</span><span> libation</span><span> \</span></span>
|
||||||
|
<span><span> --restart=always</span><span> \</span></span>
|
||||||
|
<span><span> rmcrackan/libation:latest</span></span></code></pre></div><p>By default the container will scan for new books once and download any new ones. This is configurable by passing in a value for the <code>SLEEP_TIME</code> environment variable. For example, if you pass in <code>10m</code> it will keep running, scan for new books, and download them every 10 minutes.</p><div><p><span>bash</span></p><pre tabindex="0"><code><span><span>sudo</span><span> docker</span><span> run</span><span> -d</span><span> \</span></span>
|
||||||
|
<span><span> -v</span><span> /opt/libation/config:/config</span><span> \</span></span>
|
||||||
|
<span><span> -v</span><span> /opt/libation/books:/data</span><span> \</span></span>
|
||||||
|
<span><span> -e</span><span> SLEEP_TIME='10m'</span><span> \</span></span>
|
||||||
|
<span><span> --name</span><span> libation</span><span> \</span></span>
|
||||||
|
<span><span> --restart=always</span><span> \</span></span>
|
||||||
|
<span><span> rmcrackan/libation:latest</span></span></code></pre></div><h2 id="environment-variables" tabindex="-1">Environment Variables <a href="#environment-variables" aria-label="Permalink to "Environment Variables""></a></h2><table tabindex="0"><thead><tr><th>Env Var</th><th>Default</th><th>Description</th></tr></thead><tbody><tr><td>SLEEP_TIME</td><td>-1</td><td>Length of time to sleep before doing another scan/download. Set to -1 to run one.</td></tr><tr><td>LIBATION_BOOKS_DIR</td><td>/data</td><td>Folder where books will be saved</td></tr><tr><td>LIBATION_CONFIG_DIR</td><td>/config</td><td>Folder to read configuration from.</td></tr><tr><td>LIBATION_DB_DIR</td><td>/db</td><td>Optional folder to load database from. If not mounted, will load database from <code>LIBATION_CONFIG_DIR</code>.</td></tr><tr><td>LIBATION_DB_FILE</td><td></td><td>Name of database file to load. By default it will look for all <code>.db</code> files and load one if there is only one present.</td></tr><tr><td>LIBATION_CREATE_DB</td><td>true</td><td>Whether or not the image should create a database file if none are found.</td></tr><tr><td>LIBATION_CONNECTION_STRING</td><td></td><td>Connection string for Postgresql. If not present, Libation uses the default sqlite.</td></tr></tbody></table><h2 id="user" tabindex="-1">User <a href="#user" aria-label="Permalink to "User""></a></h2><p>This docker image runs as user <code>1001</code>. In order for the image to function properly, user <code>1001</code> must be able to read and write the volumes that are mounted in. If they are not, you will see errors, including <a href="#1060">sqlite error</a>, <a href="#1110">Microsoft.Data.Sqlite.SqliteException</a>, <a href="#1113">unable to open database file</a>, <a href="#1049">Microsoft.EntityFrameworkCore.DbUpdateException</a></p><p>If you're not sure what your user number is, check the output of the <code>id</code> command. Docker should normally run with the number of the user who configured and ran it.</p><p>If you want to change the user the image runs as, you can specify <code>-u <uid>:<gid></code>. For example, to run it as user <code>2000</code> and group <code>3000</code>, you could do the following:</p><div><p><span>bash</span></p><pre tabindex="0"><code><span><span>sudo</span><span> docker</span><span> run</span><span> -d</span><span> \</span></span>
|
||||||
|
<span><span> -u</span><span> 2000:3000</span><span> \</span></span>
|
||||||
|
<span><span> -v</span><span> /opt/libation/config:/config</span><span> \</span></span>
|
||||||
|
<span><span> -v</span><span> /opt/libation/books:/data</span><span> \</span></span>
|
||||||
|
<span><span> --name</span><span> libation</span><span> \</span></span>
|
||||||
|
<span><span> --restart=always</span><span> \</span></span>
|
||||||
|
<span><span> rmcrackan/libation:latest</span></span></code></pre></div><p>If the user it's running as is correct, and it still cannot write, be sure to check whether the files and/or folders might be owned by the wrong user. You can use the <code>chown</code> command to change the owner of the file to the correct user and group number, for example: <code>chown -R 1001:1001 /mnt/audiobooks /mnt/libation-config</code></p><h2 id="advanced-database-options" tabindex="-1">Advanced Database Options <a href="#advanced-database-options" aria-label="Permalink to "Advanced Database Options""></a></h2><p>The docker image supports an optional database mount location defined by <code>LIBATION_DB_DIR</code>. This allows the database to be mounted as read/write, while allowing the rest of the configuration files to be mounted as read only. This is specifically useful if running in Kubernetes where you can use Configmaps and Secrets to define the configuration. If the <code>LIBATION_DB_DIR</code> is mounted, it will be used, otherwise it will look for the database in <code>LIBATION_CONFIG_DIR</code>. If it does not find the database in the expected location, it will attempt to make an empty database there.</p><h2 id="getting-help" tabindex="-1">Getting Help <a href="#getting-help" aria-label="Permalink to "Getting Help""></a></h2><p>As mentioned above: docker is not officially supported. I'm adding this at the bottom of the page for anyone serious enough to have read this far. If you've tried everything above and would still like help, you can open an <a href="https://github.com/rmcrackan/Libation/issues" rel="noreferrer">issue</a>. Please include <code>[docker]</code> in the title. There are also some docker folks who have offered occasional assistance who you can tag within your issue: <code>@ducamagnifico</code> , <code>@wtanksleyjr</code> , <code>@CLHatch</code>.</p><p><strong>Reminder</strong> that these are just friendly users who are sometimes around. They're <em>not</em> our customer support.</p></div></main></div></div>
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
<div id="readability-page-1" class="page"><div id="react-root"><div id="layers"><div data-testid="BottomBar"><div><p><span>Don’t miss what’s happening</span></p><p><span>People on X are the first to know.</span></p></div><div><div><a href="https://x.com/login" role="link" data-testid="login"><div dir="ltr"><p><span><span>Log in</span></span></p></div></a></div><div><a href="https://x.com/i/flow/signup" role="link" data-testid="signup"><div dir="ltr"><p><span><span>Sign up</span></span></p></div></a></div></div></div></div><div dir="ltr" aria-hidden="false"><header role="banner"><div><h2 role="heading"><a href="https://x.com/" aria-label="X" role="link"></a></h2></div></header><main role="main"><div><div aria-label="Home timeline" tabindex="0" data-testid="primaryColumn"><div><div><div><p></p><h2 dir="ltr" aria-level="2" role="heading"><span>Post</span></h2><p></p></div></div></div><section aria-labelledby="accessible-list-1" role="region"><h2 dir="auto" aria-level="1" role="heading" id="accessible-list-1">Conversation</h2><div aria-label="Timeline: Conversation"><div data-testid="cellInnerDiv"><article aria-labelledby="id__cn13bphsmi id__34r7ffmd2wi id__tth8rd318rf id__vubsqowawcr id__brdevl3babt id__h96eewwd5bn id__t3b506a5hx9 id__4wwuie28pkr id__tzus7xh5nn id__a4vjcszrfgm id__o4sxnd5nytc id__9dy0sm386nj id__704lfgexqt6 id__sqq000qsa9 id__e17tzjrw9go id__obo06trlcm id__iz7s5xtp31g id__k2sv9thlsl id__w14cl1luar id__d60fvyj2u18" role="article" tabindex="-1" data-testid="tweet"><div><div><div><div id="id__brdevl3babt" data-testid="User-Name"><div><a href="https://x.com/shyaroa" role="link"><div><p><span><span>シア口ア</span></span></p></div></a></div><div><a href="https://x.com/shyaroa" role="link" tabindex="-1"><p><span>@shyaroa</span></p></a></div></div></div></div><div><div dir="auto" lang="ja" id="id__o4sxnd5nytc" data-testid="tweetText"><p><span>これが速いのか分からないままブランチマイニングしてる
|
||||||
|
Aボタン長押ししながら移動して壁越しで9マス分の鉱石がある場所を入れ替えをしている
|
||||||
|
無駄な素材が増えないのは利点
|
||||||
|
|
||||||
|
</span><span><a dir="ltr" href="https://x.com/hashtag/NintendoSwitch2?src=hashtag_click" role="link">#NintendoSwitch2</a></span><span> </span><span><a dir="ltr" href="https://x.com/hashtag/%E3%81%BD%E3%81%93%E3%83%9D%E3%82%B1?src=hashtag_click" role="link">#ぽこポケ<img alt="" draggable="false" src="https://abs.twimg.com/hashflags/BF-15500_Pokemon_Pokopia_Hashmoji_Feb_2026/BF-15500_Pokemon_Pokopia_Hashmoji_Feb_2026.png"></a></span><span> </span><span><a dir="ltr" href="https://x.com/hashtag/%E3%81%BD%E3%81%93%E3%81%82%E3%83%9D%E3%82%B1%E3%83%A2%E3%83%B3?src=hashtag_click" role="link">#ぽこあポケモン<img alt="" draggable="false" src="https://abs.twimg.com/hashflags/BF-15500_Pokemon_Pokopia_Hashmoji_Feb_2026/BF-15500_Pokemon_Pokopia_Hashmoji_Feb_2026.png"></a></span></p></div><div data-testid="tweetPhoto" aria-labelledby="id__b8ccoz136yl id__cgavnf5qhx4" id="id__704lfgexqt6"><div tabindex="0"><div></div><div><p><span><span>0:28</span></span></p></div></div></div><div><div dir="ltr"><p><a href="https://x.com/shyaroa/status/2035888580040790369" aria-describedby="id__ivj4lqkvbge" aria-label="1:17 AM · Mar 23, 2026" role="link"><time datetime="2026-03-23T01:17:17.000Z">1:17 AM · Mar 23, 2026</time></a></p></div><a href="https://x.com/shyaroa/status/2035888580040790369/analytics" dir="ltr" role="link"><p><span data-testid="app-text-transition-container"><span><span>567.1K</span></span></span></p> <span><span>Views</span></span></a></div></div></div></article></div></div></section></div><div aria-label="Trending" tabindex="0" data-testid="sidebarColumn"><section aria-label="Sign up" role="region"><div><h2 aria-level="2" role="heading"><p><span>New to X?</span></p></h2></div><p><span>Sign up now to get your own personalized timeline!</span></p><div><a href="https://x.com/i/flow/signup" role="link"><div dir="ltr"><p><span><span>Create account</span></span></p></div></a></div><div dir="ltr"><p>By signing up, you agree to the <a href="https://x.com/tos" rel="noopener noreferrer nofollow" role="link"><span>Terms of Service</span></a> and <a href="https://x.com/privacy" rel="noopener noreferrer nofollow" role="link"><span>Privacy Policy</span></a>, including <a href="https://help.x.com/rules-and-policies/twitter-cookies" rel="noopener noreferrer nofollow" role="link"><span>Cookie Use.</span></a></p></div></section><section aria-labelledby="accessible-list-0" role="region"><h2 dir="auto" aria-level="1" role="heading" id="accessible-list-0">Trending now</h2><div aria-label="Timeline: Trending now"><div><h2 aria-level="2" role="heading"><p><span>What’s happening</span></p></h2></div><div id="id__uoerp8x50ug" aria-labelledby="id__uoerp8x50ug" tabindex="0" data-testid="trend" role="link"><div><p><span>Sports · Trending</span></p></div><p><span>LA Knight</span></p></div><div id="id__drmei6h9gvk" aria-labelledby="id__drmei6h9gvk" tabindex="0" data-testid="trend" role="link"><div><p><span>Sports · Trending</span></p></div><p><span>Colt Keith</span></p></div><div id="id__bgmvqshce7v" aria-labelledby="id__bgmvqshce7v" tabindex="0" data-testid="trend" role="link"><div><p><span>Entertainment · Trending</span></p></div><p><span><span dir="ltr">#ParadiseHulu</span></span></p></div><div id="id__kkgmoihkvol" aria-labelledby="id__kkgmoihkvol" tabindex="0" data-testid="trend" role="link"><div><p><span>Sports · Trending</span></p></div><p><span>Paul Blackburn</span></p><div dir="ltr"><p>Trending with <a href="https://x.com/search?q=Boone&src=trend_click&vertical=trends" role="link"><span>Boone</span></a>, <a href="https://x.com/search?q=Doval&src=trend_click&vertical=trends" role="link"><span>Doval</span></a></p></div></div><div><a href="https://x.com/explore/tabs/for-you" role="link"><p><span>Show more</span></p></a></div></div></section><div><nav aria-label="Footer" role="navigation"><div><p><a href="https://x.com/tos" dir="ltr" rel="noopener noreferrer nofollow" role="link"><span>Terms of Service</span></a></p><p><span> </span><span>|</span></p></div><div><p><a href="https://x.com/privacy" dir="ltr" rel="noopener noreferrer nofollow" role="link"><span>Privacy Policy</span></a></p><p><span> </span><span>|</span></p></div><div><p><a href="https://support.x.com/articles/20170514" dir="ltr" rel="noopener noreferrer nofollow" role="link"><span>Cookie Policy</span></a></p><p><span> </span><span>|</span></p></div><div><p><a href="https://help.x.com/resources/accessibility" dir="ltr" rel="noopener noreferrer nofollow" role="link"><span>Accessibility</span></a></p><p><span> </span><span>|</span></p></div><div><p><a href="https://business.x.com/en/help/troubleshooting/how-twitter-ads-work.html?ref=web-twc-ao-gbl-adsinfo&utm_source=twc&utm_medium=web&utm_campaign=ao&utm_content=adsinfo" dir="ltr" rel="noopener noreferrer nofollow" role="link"><span>Ads info</span></a></p><p><span> </span><span>|</span></p></div><p><span>© 2026 X Corp.</span></p></nav></div></div></div></main></div></div></div>
|
||||||
|
After Width: | Height: | Size: 102 KiB |
|
After Width: | Height: | Size: 827 KiB |
|
After Width: | Height: | Size: 72 KiB |
|
After Width: | Height: | Size: 827 KiB |
|
After Width: | Height: | Size: 61 KiB |
|
After Width: | Height: | Size: 277 KiB |